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_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngCarServiceImpl.java | 10 ++++++---- 1 files changed, 6 insertions(+), 4 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngCarServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngCarServiceImpl.java index fc3e740..8cf20eb 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngCarServiceImpl.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComMngCarServiceImpl.java @@ -190,16 +190,18 @@ list.forEach(vo -> { int count = comMngCarDAO.selectCount(new QueryWrapper<ComMngCarDO>().lambda() .eq(ComMngCarDO::getPlateNum, vo.getPlateNum()).and(wrapper -> wrapper.eq(ComMngCarDO::getSource, 2))); - if (count == 0 && areaMap.containsKey(vo.getAreaName())) { - ComMngCarDO comMngCarDO = new ComMngCarDO(); - BeanUtils.copyProperties(vo, comMngCarDO); + ComMngCarDO comMngCarDO = new ComMngCarDO(); + BeanUtils.copyProperties(vo, comMngCarDO); + if (count == 0 ) { + if(StringUtils.isNotEmpty(vo.getAreaName())&&areaMap.containsKey(vo.getAreaName())){ + comMngCarDO.setAreaId(areaMap.get(vo.getAreaName()).getVillageId()); + } try { comMngCarDO.setCardNo(AESUtil.encrypt128(vo.getCardNo(), aesKey)); } catch (Exception e) { } comMngCarDO.setCommunityId(communityId); - comMngCarDO.setAreaId(areaMap.get(vo.getAreaName()).getVillageId()); R<SysUserVO> sysUserVOR = userService.getSysUserVOByPhone(vo.getMobile()); if (R.isOk(sysUserVOR)) { SysUserVO sysUserVO = -- Gitblit v1.7.1