From 97207d388567f51b4e4de0581f22b87892ad3c51 Mon Sep 17 00:00:00 2001 From: wjt Date: Tue, 4 Jul 2023 14:24:00 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E7=BA=BF=E7=B4=A2=E6=92=A4?= =?UTF-8?q?=E5=9B=9E=E4=B8=8D=E5=90=8C=E6=AD=A5=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/baiye/module/dao/ClueJpa.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ad-platform-services/ad-platform-source/src/main/java/com/baiye/module/dao/ClueJpa.java b/ad-platform-services/ad-platform-source/src/main/java/com/baiye/module/dao/ClueJpa.java index 909a5b3e..6504db58 100644 --- a/ad-platform-services/ad-platform-source/src/main/java/com/baiye/module/dao/ClueJpa.java +++ b/ad-platform-services/ad-platform-source/src/main/java/com/baiye/module/dao/ClueJpa.java @@ -602,7 +602,7 @@ public class ClueJpa { String nid = AESUtils.decrypt(s, AdPlatFormConstants.AD_PLATFORM); clueDto.setNid(nid); BigInteger memberId = (BigInteger) row.get("memberId"); - clueDto.setMemberId(memberId.longValue()); + clueDto.setMemberId(memberId==null?null:memberId.longValue()); clueDto.setIsFreeze(false); if (Arrays.asList(ClueTypeConstants.TOKER_TYPE).contains(clueType)) { clueDto.setIsFreeze(row.get("isFreeze") != null && (Boolean) row.get("isFreeze"));