fix
This commit is contained in:
@@ -52,16 +52,16 @@ type ProductInfo struct {
|
||||
ProductSn string `json:"product_sn"`
|
||||
}
|
||||
type ModelInfo struct {
|
||||
ModelJson string `json:"model_json"` //模型设计json数据
|
||||
ModelJson interface{} `json:"model_json"` //模型设计json数据
|
||||
}
|
||||
type FittingInfo struct {
|
||||
FittingJson string `json:"fitting_json"` //配件设计json数据
|
||||
FittingName string `json:"fitting_name"` //配件名称
|
||||
FittingJson interface{} `json:"fitting_json"` //配件设计json数据
|
||||
FittingName string `json:"fitting_name"` //配件名称
|
||||
|
||||
}
|
||||
type TemplateInfo struct {
|
||||
TemplateJson string `json:"template_json"` //模板设计json数据
|
||||
TemplateTag string `json:"template_tag"` //模板标签
|
||||
TemplateJson interface{} `json:"template_json"` //模板设计json数据
|
||||
TemplateTag string `json:"template_tag"` //模板标签
|
||||
}
|
||||
type SizeInfo struct {
|
||||
Inch string `json:"inch"`
|
||||
@@ -76,8 +76,8 @@ type UserDiyInformation struct {
|
||||
Slogan string `json:"slogan"` //slogan
|
||||
}
|
||||
type LightInfo struct {
|
||||
LightJson string `json:"light_json"` //灯光设计json数据
|
||||
LightName string `json:"light_name"` //名称
|
||||
LightJson interface{} `json:"light_json"` //灯光设计json数据
|
||||
LightName string `json:"light_name"` //名称
|
||||
}
|
||||
|
||||
// 获取单个
|
||||
|
||||
Reference in New Issue
Block a user