Merge pull request 'goctl generate types' (#98) from zhouqunjie/pcm-coordinator:master into master

Former-commit-id: 8ace4e771edc1594acc29a947d0095df5b187ae3
This commit is contained in:
zhouqunjie 2024-04-07 17:00:35 +08:00
commit f27cafed58
1 changed files with 8 additions and 2 deletions

View File

@ -5266,8 +5266,14 @@ type ScheduleReq struct {
} }
type ScheduleResp struct { type ScheduleResp struct {
Success bool `json:"success"` Results []*ScheduleResult `json:"results"`
ErrorMsg string `json:"errorMsg"` }
type ScheduleResult struct {
ClusterId string `json:"clusterId"`
TaskId string `json:"taskId"`
Replica int32 `json:"replica"`
Msg string `json:"msg"`
} }
type AiOption struct { type AiOption struct {