generated from dxfeng/secondev-chapanda-feishu
数据中心,同步数据完善
This commit is contained in:
parent
eff5587d80
commit
833dc912ab
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue