Commit 002672dc authored by huyuchen's avatar huyuchen

huych-社保自动化相关提交

parent 1e409a9c
...@@ -281,9 +281,11 @@ public class TDispatchInfoPreServiceImpl extends ServiceImpl<TDispatchInfoPreMap ...@@ -281,9 +281,11 @@ public class TDispatchInfoPreServiceImpl extends ServiceImpl<TDispatchInfoPreMap
TDispatchInfoPre preExit = baseMapper.selectOne(Wrappers.<TDispatchInfoPre>query().lambda() TDispatchInfoPre preExit = baseMapper.selectOne(Wrappers.<TDispatchInfoPre>query().lambda()
.eq(TDispatchInfoPre::getRegisterId, id) .eq(TDispatchInfoPre::getRegisterId, id)
.last(CommonConstants.LAST_ONE_SQL)); .last(CommonConstants.LAST_ONE_SQL));
TDispatchInfoPreVo pre = new TDispatchInfoPreVo(); if (Common.isNotNull(preExit)) {
BeanUtils.copyProperties(preExit, pre); TDispatchInfoPreVo pre = new TDispatchInfoPreVo();
preSocialListVo.setDispatchInfoPreVo(pre); BeanUtils.copyProperties(preExit, pre);
preSocialListVo.setDispatchInfoPreVo(pre);
}
return preSocialListVo; return preSocialListVo;
} }
......
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