This commit is contained in:
laodaming
2023-07-20 17:47:28 +08:00
parent 0e72027ff3
commit 421b63846a
5 changed files with 18 additions and 18 deletions

View File

@@ -69,8 +69,8 @@ service product {
@handler GetRecommandProductListHandler
get /api/product/recommand (GetRecommandProductListReq) returns (response);
//获取列表页推荐产品列表
@handler HomePageRecommandProductListHandler
get /api/product/home_page_recommand (HomePageRecommandProductListReq) returns (response);
@handler HomePageRecommendProductListHandler
get /api/product/home_page_recommend (HomePageRecommendProductListReq) returns (response);
//*********************产品详情分解接口结束***********************
//*********************推荐产品接口开始××××××××××××××××××××××××××
@@ -422,10 +422,10 @@ type GetLastProductDesignRsp {
Info interface{} `json:"info"`
}
//获取列表页推荐产品(返回是这个维度数组)
type HomePageRecommandProductListReq {
type HomePageRecommendProductListReq {
Size uint32 `form:"size"`
}
type HomePageRecommandProductListRsp {
type HomePageRecommendProductListRsp {
ProductId int64 `json:"product_id"`
Sn string `json:"sn"`
Title string `json:"title"`