This commit is contained in:
laodaming
2023-11-24 15:47:02 +08:00
parent 43b45a5461
commit e21b0b337f
3 changed files with 69 additions and 18 deletions

View File

@@ -197,10 +197,11 @@ type ProductItem {
ModelList []ModelItem `json:"model_list"`
}
type ModelItem {
Id int64 `json:"id"`
Type int64 `json:"type"` //1模型 2配件 3场景
Title string `json:"title"`
Name string `json:"name"`
DesignInfo interface{} `json:"design_info"`
LightInfo interface{} `json:"light_info"`
Id int64 `json:"id"`
Type int64 `json:"type"` //1模型 2配件 3场景
Title string `json:"title"`
Name string `json:"name"`
MaterialImage string `json:"material_image"` //默认贴图
DesignInfo interface{} `json:"design_info"`
LightInfo interface{} `json:"light_info"`
}