From 931ea9dcdf62ea348f1811b9faf95d07ab1c1ac8 Mon Sep 17 00:00:00 2001 From: 罗元桥 <2376770955@qq.com> Date: 星期日, 26 九月 2021 14:22:22 +0800 Subject: [PATCH] Merge branch 'test' into 'test_bak' --- springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java | 98 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 98 insertions(+), 0 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java new file mode 100644 index 0000000..d96bb49 --- /dev/null +++ b/springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComPropertyServiceImpl.java @@ -0,0 +1,98 @@ +package com.panzhihua.service_community.service.impl; + +import cn.hutool.core.date.DateUtil; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.panzhihua.common.model.dtos.property.CommonPage; +import com.panzhihua.common.model.vos.R; +import com.panzhihua.common.model.vos.community.ComPropertyVO; +import com.panzhihua.common.model.vos.user.AdministratorsUserVO; +import com.panzhihua.common.service.user.UserService; +import com.panzhihua.service_community.entity.ComActSocialOrg; +import com.panzhihua.service_community.entity.ComProperty; +import com.panzhihua.service_community.dao.ComPropertyDao; +import com.panzhihua.service_community.service.ComPropertyService; +import lombok.extern.slf4j.Slf4j; +import org.springframework.beans.BeanUtils; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import javax.annotation.Resource; + +/** + * (ComProperty)表服务实现类 + * + * @author makejava + * @since 2021-09-18 10:46:51 + */ +@Slf4j +@Service +public class ComPropertyServiceImpl extends ServiceImpl<ComPropertyDao, ComProperty> implements ComPropertyService { + @Resource + private ComPropertyDao comPropertyDao; + @Resource + private UserService userService; + @Override + public R pageList(CommonPage commonPage) { + return R.ok(comPropertyDao.pageList(new Page(commonPage.getPage(),commonPage.getSize()),commonPage)); + } + + @Override + public R selectById(Long id) { + return null; + } + + @Override + @Transactional(rollbackFor = Exception.class) + public R insert(ComPropertyVO comPropertyVO) { + if(comPropertyVO!=null){ + ComProperty comProperty=new ComProperty(); + BeanUtils.copyProperties(comPropertyVO,comProperty); + AdministratorsUserVO administratorsUserVO=new AdministratorsUserVO(); + administratorsUserVO.setType(3); + administratorsUserVO.setAccount(comPropertyVO.getAccount()); + administratorsUserVO.setPassword(comPropertyVO.getPassword()); + administratorsUserVO.setRoleId(comPropertyVO.getRoleId()); + administratorsUserVO.setCommunityId(comPropertyVO.getCommunityId()); + administratorsUserVO.setAreaId(comPropertyVO.getAreaId()); + administratorsUserVO.setName(comPropertyVO.getContactName()); + administratorsUserVO.setPhone(comPropertyVO.getPhone()); + R r=userService.addUserBackstageProperty(administratorsUserVO); + if(R.isOk(r)){ + comProperty.setUserId(Long.parseLong(r.getData().toString())); + comProperty.setCreateTime(DateUtil.date()); + this.comPropertyDao.insert(comProperty); + return R.ok(); + } + return R.fail(r.getMsg()); + } + return R.fail(); + } + + @Override + public R update(ComPropertyVO comPropertyVO) { + if(comPropertyVO!=null){ + ComProperty comProperty=new ComProperty(); + BeanUtils.copyProperties(comPropertyVO,comProperty); + this.comPropertyDao.updateById(comProperty); + return R.ok(); + } + return R.fail(); + } + + @Override + public R delete(Long id) { + ComProperty comProperty=comPropertyDao.selectById(id); + if(comProperty!=null){ + if(comProperty.getUserId()!=null){ + AdministratorsUserVO administratorsUserVO=new AdministratorsUserVO(); + administratorsUserVO.setUserId(comProperty.getUserId()); + administratorsUserVO.setCommunityId(comProperty.getCommunityId()); + userService.deleteUserBackstage(administratorsUserVO); + this.comPropertyDao.deleteById(id); + return R.ok(); + } + } + return R.fail("用户账号错误"); + } +} -- Gitblit v1.7.1