package coupon type GetCouponListReq struct { PageNo int `v:"required#页码不能为空" dc:"页码"` PageSize int `v:"required#页面大小不能为空" dc:"页面大小"` } type GetCouponReq struct { Id int `v:"required#优惠券id不能为空" dc:"优惠券id"` } type DeleteCouponReq struct { Id int `v:"required#优惠券id不能为空" dc:"优惠券id"` }