From 68d7d4674fc8cbb106089ed0a845ba29e511852f Mon Sep 17 00:00:00 2001 From: wans <747101512@qq.com> Date: Fri, 18 Feb 2022 14:35:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=A2=83=E5=A4=96=E4=BA=BA?= =?UTF-8?q?=E5=91=98=E6=8E=A8=E9=80=81=E4=B8=8D=E6=88=90=E5=8A=9F=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../overseaspersonnel/impl/OverseasPersonnelServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/cn/com/tenlion/commonpopulation/service/overseaspersonnel/impl/OverseasPersonnelServiceImpl.java b/src/main/java/cn/com/tenlion/commonpopulation/service/overseaspersonnel/impl/OverseasPersonnelServiceImpl.java index 7ba9ba8..6819657 100644 --- a/src/main/java/cn/com/tenlion/commonpopulation/service/overseaspersonnel/impl/OverseasPersonnelServiceImpl.java +++ b/src/main/java/cn/com/tenlion/commonpopulation/service/overseaspersonnel/impl/OverseasPersonnelServiceImpl.java @@ -317,7 +317,7 @@ public class OverseasPersonnelServiceImpl extends DefaultBaseService implements } info.setbirthday(params.get("birthday") == null ? "" : params.get("birthday").toString()); 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("是"); } jObj.put("data", info.saveCheckToJson());