From 70d2a5d0f9c6951b2d4cac954041ed73582ff7eb Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期一, 09 六月 2025 11:54:00 +0800
Subject: [PATCH] 6.9新增登录失败冻结逻辑

---
 springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/SysUserInputServiceImpl.java |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/SysUserInputServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/SysUserInputServiceImpl.java
index 27eb545..4bbd92b 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/SysUserInputServiceImpl.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/SysUserInputServiceImpl.java
@@ -147,10 +147,11 @@
      */
     @Override
     public CommunityUserInfoVO detailUserComunity(Long userId) {
-        CommunityUserInfoVO communityUserInfoVO = new CommunityUserInfoVO();
+        CommunityUserInfoVO communityUserInfoVO=null;
 //        userId = userId - 100000000l;
         SysUserInputDO sysUserInputDO = sysUserInputDAO.selectById(userId);
         if (!org.springframework.util.ObjectUtils.isEmpty(sysUserInputDO)) {
+            communityUserInfoVO = new CommunityUserInfoVO();
             BeanUtils.copyProperties(sysUserInputDO, communityUserInfoVO);
             String idCard = sysUserInputDO.getIdCard();
             if (!org.springframework.util.ObjectUtils.isEmpty(idCard)) {

--
Gitblit v1.7.1