Signed-off-by: jagger <cossjie@foxmail.com>

Former-commit-id: 7bb2b54fa6a87ceee04a2c1e68bf7bb11f48bfe1
This commit is contained in:
jagger 2024-06-22 17:44:30 +08:00
parent 7da9c4d240
commit 4185ffac47
2 changed files with 12 additions and 8 deletions

View File

@ -1244,6 +1244,8 @@ type (
SynergyStatus int64 `json:"synergyStatus"`
ClusterInfos []*ClusterInfo `json:"clusterInfos"`
SubTaskInfos []*SubTaskInfo `json:"subTaskInfos"`
TaskTypeDict string `json:"taskTypeDict"`
AdapterTypeDict string `json:"adapterTypeDict"`
}
SubTaskInfo{

View File

@ -1159,14 +1159,16 @@ type TaskStatusResp struct {
}
type TaskDetailsResp struct {
Name string `json:"name"`
Description string `json:"description"`
StartTime string `json:"startTime"`
EndTime string `json:"endTime"`
Strategy int64 `json:"strategy"`
SynergyStatus int64 `json:"synergyStatus"`
ClusterInfos []*ClusterInfo `json:"clusterInfos"`
SubTaskInfos []*SubTaskInfo `json:"subTaskInfos"`
Name string `json:"name"`
Description string `json:"description"`
StartTime string `json:"startTime"`
EndTime string `json:"endTime"`
Strategy int64 `json:"strategy"`
SynergyStatus int64 `json:"synergyStatus"`
ClusterInfos []*ClusterInfo `json:"clusterInfos"`
SubTaskInfos []*SubTaskInfo `json:"subTaskInfos"`
TaskTypeDict string `json:"taskTypeDict"`
AdapterTypeDict string `json:"adapterTypeDict"`
}
type SubTaskInfo struct {