This commit is contained in:
laodaming
2023-07-19 10:48:52 +08:00
parent c6f445708d
commit d466364385
6 changed files with 122 additions and 66 deletions

View File

@@ -66,8 +66,8 @@ service product {
@handler GetRenderSettingByPidHandler
get /api/product/get_render_setting_by_pid(GetRenderSettingByPidReq) returns (response);
//获取产品千人千面设计方案
@handler GetThousandFaceDesignByPidHandler
get /api/product/get_thousand_face_design_by_pid(GetThousandFaceDesignByPidReq) returns (response);
@handler GetLastProductDesignHandler
get /api/product/get_last_product_design(request) returns (response);
//*********************产品详情分解接口结束***********************
}
@@ -404,13 +404,10 @@ type GetRenderSettingByPidRsp {
Colors interface{} `json:"colors"`
}
//获取产品千人千面设计方案
type GetThousandFaceDesignByPidReq {
Pid string `form:"pid"`
}
type GetThousandFaceDesignByPidRsp {
type GetLastProductDesignRsp {
Id int64 `json:"id"`
OptionalId int64 `json:"optional_id"`
SizeId int64 `json:"size_id"`
LogoColor []string `json:"logo_color"`
LogoColor interface{} `json:"logo_color"`
Info interface{} `json:"info"`
}