diff --git a/api/internal/types/types.go b/api/internal/types/types.go index def4b14f..ac41c0bb 100644 --- a/api/internal/types/types.go +++ b/api/internal/types/types.go @@ -2758,9 +2758,8 @@ type DeleteLinkImageReq struct { } type DeleteLinkImageResp struct { - Success bool `json:"success"` - Image ImageSl `json:"image"` - ErrorMsg string `json:"errorMsg"` + Success bool `json:"success"` + ErrorMsg string `json:"errorMsg"` } type SubmitLinkTaskReq struct { @@ -2799,7 +2798,6 @@ type DeleteLinkTaskReq struct { type DeleteLinkTaskResp struct { Success bool `json:"success"` - TaskId string `json:"taskId"` ErrorMsg string `json:"errorMsg"` } @@ -2828,10 +2826,11 @@ type GetResourceSpecsResp struct { } type ResourceSpecSl struct { - ParticipantId string `json:"participantId"` - ParticipantName string `json:"participantName"` - SpecName string `json:"resourceSpecName"` - SpecId string `json:"resourceSpecId"` + ParticipantId string `json:"participantId"` + ParticipantName string `json:"participantName"` + SpecName string `json:"specName"` + SpecId string `json:"specId"` + SpecPrice float64 `json:"specPrice"` } type ParticipantSl struct {