This commit is contained in:
laodaming
2023-11-24 16:01:29 +08:00
parent e21b0b337f
commit 21f587ed55
4 changed files with 6 additions and 6 deletions

View File

@@ -170,7 +170,6 @@ type ModelInfo {
}
type LightInfo {
Id int64 `json:"id"` //灯光id
LightName string `json:"light_name"` //灯光组名称
LightDesignInfo interface{} `json:"light_design_info"` //灯光设计信息
}
type ProductInfo {
@@ -203,5 +202,5 @@ type ModelItem {
Name string `json:"name"`
MaterialImage string `json:"material_image"` //默认贴图
DesignInfo interface{} `json:"design_info"`
LightInfo interface{} `json:"light_info"`
LightInfo LightInfo `json:"light_info"`
}