Browse Source

工作流结构体

v1
超级管理员 2 years ago
parent
commit
084955405c
  1. 11
      api/version1/taskplatform/taskflow/flowType.go

11
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"`
}
//节点执行人

Loading…
Cancel
Save