api代码生成

Former-commit-id: d00897a5fbbe4ba1b64fa189e3593ff111340687
This commit is contained in:
zhangwei 2023-10-11 10:20:37 +08:00
parent 0a72a0354d
commit a145861b5a
1 changed files with 7 additions and 8 deletions

View File

@ -2758,9 +2758,8 @@ type DeleteLinkImageReq struct {
} }
type DeleteLinkImageResp struct { type DeleteLinkImageResp struct {
Success bool `json:"success"` Success bool `json:"success"`
Image ImageSl `json:"image"` ErrorMsg string `json:"errorMsg"`
ErrorMsg string `json:"errorMsg"`
} }
type SubmitLinkTaskReq struct { type SubmitLinkTaskReq struct {
@ -2799,7 +2798,6 @@ type DeleteLinkTaskReq struct {
type DeleteLinkTaskResp struct { type DeleteLinkTaskResp struct {
Success bool `json:"success"` Success bool `json:"success"`
TaskId string `json:"taskId"`
ErrorMsg string `json:"errorMsg"` ErrorMsg string `json:"errorMsg"`
} }
@ -2828,10 +2826,11 @@ type GetResourceSpecsResp struct {
} }
type ResourceSpecSl struct { type ResourceSpecSl struct {
ParticipantId string `json:"participantId"` ParticipantId string `json:"participantId"`
ParticipantName string `json:"participantName"` ParticipantName string `json:"participantName"`
SpecName string `json:"resourceSpecName"` SpecName string `json:"specName"`
SpecId string `json:"resourceSpecId"` SpecId string `json:"specId"`
SpecPrice float64 `json:"specPrice"`
} }
type ParticipantSl struct { type ParticipantSl struct {