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 {
Success bool `json:"success"`
ErrorMsg string `json:"errorMsg"`
Results []*ScheduleResult `json:"results"`
}
type ScheduleResult struct {
ClusterId string `json:"clusterId"`
TaskId string `json:"taskId"`
Replica int32 `json:"replica"`
Msg string `json:"msg"`
}
type AiOption struct {