修复境外人员推送不成功的问题
This commit is contained in:
parent
b3c3c492c6
commit
68d7d4674f
@ -317,7 +317,7 @@ public class OverseasPersonnelServiceImpl extends DefaultBaseService implements
|
|||||||
}
|
}
|
||||||
info.setbirthday(params.get("birthday") == null ? "" : params.get("birthday").toString());
|
info.setbirthday(params.get("birthday") == null ? "" : params.get("birthday").toString());
|
||||||
info.setkey_of_follow("否");
|
info.setkey_of_follow("否");
|
||||||
if("1".equals(params.get("keyOfFollow").toString())){
|
if(params.get("keyOfFollow") != null && "1".equals(params.get("keyOfFollow").toString())){
|
||||||
info.setkey_of_follow("是");
|
info.setkey_of_follow("是");
|
||||||
}
|
}
|
||||||
jObj.put("data", info.saveCheckToJson());
|
jObj.put("data", info.saveCheckToJson());
|
||||||
|
Loading…
Reference in New Issue
Block a user