Commit 7ac443b6 authored by hongguangwu's avatar hongguangwu

1.7.22-微信号

parent c7904064
...@@ -57,6 +57,8 @@ public class PreUploadEmpImportTwoVo implements Serializable { ...@@ -57,6 +57,8 @@ public class PreUploadEmpImportTwoVo implements Serializable {
private String empPhone; private String empPhone;
@ExcelAttribute(name = "邮箱", maxLength = 50) @ExcelAttribute(name = "邮箱", maxLength = 50)
private String empEmail; private String empEmail;
@ExcelAttribute(name = "微信号", maxLength = 50)
private String weChatId;
// 区域ID // 区域ID
@ExcelAttribute(name = "户籍所在地-省", isArea = true) @ExcelAttribute(name = "户籍所在地-省", isArea = true)
private String idProvince; private String idProvince;
......
...@@ -4358,6 +4358,10 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T ...@@ -4358,6 +4358,10 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
if (Common.isNotNull(excel.getEmpEmail())) { if (Common.isNotNull(excel.getEmpEmail())) {
saveEmp.setEmpEmail(excel.getEmpEmail()); saveEmp.setEmpEmail(excel.getEmpEmail());
} }
// 微信号
if (Common.isNotNull(excel.getWeChatId())) {
saveEmp.setWeChatId(excel.getWeChatId());
}
if (Common.isNotNull(excel.getSchool())) { if (Common.isNotNull(excel.getSchool())) {
saveEmp.setSchool(excel.getSchool()); saveEmp.setSchool(excel.getSchool());
} }
......
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