goctl generate types
Former-commit-id: 36cf4966933f78d170ae6a43f4af3f4d100c803f
This commit is contained in:
parent
72fbb7c787
commit
74789e940d
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue