fix
This commit is contained in:
@@ -40,6 +40,11 @@ service product {
|
||||
//获取分类产品列表
|
||||
@handler GetTagProductListHandler
|
||||
get /api/product/tag_product_list(GetTagProductListReq) returns (response);
|
||||
//*********************产品详情分解接口开始***********************
|
||||
//获取云渲染设计方案信息
|
||||
@handler GetRenderDesignHandler
|
||||
get /api/product/render_design(GetRenderDesignReq) returns (response);
|
||||
//*********************产品详情分解接口结束***********************
|
||||
}
|
||||
|
||||
//获取产品列表
|
||||
@@ -292,4 +297,16 @@ type TagProduct {
|
||||
SizeNum uint32 `json:"size_num"`
|
||||
MiniPrice int64 `json:"mini_price"`
|
||||
CoverDefault string `json:"cover_default"`
|
||||
}
|
||||
//获取云渲染设计方案信息
|
||||
type GetRenderDesignReq {
|
||||
Sn string `form:"sn"`
|
||||
}
|
||||
type GetRenderDesignRsp {
|
||||
Id int64 `json:"id"`
|
||||
Info interface{} `json:"info"`
|
||||
OptionalId int64 `json:"optional_id"`
|
||||
SizeId int64 `json:"size_id"`
|
||||
TemplateId int64 `json:"template_id"`
|
||||
LogoColor []string `json:"logo_color"`
|
||||
}
|
||||
Reference in New Issue
Block a user