|
|
@@ -3344,9 +3344,9 @@ type UploadLinkImageReq struct { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type UploadLinkImageResp struct { |
|
|
type UploadLinkImageResp struct { |
|
|
Success bool `json:"success"` |
|
|
|
|
|
Image ImageSl `json:"image"` |
|
|
|
|
|
ErrorMsg string `json:"errorMsg"` |
|
|
|
|
|
|
|
|
Success bool `json:"success"` |
|
|
|
|
|
Image *ImageSl `json:"image"` |
|
|
|
|
|
ErrorMsg string `json:"errorMsg"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type ImageSl struct { |
|
|
type ImageSl struct { |
|
|
@@ -3360,9 +3360,9 @@ type GetLinkImageListReq struct { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type GetLinkImageListResp struct { |
|
|
type GetLinkImageListResp struct { |
|
|
Success bool `json:"success"` |
|
|
|
|
|
Images []ImageSl `json:"images"` |
|
|
|
|
|
ErrorMsg string `json:"errorMsg"` |
|
|
|
|
|
|
|
|
Success bool `json:"success"` |
|
|
|
|
|
Images []*ImageSl `json:"images"` |
|
|
|
|
|
ErrorMsg string `json:"errorMsg"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type DeleteLinkImageReq struct { |
|
|
type DeleteLinkImageReq struct { |
|
|
@@ -3376,11 +3376,11 @@ type DeleteLinkImageResp struct { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type SubmitLinkTaskReq struct { |
|
|
type SubmitLinkTaskReq struct { |
|
|
PartId int64 `json:"partId"` |
|
|
|
|
|
ImageId string `json:"imageId"` |
|
|
|
|
|
Cmd string `json:"cmd"` |
|
|
|
|
|
Params []ParamSl `json:"params"` |
|
|
|
|
|
ResourceId string `json:"resourceId"` |
|
|
|
|
|
|
|
|
PartId int64 `json:"partId"` |
|
|
|
|
|
ImageId string `json:"imageId"` |
|
|
|
|
|
Cmd string `json:"cmd"` |
|
|
|
|
|
Params []*ParamSl `json:"params"` |
|
|
|
|
|
ResourceId string `json:"resourceId"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type ParamSl struct { |
|
|
type ParamSl struct { |
|
|
@@ -3400,9 +3400,9 @@ type GetLinkTaskReq struct { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type GetLinkTaskResp struct { |
|
|
type GetLinkTaskResp struct { |
|
|
Success bool `json:"success"` |
|
|
|
|
|
Task TaskSl `json:"task"` |
|
|
|
|
|
ErrorMsg string `json:"errorMsg"` |
|
|
|
|
|
|
|
|
Success bool `json:"success"` |
|
|
|
|
|
Task *TaskSl `json:"task"` |
|
|
|
|
|
ErrorMsg string `json:"errorMsg"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type DeleteLinkTaskReq struct { |
|
|
type DeleteLinkTaskReq struct { |
|
|
@@ -3427,8 +3427,8 @@ type GetParticipantsReq struct { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type GetParticipantsResp struct { |
|
|
type GetParticipantsResp struct { |
|
|
Success bool `json:"success"` |
|
|
|
|
|
Participants []ParticipantSl `json:"participant"` |
|
|
|
|
|
|
|
|
Success bool `json:"success"` |
|
|
|
|
|
Participants []*ParticipantSl `json:"participant"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type GetResourceSpecsReq struct { |
|
|
type GetResourceSpecsReq struct { |
|
|
@@ -3436,8 +3436,8 @@ type GetResourceSpecsReq struct { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type GetResourceSpecsResp struct { |
|
|
type GetResourceSpecsResp struct { |
|
|
Success bool `json:"success"` |
|
|
|
|
|
ResourceSpecs []ResourceSpecSl `json:"resourceSpecs"` |
|
|
|
|
|
|
|
|
Success bool `json:"success"` |
|
|
|
|
|
ResourceSpecs []*ResourceSpecSl `json:"resourceSpecs"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type ResourceSpecSl struct { |
|
|
type ResourceSpecSl struct { |
|
|
|