新增添加购物车接口

This commit is contained in:
laodaming
2023-09-14 15:20:37 +08:00
parent dff1ebe013
commit b71141807b
3 changed files with 44 additions and 22 deletions

View File

@@ -12,22 +12,22 @@ type CartSnapshot struct {
UserDiyInformation UserDiyInformation `json:"user_diy_information"` //用户diy数据
}
type ModelInfo struct {
ModelJson string `json:"model_json"` //模型json数据
ModelJson string `json:"model_json"` //模型设计json数据
}
type FittingInfo struct {
FittingJson string `json:"fitting_json"`
FittingJson string `json:"fitting_json"` //配件设计json数据
}
type TemplateInfo struct {
TemplateJson string `json:"template_json"` //模板json数据
TemplateJson string `json:"template_json"` //模板设计json数据
TemplateTag string `json:"template_tag"` //模板标签
}
type SizeInfo struct {
Title string `json:"title"`
Title string `json:"title"` //尺寸信息
}
type UserDiyInformation struct {
Phone string `json:"phone"`
Address string `json:"address"`
Website string `json:"website"`
Qrcode string `json:"qrcode"`
Slogan string `json:"slogan"`
Phone string `json:"phone"` //电话
Address string `json:"address"` //地址
Website string `json:"website"` //网站
Qrcode string `json:"qrcode"` //二维码
Slogan string `json:"slogan"` //slogan
}