You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
933 B

  1. package couponusers
  2. type GetCouponUsersReq struct {
  3. CouponId int `json:"couponId" dc:"卡券id"`
  4. Jwcode int `json:"jwcode" dc:"查询条件中的精网号"`
  5. Name string `json:"name" dc:"查询条件中的名字"`
  6. }
  7. type GetCouponUsersRes struct {
  8. Name string `json:"name" dc:"姓名"`
  9. Jwcode int `json:"jwcode" dc:"精网号"`
  10. DeptName string `json:"deptName" dc:"部门"`
  11. ShopName string `json:"shopName" dc:"门店"`
  12. }
  13. type DelCouponUserByJwcodeReq struct {
  14. CouponId int `json:"couponId" dc:"卡券id"`
  15. Jwcode int `json:"jwcode" dc:"精网号"`
  16. }
  17. type InsertCouponUserReq struct {
  18. CouponId int `json:"couponId" dc:"卡券id"`
  19. Jwcodes []int `json:"jwcodes" dc:"精网号"`
  20. }
  21. type IssueCouponUserReq struct {
  22. CouponId int `json:"couponId" dc:"卡券id"`
  23. }
  24. type AddRecordReq struct {
  25. CouponId int `json:"couponId" dc:"卡券id"`
  26. Name string `json:"name" dc:"选择武器名称"`
  27. }