forked from JointCloud/pcm-coordinator
parent
225720a518
commit
befd3d7339
|
@ -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"`
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue