提交 76b41b9f authored 作者: wangmenglong's avatar wangmenglong

增加导出功能

上级 b082bcb2
...@@ -116,16 +116,18 @@ public class SignRecordController extends BaseController { ...@@ -116,16 +116,18 @@ public class SignRecordController extends BaseController {
exportRecruit.setRtTime(item.getRtTime()); exportRecruit.setRtTime(item.getRtTime());
exportRecruit.setOrgName(item.getOrgName()); exportRecruit.setOrgName(item.getOrgName());
exportRecruit.setName(item.getName()); exportRecruit.setName(item.getName());
exportRecruit.setPersonName(item.getPerson().getName()); if(item.getPerson()!=null){
exportRecruit.setPersonPhoneNumber(item.getPerson().getPhoneNumber()); exportRecruit.setPersonName(item.getPerson().getName());
if (item.getPerson().getSex() != null){ exportRecruit.setPersonPhoneNumber(item.getPerson().getPhoneNumber());
if (item.getPerson().getSex()){ if (item.getPerson().getSex() != null){
exportRecruit.setPersonSex("男"); if (item.getPerson().getSex()){
} else { exportRecruit.setPersonSex("男");
exportRecruit.setPersonSex("女"); } else {
exportRecruit.setPersonSex("女");
}
} }
exportRecruit.setPersonIdNo(item.getPerson().getIdNo());
} }
exportRecruit.setPersonIdNo(item.getPerson().getIdNo());
switch (item.getRecordState()){ switch (item.getRecordState()){
case "INTERVIEW": case "INTERVIEW":
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论