存算联动api修改2

Former-commit-id: 9d4615ff6fee31446e9fdbeb9ebad8d41e6f3d0b
This commit is contained in:
tzwang 2023-09-13 17:13:37 +08:00
parent 225720a518
commit befd3d7339
1 changed files with 4 additions and 4 deletions

View File

@ -15,11 +15,11 @@ type (
UploadLinkImageResp {
Success bool `json:"success"`
Image Image `json:"image"`
Image ImageSl `json:"image"`
ErrorMsg string `json:"errorMsg"`
}
Image {
ImageSl {
ImageId string `json:"imageId"`
ImageName string `json:"imageName"`
ImageStatus string `json:"imageStatus"`
@ -31,7 +31,7 @@ type (
GetLinkImageListResp {
Success bool `json:"success"`
Images []Image `json:"images"`
Images []ImageSl `json:"images"`
ErrorMsg string `json:"errorMsg"`
}
@ -42,7 +42,7 @@ type (
DeleteLinkImageResp {
Success bool `json:"success"`
Image Image `json:"image"`
Image ImageSl `json:"image"`
ErrorMsg string `json:"errorMsg"`
}