From 179c4d64313c9b7572778da4aaaf6c6584fe457d Mon Sep 17 00:00:00 2001 From: mitao <2763622819@qq.com> Date: 星期二, 20 五月 2025 23:48:08 +0800 Subject: [PATCH] 修改文件上传类型限制 --- 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