Merge branch 'develop' of https://gitee.com/fusenpack/fusenapi into develop

This commit is contained in:
eson
2023-10-20 13:25:40 +08:00
9 changed files with 103 additions and 64 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/recommend(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"`
}