| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- package cc.uncarbon.module.sys.service;
- import cc.uncarbon.framework.core.constant.HelioConstant;
- import cc.uncarbon.framework.core.exception.BusinessException;
- import cc.uncarbon.framework.core.page.PageParam;
- import cc.uncarbon.framework.core.page.PageResult;
- import cc.uncarbon.framework.crud.service.impl.HelioBaseServiceImpl;
- import cc.uncarbon.module.sys.entity.SysTenantEntity;
- import cc.uncarbon.module.sys.enums.SysErrorEnum;
- import cc.uncarbon.module.sys.mapper.SysTenantMapper;
- import cc.uncarbon.module.sys.mapper.SysUserMapper;
- import cc.uncarbon.module.sys.model.request.AdminListSysTenantDTO;
- import cc.uncarbon.module.sys.model.request.AdminUpdateSysTenantDTO;
- import cc.uncarbon.module.sys.model.response.SysTenantBO;
- import cn.hutool.core.bean.BeanUtil;
- import cn.hutool.core.util.ObjectUtil;
- import cn.hutool.core.util.StrUtil;
- import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import lombok.RequiredArgsConstructor;
- import lombok.extern.slf4j.Slf4j;
- import org.springframework.stereotype.Service;
- import org.springframework.transaction.annotation.Transactional;
- import java.util.ArrayList;
- import java.util.Collection;
- import java.util.List;
- /**
- * 系统租户
- * @author Uncarbon
- */
- @Slf4j
- @Service
- @RequiredArgsConstructor
- public class SysTenantService extends HelioBaseServiceImpl<SysTenantMapper, SysTenantEntity> {
- private final SysUserMapper sysUserMapper;
- /**
- * 后台管理-分页列表
- */
- public PageResult<SysTenantBO> adminList(PageParam pageParam, AdminListSysTenantDTO dto) {
- Page<SysTenantEntity> entityPage = this.page(
- new Page<>(pageParam.getPageNum(), pageParam.getPageSize()),
- new QueryWrapper<SysTenantEntity>()
- .lambda()
- // 租户名
- .like(StrUtil.isNotBlank(dto.getTenantName()), SysTenantEntity::getTenantName, StrUtil.cleanBlank(dto.getTenantName()))
- // 租户ID
- .eq(ObjectUtil.isNotNull(dto.getTenantId()), SysTenantEntity::getTenantId, dto.getTenantId())
- // 状态
- .eq(ObjectUtil.isNotNull(dto.getStatus()), SysTenantEntity::getStatus, dto.getStatus())
- // 排序
- .orderByDesc(SysTenantEntity::getCreatedAt)
- );
- return this.entityPage2BOPage(entityPage);
- }
- /**
- * 根据 ID 取详情
- *
- * @param id 主键ID
- * @return null or BO
- */
- public SysTenantBO getOneById(Long id) {
- return this.getOneById(id, false);
- }
- /**
- * 根据 ID 取详情
- *
- * @param id 主键ID
- * @param throwIfInvalidId 是否在 ID 无效时抛出异常
- * @return null or BO
- */
- public SysTenantBO getOneById(Long id, boolean throwIfInvalidId) throws BusinessException {
- SysTenantEntity entity = this.getById(id);
- if (throwIfInvalidId) {
- SysErrorEnum.INVALID_ID.assertNotNull(entity);
- }
- return this.entity2BO(entity);
- }
- /**
- * 后台管理-编辑
- */
- @Transactional(rollbackFor = Exception.class)
- public void adminUpdate(AdminUpdateSysTenantDTO dto) {
- log.info("[后台管理-编辑系统租户] >> 入参={}", dto);
- this.checkExistence(dto);
- SysTenantEntity entity = new SysTenantEntity();
- BeanUtil.copyProperties(dto, entity);
- this.updateById(entity);
- }
- /**
- * 后台管理-删除
- */
- @Transactional(rollbackFor = Exception.class)
- public void adminDelete(Collection<Long> ids) {
- log.info("[后台管理-删除系统租户] >> 入参={}", ids);
- this.removeByIds(ids);
- }
- /**
- * 根据租户ID(非主键ID),得到租户实体
- */
- public SysTenantEntity getTenantEntityByTenantId(Long tenantId) {
- return this.getOne(
- new QueryWrapper<SysTenantEntity>()
- .lambda()
- .eq(SysTenantEntity::getTenantId, tenantId)
- .last(HelioConstant.CRUD.SQL_LIMIT_1)
- );
- }
- /**
- * 检查是否已存在相同数据
- *
- * @param dto DTO
- */
- public void checkExistence(AdminUpdateSysTenantDTO dto) {
- SysTenantEntity existingEntity = this.getOne(
- new QueryWrapper<SysTenantEntity>()
- .lambda()
- // 仅取主键ID
- .select(SysTenantEntity::getId)
- // 租户ID相同
- .eq(SysTenantEntity::getTenantId, dto.getTenantId())
- .or()
- // 或租户名相同
- .eq(SysTenantEntity::getTenantName, dto.getTenantName())
- .last(HelioConstant.CRUD.SQL_LIMIT_1)
- );
- if (existingEntity != null && !existingEntity.getId().equals(dto.getId())) {
- throw new BusinessException(400, "已存在相同系统租户,请重新输入");
- }
- }
- /*
- ----------------------------------------------------------------
- 私有方法 private methods
- ----------------------------------------------------------------
- */
- /**
- * 实体转 BO
- *
- * @param entity 实体
- * @return BO
- */
- private SysTenantBO entity2BO(SysTenantEntity entity) {
- if (entity == null) {
- return null;
- }
- SysTenantBO bo = new SysTenantBO();
- BeanUtil.copyProperties(entity, bo);
- // 可以在此处为BO填充字段
- if (ObjectUtil.isNotNull(entity.getTenantAdminUserId())) {
- bo
- .setTenantAdminUser(sysUserMapper.getBaseInfoByUserId(entity.getTenantAdminUserId()))
- ;
- }
- return bo;
- }
- /**
- * 实体 List 转 BO List
- *
- * @param entityList 实体 List
- * @return BO List
- */
- private List<SysTenantBO> entityList2BOs(List<SysTenantEntity> entityList) {
- // 深拷贝
- List<SysTenantBO> ret = new ArrayList<>(entityList.size());
- entityList.forEach(
- entity -> ret.add(this.entity2BO(entity))
- );
- return ret;
- }
- /**
- * 实体分页转 BO 分页
- *
- * @param entityPage 实体分页
- * @return BO 分页
- */
- private PageResult<SysTenantBO> entityPage2BOPage(Page<SysTenantEntity> entityPage) {
- return new PageResult<SysTenantBO>()
- .setCurrent(entityPage.getCurrent())
- .setSize(entityPage.getSize())
- .setTotal(entityPage.getTotal())
- .setRecords(this.entityList2BOs(entityPage.getRecords()))
- ;
- }
- }
|