fix
This commit is contained in:
@@ -70,16 +70,16 @@ type AddBaseMapReq {
|
||||
}
|
||||
//更新模板
|
||||
type UpdateTemplateReq {
|
||||
ModelId int64 `json:"modelId"`
|
||||
TemplateData TemplateData `json:"templateData"`
|
||||
ModelId int64 `json:"modelId"`
|
||||
TemplateData *TemplateData `json:"templateData"`
|
||||
}
|
||||
type TemplateData {
|
||||
Id int64 `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Cover string `json:"cover"`
|
||||
IsPublic bool `json:"isPublic"`
|
||||
Material string `json:"material"`
|
||||
MaterialList []interface{} `json:"materialList"`
|
||||
Id int64 `json:"id"`
|
||||
Name string `json:"name"`
|
||||
Cover string `json:"cover"`
|
||||
IsPublic bool `json:"isPublic"`
|
||||
Material string `json:"material"`
|
||||
MaterialList []map[string]interface{} `json:"materialList"`
|
||||
}
|
||||
type UpdateTemplateRsp {
|
||||
ModelId int64 `json:"modelId"`
|
||||
|
||||
Reference in New Issue
Block a user