Commit 2809e809 by “zcwang”

add: 拓扑id

parent 3552b0d6
...@@ -655,6 +655,7 @@ public class ChangeFlowBiz { ...@@ -655,6 +655,7 @@ public class ChangeFlowBiz {
changeFlowVO.setChangeConfirmResultTime(changeRecord.getChangeConfirmResultTime()); changeFlowVO.setChangeConfirmResultTime(changeRecord.getChangeConfirmResultTime());
changeFlowVO.setChangeResult(changeRecord.getChangeResult()); changeFlowVO.setChangeResult(changeRecord.getChangeResult());
changeFlowVO.setChangeResultDesc(changeRecord.getChangeResultDesc()); changeFlowVO.setChangeResultDesc(changeRecord.getChangeResultDesc());
changeFlowVO.setTopoId(ChangeFlowEnum.CHANGE_FLOW.getTopoId());
return changeFlowVO; return changeFlowVO;
} }
......
...@@ -14,6 +14,7 @@ import lombok.Getter; ...@@ -14,6 +14,7 @@ import lombok.Getter;
*/ */
public enum ChangeFlowEnum { public enum ChangeFlowEnum {
CHANGE_FLOW("0000", "全链路变更", "qc-change-flow"),
CHANGE_FLOW_START("79560500", "开始节点", "qc-change-flow"), CHANGE_FLOW_START("79560500", "开始节点", "qc-change-flow"),
CHANGE_FLOW_SUBMIT("79560501", "变更申请提交", "qc-change-flow"), CHANGE_FLOW_SUBMIT("79560501", "变更申请提交", "qc-change-flow"),
CHANGE_FLOW_EXE("79560502","变更执行", "qc-change-flow"), CHANGE_FLOW_EXE("79560502","变更执行", "qc-change-flow"),
......
...@@ -161,4 +161,9 @@ public class ChangeFlowVO { ...@@ -161,4 +161,9 @@ public class ChangeFlowVO {
* 变更商品基础信息 * 变更商品基础信息
*/ */
private List<ItemBasicInfoVO> itemBasicInfoList; private List<ItemBasicInfoVO> itemBasicInfoList;
/**
* topoId
*/
private String topoId;
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment