This commit is contained in:
laodaming 2023-07-21 14:15:43 +08:00
parent 7e4708e8d8
commit 0311bf82fc
2 changed files with 4 additions and 4 deletions

View File

@ -228,8 +228,8 @@ type OtherProductListRsp struct {
} }
type GetRecommandProductListReq struct { type GetRecommandProductListReq struct {
Size uint32 `form:"size"` Size uint32 `form:"size,optional"`
Num int64 `form:"num"` Num int64 `form:"num,optional"`
Sn string `form:"sn"` Sn string `form:"sn"`
} }

View File

@ -281,8 +281,8 @@ type OtherProductListRsp {
} }
//获取详情页推荐产品列表 //获取详情页推荐产品列表
type GetRecommandProductListReq { type GetRecommandProductListReq {
Size uint32 `form:"size"` Size uint32 `form:"size,optional"`
Num int64 `form:"num"` Num int64 `form:"num,optional"`
Sn string `form:"sn"` Sn string `form:"sn"`
} }
type GetRecommandProductListRsp { type GetRecommandProductListRsp {