Commit 1faaba31 authored by huyuchen's avatar huyuchen

huych-入职登记提交

parent ee925cd0
......@@ -228,9 +228,45 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
.last(CommonConstants.LAST_ONE_SQL));
EmployeeRegistrationPre pre = new EmployeeRegistrationPre();
if (Common.isNotNull(preExit)) {
BeanUtils.copyProperties(preVo,pre);
BeanUtils.copyProperties(preExit,pre);
pre.setId(preExit.getId());
baseMapper.deleteById(preExit);
if (Common.isNotNull(preVo.getServerItem())) {
pre.setServerItem(preVo.getServerItem());
}
if (Common.isNotNull(preVo.getFileProvince())) {
pre.setFileProvince(preVo.getFileProvince());
}
if (Common.isNotNull(preVo.getFileCity())) {
pre.setFileCity(preVo.getFileCity());
}
if (Common.isNotNull(preVo.getFileTown())) {
pre.setFileTown(preVo.getFileTown());
} else {
pre.setFileTown(null);
}
if (Common.isNotNull(preVo.getProvinceCode())) {
pre.setProvinceCode(preVo.getProvinceCode());
}
if (Common.isNotNull(preVo.getCityCode())) {
pre.setCityCode(preVo.getCityCode());
}
if (Common.isNotNull(preVo.getTownCode())) {
pre.setTownCode(preVo.getTownCode());
} else {
pre.setTownCode(null);
}
if (Common.isNotNull(preVo.getContractType())) {
pre.setContractType(preVo.getContractType());
}
if (Common.isNotNull(preVo.getEmpNature())) {
pre.setEmpNature(preVo.getEmpNature());
}
if (Common.isNotNull(preVo.getContractSubName())) {
pre.setContractSubName(preVo.getContractSubName());
}else {
pre.setContractSubName(null);
}
}
if (Common.isNotNull(preVo.getExpectedCollectionTime())) {
pre.setExpectedCollectionTime(LocalDateTimeUtils.dateToLocalDateTime(preVo.getExpectedCollectionTime()));
......
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