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.
14 lines
375 B
14 lines
375 B
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"`
|
|
}
|