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.

10 lines
288 B

6 months ago
  1. package coupon
  2. type GetCouponListReq struct {
  3. PageNo int `v:"required#页码不能为空" dc:"页码"`
  4. PageSize int `v:"required#页面大小不能为空" dc:"页面大小"`
  5. }
  6. type GetCouponReq struct {
  7. Id int `json:"id" v:"required#优惠券id不能为空" dc:"优惠券id"`
  8. }