This commit is contained in:
laodaming
2023-07-14 19:25:52 +08:00
parent 0db42491ae
commit edd3d7353d
5 changed files with 172 additions and 0 deletions

View File

@@ -47,6 +47,9 @@ service product {
//获取产品模型信息
@handler GetModelByPidHandler
get /api/product/get_model_by_pid(GetModelByPidReq) returns (response);
//获取产品阶梯价格列表
@handler GetPriceByPidHandler
get /api/product/get_price_by_pid(GetPriceByPidReq) returns (response);
//*********************产品详情分解接口结束***********************
}
@@ -317,4 +320,8 @@ type GetRenderDesignRsp {
//获取产品模型信息
type GetModelByPidReq {
Pid string `form:"pid"` //实际上是产品sn
}
//获取产品阶梯价格
type GetPriceByPidReq {
Pid string `form:"pid"`
}