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
10 lines
288 B
package coupon
|
|
|
|
type GetCouponListReq struct {
|
|
PageNo int `v:"required#页码不能为空" dc:"页码"`
|
|
PageSize int `v:"required#页面大小不能为空" dc:"页面大小"`
|
|
}
|
|
|
|
type GetCouponReq struct {
|
|
Id int `json:"id" v:"required#优惠券id不能为空" dc:"优惠券id"`
|
|
}
|