From 084955405c69bbff487bad12ed7e17dccd142a1e Mon Sep 17 00:00:00 2001 From: herenshan112 Date: Mon, 30 Oct 2023 13:12:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E7=BB=93=E6=9E=84?= =?UTF-8?q?=E4=BD=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/version1/taskplatform/taskflow/flowType.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/api/version1/taskplatform/taskflow/flowType.go b/api/version1/taskplatform/taskflow/flowType.go index 163eda3..384dc99 100644 --- a/api/version1/taskplatform/taskflow/flowType.go +++ b/api/version1/taskplatform/taskflow/flowType.go @@ -61,6 +61,17 @@ type NodePublicInfo struct { Executionaddress string `json:"executionaddress"` //第三方执行地址 ChildNode *NodePublicInfo `json:"childNode"` //子节点 + Matrix MatrixInfo `json:"matrix"` // +} + +//矩阵信息 +type MatrixInfo struct { + MatrixId int64 `json:"matrixid"` + FactorId int64 `json:"factorid"` + OutcomeId int64 `json:"outcomeid"` + MatrixName string `json:"matrixName"` + FactorName string `json:"factorName"` + OutcomeName string `json:"outcomeName"` } //节点执行人