Browse Source

api代码生成

Former-commit-id: d00897a5fb
pull/9/head
zhangwei 2 years ago
parent
commit
a145861b5a
1 changed files with 7 additions and 8 deletions
  1. +7
    -8
      api/internal/types/types.go

+ 7
- 8
api/internal/types/types.go View File

@@ -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 {


Loading…
Cancel
Save