Commit 99a4b396 authored by hongguangwu's avatar hongguangwu

MVP1.7.18-优化

parent 57aa7f82
...@@ -2634,6 +2634,22 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T ...@@ -2634,6 +2634,22 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
employeeInfo.setContactAddress(vo.getContactAddress()); employeeInfo.setContactAddress(vo.getContactAddress());
} }
employeeInfo.setStatus(CommonConstants.ONE_INT); employeeInfo.setStatus(CommonConstants.ONE_INT);
// 新增加同步派单的学历等信息到档案里:MVP1.7.18 2025-12-15 09:21:47
if (Common.isNotNull(vo.getHignEducation())) {
employeeInfo.setHignEducation(vo.getHignEducation());
}
if (Common.isNotNull(vo.getIsCollege())) {
employeeInfo.setIsCollege(vo.getIsCollege());
}
if (Common.isNotNull(vo.getSchool())) {
employeeInfo.setSchool(vo.getSchool());
}
if (Common.isNotNull(vo.getMajor())) {
employeeInfo.setMajor(vo.getMajor());
}
if (Common.isNotNull(vo.getGradutionDate())) {
employeeInfo.setGradutionDate(vo.getGradutionDate());
}
} }
if (Common.isNotNull(vo.getProjectNo())) { if (Common.isNotNull(vo.getProjectNo())) {
......
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