generated from dxfeng/secondev-chapanda-feishu
OCR新增字段
This commit is contained in:
parent
a5ea250272
commit
6caf239545
|
|
@ -78,6 +78,8 @@ public class ResumeRecognitionServiceImpl extends Service implements ResumeRecog
|
|||
List<RecruitDataMap<Object>> studyList = (List<RecruitDataMap<Object>>) resumeData.remove("jyjl");
|
||||
List<RecruitDataMap<Object>> workList = (List<RecruitDataMap<Object>>) resumeData.remove("gzjl");
|
||||
List<RecruitDataMap<Object>> projectList = (List<RecruitDataMap<Object>>) resumeData.remove("xmjy");
|
||||
List<RecruitDataMap<Object>> languageList = (List<RecruitDataMap<Object>>) resumeData.remove("ylnl");
|
||||
List<RecruitDataMap<Object>> internshipList = (List<RecruitDataMap<Object>>) resumeData.remove("sxjl");
|
||||
|
||||
// 状态
|
||||
resumeData.put("zt", ApplicationStatusEnum.DISTRIBUTION.getValue());
|
||||
|
|
@ -100,6 +102,8 @@ public class ResumeRecognitionServiceImpl extends Service implements ResumeRecog
|
|||
instance.insertResumeDetailTable(studyList, "uf_jcl_yppc_dt1", mainId, sourceId);
|
||||
instance.insertResumeDetailTable(workList, "uf_jcl_yppc_dt2", mainId, sourceId);
|
||||
instance.insertResumeDetailTable(projectList, "uf_jcl_yppc_dt3", mainId, sourceId);
|
||||
instance.insertResumeDetailTable(languageList, "uf_jcl_yppc_dt4", mainId, sourceId);
|
||||
instance.insertResumeDetailTable(internshipList, "uf_jcl_yppc_dt5", mainId, sourceId);
|
||||
return returnMap;
|
||||
}
|
||||
|
||||
|
|
@ -193,7 +197,7 @@ public class ResumeRecognitionServiceImpl extends Service implements ResumeRecog
|
|||
dataMap.put("sjhm", sjhm);
|
||||
// 年龄
|
||||
String nl = personalInformation.getString("年龄");
|
||||
if (StringUtils.isNotBlank(nl)) {
|
||||
if (StringUtils.isNotBlank(nl) && !"0".equals(nl)) {
|
||||
dataMap.put("nl", nl);
|
||||
}
|
||||
// 出生日期
|
||||
|
|
|
|||
Loading…
Reference in New Issue