From c24bd91b480d8d87844e795ce11c759ea1e6be98 Mon Sep 17 00:00:00 2001
From: 101captain <237651143@qq.com>
Date: 星期二, 22 二月 2022 16:53:14 +0800
Subject: [PATCH] 三社功能提交

---
 springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComStreetServiceImpl.java |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComStreetServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComStreetServiceImpl.java
index 03574a5..370380c 100644
--- a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComStreetServiceImpl.java
+++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComStreetServiceImpl.java
@@ -53,9 +53,6 @@
     @Override
     @Transactional
     public R<ComStreetVO> addStreet(ComStreetVO comStreetVO) {
-        String password = comStreetVO.getPassword();
-        String encode = new BCryptPasswordEncoder().encode(password);
-        comStreetVO.setPassword(encode);
         ComStreetDO comStreetDO = new ComStreetDO();
         LambdaQueryWrapper<ComStreetDO> param = new QueryWrapper<ComStreetDO>().lambda();
         param.eq(ComStreetDO::getName, comStreetVO.getName());
@@ -79,6 +76,10 @@
             BeanUtils.copyProperties(comStreetVO, comStreetDO);
             int insert = comStreetDAO.insert(comStreetDO);
             if (insert > 0) {
+                AdministratorsUserVO administratorsUserVO1=new AdministratorsUserVO();
+                administratorsUserVO1.setUserId(Long.parseLong(r.getData().toString()));
+                administratorsUserVO1.setStreetId(comStreetDO.getStreetId());
+                userService.updateStreet(administratorsUserVO1);
                 ComStreetDO comStreetDO1 = comStreetDAO.selectOne(param);
                 BeanUtils.copyProperties(comStreetDO1, comStreetVO);
                 return R.ok(comStreetVO);

--
Gitblit v1.7.1