taskinfo信息修改

Former-commit-id: 5f029e509812716db6644562ccd1e149f3b907e2
This commit is contained in:
zhangwei 2023-08-24 16:16:59 +08:00
parent bc7f7f5a1a
commit 99ce60eaad
2 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ type (
TaskId int64 `json:"taskId,optional"`
TaskType string `json:"taskType,optional"`
matchLabels map[string]string `json:"matchLabels"`
participantId string `json:"participantId"`
participantId int64 `json:"participantId"`
metadata interface{} `json:"metadata"`
}
)

View File

@ -179,7 +179,7 @@ type TaskInfo struct {
TaskId int64 `json:"taskId,optional"`
TaskType string `json:"taskType,optional"`
MatchLabels map[string]string `json:"matchLabels"`
ParticipantId string `json:"participantId"`
ParticipantId int64 `json:"participantId"`
Metadata interface{} `json:"metadata"`
}