This commit is contained in:
laodaming
2023-10-20 11:46:51 +08:00
parent 6253acf53c
commit 82f1e3984f
5 changed files with 13 additions and 17 deletions

View File

@@ -38,8 +38,8 @@ service product {
@handler GetRenderSettingByPidHandler
get /api/product/get_render_setting_by_pid(GetRenderSettingByPidReq) returns (response);
//获取详情页推荐产品列表
@handler GetRecommandProductListHandler
get /api/product/recommand(GetRecommandProductListReq) returns (response);
@handler GetRecommendProductListHandler
get /api/product/recommand(GetRecommendProductListReq) returns (response);
//获取列表页推荐产品列表
@handler HomePageRecommendProductListHandler
get /api/product/home_page_recommend(HomePageRecommendProductListReq) returns (response);
@@ -49,7 +49,7 @@ service product {
}
//获取详情页推荐产品列表
type GetRecommandProductListReq {
type GetRecommendProductListReq {
Num int64 `form:"num,optional"`
ProductId int64 `form:"product_id"`
}