7e2cd4f1 by 肖初晴

【DAOP-1.0】企业认证

【功能点】变更记录增加过滤条件
1 parent a393e3bc
...@@ -30,6 +30,9 @@ public class ChangeInfoUtil { ...@@ -30,6 +30,9 @@ public class ChangeInfoUtil {
30 List<ChangeInfoVO> list = new ArrayList<>(); 30 List<ChangeInfoVO> list = new ArrayList<>();
31 //循环对比每组记录生来变更内容 31 //循环对比每组记录生来变更内容
32 for(EnterpriseServiceImpl.ChangeApproveBean item : beanList){ 32 for(EnterpriseServiceImpl.ChangeApproveBean item : beanList){
33 if(item.oldBean == null || item.newBean == null){
34 continue;
35 }
33 List<CompareResult> diffList = ObjectUtil.getBeanDiff(item.oldBean,item.newBean); 36 List<CompareResult> diffList = ObjectUtil.getBeanDiff(item.oldBean,item.newBean);
34 getVenueResult(item,list); 37 getVenueResult(item,list);
35 getStartEndResult(item,list); 38 getStartEndResult(item,list);
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!