删除无用的服务

This commit is contained in:
laodaming
2023-09-12 15:23:41 +08:00
parent a495e4e459
commit 3e714a5db6
3 changed files with 35 additions and 12 deletions

View File

@@ -378,7 +378,8 @@ type PriceItem {
}
//获取产品尺寸列表
type GetSizeByPidReq {
Pid string `form:"pid"`
Pid string `form:"pid"`
TemplateTag string `form:"template_tag"`
}
type GetSizeByPidRsp {
Id int64 `json:"id"` //尺寸id
@@ -389,6 +390,7 @@ type GetSizeByPidRsp {
ModelId int64 `json:"model_id"` //产品主模型id
IsPopular bool `json:"is_popular"` //是否受欢迎
MinPrice float64 `json:"min_price"` //最小价格
TemplateId int64 `json:"template_id"`
}
//获取产品模板
type GetTemplateByPidReq {