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.
15 lines
351 B
15 lines
351 B
package request
|
|
|
|
type Goods struct {
|
|
ID uint `json:"id" form:"id"` //商品id
|
|
SpuNo string `json:"spu_no" form:"spu_no"` //spu_no
|
|
ClaimNo string `json:"claim_no" form:"claim_no"` //领取任务id
|
|
}
|
|
|
|
type SpuNo struct {
|
|
SpuNo string `json:"spu_no" form:"spu_no"` //spu_no
|
|
}
|
|
|
|
type SearchCollectionGoods struct {
|
|
PageInfo
|
|
}
|
|
|