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