This commit is contained in:
laodaming 2023-10-24 13:59:05 +08:00
parent e35ba06a97
commit 56f4460995

View File

@ -13,7 +13,7 @@ service product {
//获取分类产品列表 //获取分类产品列表
@handler GetTagProductListHandler @handler GetTagProductListHandler
get /api/product/tag_product_list(GetTagProductListReq) returns (response); get /api/product/tag_product_list(GetTagProductListReq) returns (response);
//获取产品模型信息 //获取产品模型信息(即将废弃)
@handler GetModelByPidHandler @handler GetModelByPidHandler
get /api/product/get_model_by_pid(GetModelByPidReq) returns (response); get /api/product/get_model_by_pid(GetModelByPidReq) returns (response);
//获取产品阶梯价格信息 //获取产品阶梯价格信息
@ -22,19 +22,19 @@ service product {
//根据产品+配件搭配计算价格 //根据产品+配件搭配计算价格
@handler CalculateProductPriceHandler @handler CalculateProductPriceHandler
post /api/product/calculate_product_price(CalculateProductPriceReq) returns (response); post /api/product/calculate_product_price(CalculateProductPriceReq) returns (response);
//获取产品尺寸列表 //获取产品尺寸列表(即将废弃)
@handler GetSizeByPidHandler @handler GetSizeByPidHandler
get /api/product/get_size_by_pid(GetSizeByPidReq) returns (response); get /api/product/get_size_by_pid(GetSizeByPidReq) returns (response);
//获取产品模板 //获取产品模板(即将废弃)
@handler GetTemplateByPidHandler @handler GetTemplateByPidHandler
get /api/product/get_template_by_pid(GetTemplateByPidReq) returns (response); get /api/product/get_template_by_pid(GetTemplateByPidReq) returns (response);
//获取产品配件数据 //获取产品配件数据(即将废弃)
@handler GetFittingByPidHandler @handler GetFittingByPidHandler
get /api/product/get_fitting_by_pid(GetFittingByPidReq) returns (response); get /api/product/get_fitting_by_pid(GetFittingByPidReq) returns (response);
//获取产品灯光数据 //获取产品灯光数据(即将废弃)
@handler GetLightByPidHandler @handler GetLightByPidHandler
get /api/product/get_light_by_pid(GetLightByPidReq) returns (response); get /api/product/get_light_by_pid(GetLightByPidReq) returns (response);
//获取产品渲染设置 //获取产品渲染设置(即将废弃)
@handler GetRenderSettingByPidHandler @handler GetRenderSettingByPidHandler
get /api/product/get_render_setting_by_pid(GetRenderSettingByPidReq) returns (response); get /api/product/get_render_setting_by_pid(GetRenderSettingByPidReq) returns (response);
//获取详情页推荐产品列表 //获取详情页推荐产品列表