Commit 3b32985a authored by huyuchen's avatar huyuchen

huych-商险自动化逻辑调整

parent 8a6b16cd
...@@ -887,6 +887,9 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur ...@@ -887,6 +887,9 @@ public class TEmployeeInsurancePreServiceImpl extends ServiceImpl<TEmployeeInsur
public EmployeePreLogListVo getListByEmpPreId(String empPreId) { public EmployeePreLogListVo getListByEmpPreId(String empPreId) {
EmployeePreLogListVo vo = new EmployeePreLogListVo(); EmployeePreLogListVo vo = new EmployeePreLogListVo();
List<TEmployeeInsurancePre> preList = baseMapper.getListByEmpPreId(empPreId); List<TEmployeeInsurancePre> preList = baseMapper.getListByEmpPreId(empPreId);
if (Common.isNotNull(preList) && !preList.isEmpty()) {
preList.forEach(e->e.setErrorTime(null));
}
vo.setPreList(preList); vo.setPreList(preList);
return vo; return vo;
} }
......
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