From 5a278a0965b417e7f39e8c209e2ff401f415066a Mon Sep 17 00:00:00 2001 From: 101captain <237651143@qq.com> Date: 星期一, 21 二月 2022 14:07:48 +0800 Subject: [PATCH] Merge branch 'hemenkou_dev' into dev --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComStreetServiceImpl.java | 35 +++++++++++++++++++++++++++-------- 1 files changed, 27 insertions(+), 8 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 ed81592..b9ed547 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 @@ -4,9 +4,12 @@ import javax.annotation.Resource; +import com.panzhihua.common.model.vos.user.AdministratorsUserVO; +import com.panzhihua.common.service.user.UserService; import org.springframework.beans.BeanUtils; import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; import org.springframework.util.ObjectUtils; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; @@ -37,6 +40,9 @@ @Resource private ComStreetDAO comStreetDAO; + @Resource + private UserService userService; + /** * 新增社区 * @@ -45,7 +51,8 @@ * @return 新增结果 */ @Override - public R addStreet(ComStreetVO comStreetVO) { + @Transactional + public R<ComStreetVO> addStreet(ComStreetVO comStreetVO) { String password = comStreetVO.getPassword(); String encode = new BCryptPasswordEncoder().encode(password); comStreetVO.setPassword(encode); @@ -59,14 +66,26 @@ if (integer > 0) { return R.fail(500, "街道已经存在"); } - BeanUtils.copyProperties(comStreetVO, comStreetDO); - int insert = comStreetDAO.insert(comStreetDO); - if (insert > 0) { - ComStreetDO comStreetDO1 = comStreetDAO.selectOne(param); - BeanUtils.copyProperties(comStreetDO1, comStreetVO); - return R.ok(comStreetVO); + AdministratorsUserVO administratorsUserVO=new AdministratorsUserVO(); + administratorsUserVO.setType(3); + administratorsUserVO.setAccount(comStreetVO.getAccount()); + administratorsUserVO.setPassword(comStreetVO.getPassword()); + administratorsUserVO.setSocialType(1); + administratorsUserVO.setRoleId(777777777L); + administratorsUserVO.setStreetId(0L); + administratorsUserVO.setName(comStreetVO.getName()); + R r=userService.addUserBackstageProperty(administratorsUserVO); + if(R.isOk(r)){ + BeanUtils.copyProperties(comStreetVO, comStreetDO); + int insert = comStreetDAO.insert(comStreetDO); + if (insert > 0) { + ComStreetDO comStreetDO1 = comStreetDAO.selectOne(param); + BeanUtils.copyProperties(comStreetDO1, comStreetVO); + return R.ok(comStreetVO); + } + return R.fail(500, ""); } - return R.fail(500, ""); + return R.fail("账号已存在"); } /** -- Gitblit v1.7.1