This commit is contained in:
laodaming
2023-07-14 16:48:04 +08:00
parent 3a6ab7a666
commit 0db42491ae
9 changed files with 202 additions and 11 deletions

View File

@@ -44,6 +44,9 @@ service product {
//获取云渲染设计方案信息
@handler GetRenderDesignHandler
get /api/product/render_design(GetRenderDesignReq) returns (response);
//获取产品模型信息
@handler GetModelByPidHandler
get /api/product/get_model_by_pid(GetModelByPidReq) returns (response);
//*********************产品详情分解接口结束***********************
}
@@ -309,4 +312,9 @@ type GetRenderDesignRsp {
SizeId int64 `json:"size_id"`
TemplateId int64 `json:"template_id"`
LogoColor []string `json:"logo_color"`
}
//获取产品模型信息
type GetModelByPidReq {
Pid string `form:"pid"` //实际上是产品sn
}