Commit 402a155f by “zcwang”

add: 字段缺失

parent 79cbb425
......@@ -190,6 +190,7 @@ public class ChangeFlowBiz {
changeRecord.setChangeSupplier(changeFlowCreateReq.getChangeSupplier());
changeRecord.setChangeReason(changeFlowCreateReq.getChangeReason());
changeRecord.setChangeContent(changeFlowCreateReq.getChangeContent());
changeRecord.setChangeChecking(changeFlowCreateReq.getChangeChecking());
changeRecord.setChangeRiskDesc(changeFlowCreateReq.getChangeRiskDesc());
changeRecord.setChangeProfit(changeFlowCreateReq.getChangeProfit());
changeRecord.setChangeProfitDesc(changeFlowCreateReq.getChangeProfitDesc());
......
......@@ -103,6 +103,11 @@ public class ChangeRecord {
private String changeRiskDesc;
/**
* 变更验证措施
*/
private String changeChecking;
/**
* 变更收益类型
*/
private Integer changeProfit;
......
......@@ -91,6 +91,11 @@ public class ChangeFlowCreateReq {
private String changeRiskDesc;
/**
* 变更验证措施
*/
private String changeChecking;
/**
* 变更收益类型
*/
@NotNull(message = "变更收益类型不能为空")
......
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