package couponusers type GetCouponUsersReq struct { CouponId int `json:"couponId" dc:"卡券id"` Jwcode int `json:"jwcode" dc:"查询条件中的精网号"` Name string `json:"name" dc:"查询条件中的名字"` } type GetCouponUsersRes struct { Name string `json:"name" dc:"姓名"` Jwcode int `json:"jwcode" dc:"精网号"` DeptName string `json:"deptName" dc:"部门"` ShopName string `json:"shopName" dc:"门店"` } type DelCouponUserByJwcodeReq struct { CouponId int `json:"couponId" dc:"卡券id"` Jwcode int `json:"jwcode" dc:"精网号"` } type InsertCouponUserReq struct { CouponId int `json:"couponId" dc:"卡券id"` Jwcodes []int `json:"jwcodes" dc:"精网号"` } type IssueCouponUserReq struct { CouponId int `json:"couponId" dc:"卡券id"` } type AddRecordReq struct { CouponId int `json:"couponId" dc:"卡券id"` Name string `json:"name" dc:"选择武器名称"` }