数据中心,同步数据完善

This commit is contained in:
dxfeng 2024-08-08 13:36:38 +08:00
parent eff5587d80
commit 833dc912ab
1 changed files with 8 additions and 1 deletions

View File

@ -221,7 +221,14 @@ public class ResumeIdentifyServiceImpl extends Service implements ResumeIdentify
if (obj.containsKey("性别")) {
v = this.bb.getPropValue("resume_qianliling", "xb");
if (v != null && v.length() > 0) {
rs.put(this.bb.getPropValue("resume_qianliling", "xb"), "".equals(this.parseArray(obj.getJSONArray("性别"))) ? "0" : "1");
String sex = null;
String valueSpan = this.parseArray(obj.getJSONArray("性别"));
if ("".equals(valueSpan)) {
sex = "0";
} else if ("".equals(valueSpan)) {
sex = "1";
}
rs.put(this.bb.getPropValue("resume_qianliling", "xb"), sex);
}
}