generated from dxfeng/secondev-chapanda-feishu
offer同步 增加薪资包、招聘系统招聘需求ID、是否需要健康证字段
This commit is contained in:
parent
637d793951
commit
7188ba5a7f
|
|
@ -139,6 +139,8 @@ public class SyncBeiSenOfferCronJob implements EsbServerlessRpcRemoteInterface {
|
||||||
mainDataObj.put("htqxy", convertOffer.getContactLength());
|
mainDataObj.put("htqxy", convertOffer.getContactLength());
|
||||||
mainDataObj.put("lastSchoolCode", convertOffer.getLastSchoolCode());
|
mainDataObj.put("lastSchoolCode", convertOffer.getLastSchoolCode());
|
||||||
mainDataObj.put("sfbmfzr", convertOffer.getIsCharge());
|
mainDataObj.put("sfbmfzr", convertOffer.getIsCharge());
|
||||||
|
// 招聘需求ID
|
||||||
|
mainDataObj.put("zpxtzpxqid", convertOffer.getRecruitmentRequirement());
|
||||||
|
|
||||||
|
|
||||||
mainDataObj.put("gygx", convertOffer.getEmployType());
|
mainDataObj.put("gygx", convertOffer.getEmployType());
|
||||||
|
|
@ -164,8 +166,15 @@ public class SyncBeiSenOfferCronJob implements EsbServerlessRpcRemoteInterface {
|
||||||
Map<String, String> customProperties = convertOffer.getCustomProperties();
|
Map<String, String> customProperties = convertOffer.getCustomProperties();
|
||||||
if (null != customProperties) {
|
if (null != customProperties) {
|
||||||
mainDataObj.put("xzba", customProperties.get("extxinchougoucheng_431582_649313359"));
|
mainDataObj.put("xzba", customProperties.get("extxinchougoucheng_431582_649313359"));
|
||||||
|
String sfxyjkz = customProperties.get("extshifouxuyaotijiaojiangkangzheng_431582_1604307053");
|
||||||
|
log.error("sfxyjkz==={}", sfxyjkz);
|
||||||
|
if ("是".equals(sfxyjkz) || "1".equals(sfxyjkz)) {
|
||||||
|
sfxyjkz = "1";
|
||||||
|
} else {
|
||||||
|
sfxyjkz = "0";
|
||||||
|
}
|
||||||
|
mainDataObj.put("sfxyjkz", sfxyjkz);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// 其他转换方式
|
// 其他转换方式
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue