goctl generate types

Former-commit-id: 36cf4966933f78d170ae6a43f4af3f4d100c803f
This commit is contained in:
Jake 2024-04-07 16:57:54 +08:00
parent 72fbb7c787
commit 74789e940d
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 {