| | |
| | | package com.ruoyi.system.service.impl;
|
| | |
|
| | | import java.util.List;
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.stereotype.Service;
|
| | | import com.ruoyi.common.constant.UserConstants;
|
| | | import com.ruoyi.common.exception.ServiceException;
|
| | | import com.ruoyi.common.utils.StringUtils;
|
| | | import com.ruoyi.system.domain.SysPost;
|
| | | import com.ruoyi.system.mapper.SysPostMapper;
|
| | | import com.ruoyi.system.mapper.SysUserPostMapper;
|
| | | import com.ruoyi.system.service.ISysPostService;
|
| | |
|
| | | /**
|
| | | * 岗位信息 服务层处理
|
| | | * |
| | | * @author ruoyi
|
| | | */
|
| | | @Service
|
| | | public class SysPostServiceImpl implements ISysPostService
|
| | | {
|
| | | @Autowired
|
| | | private SysPostMapper postMapper;
|
| | |
|
| | | @Autowired
|
| | | private SysUserPostMapper userPostMapper;
|
| | |
|
| | | /**
|
| | | * 查询岗位信息集合
|
| | | * |
| | | * @param post 岗位信息
|
| | | * @return 岗位信息集合
|
| | | */
|
| | | @Override
|
| | | public List<SysPost> selectPostList(SysPost post)
|
| | | {
|
| | | return postMapper.selectPostList(post);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 查询所有岗位
|
| | | * |
| | | * @return 岗位列表
|
| | | */
|
| | | @Override
|
| | | public List<SysPost> selectPostAll()
|
| | | {
|
| | | return postMapper.selectPostAll();
|
| | | }
|
| | |
|
| | | /**
|
| | | * 通过岗位ID查询岗位信息
|
| | | * |
| | | * @param postId 岗位ID
|
| | | * @return 角色对象信息
|
| | | */
|
| | | @Override
|
| | | public SysPost selectPostById(Long postId)
|
| | | {
|
| | | return postMapper.selectPostById(postId);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 根据用户ID获取岗位选择框列表
|
| | | * |
| | | * @param userId 用户ID
|
| | | * @return 选中岗位ID列表
|
| | | */
|
| | | @Override
|
| | | public List<Long> selectPostListByUserId(Long userId)
|
| | | {
|
| | | return postMapper.selectPostListByUserId(userId);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 校验岗位名称是否唯一
|
| | | * |
| | | * @param post 岗位信息
|
| | | * @return 结果
|
| | | */
|
| | | @Override
|
| | | public String checkPostNameUnique(SysPost post)
|
| | | {
|
| | | Long postId = StringUtils.isNull(post.getPostId()) ? -1L : post.getPostId();
|
| | | SysPost info = postMapper.checkPostNameUnique(post.getPostName());
|
| | | if (StringUtils.isNotNull(info) && info.getPostId().longValue() != postId.longValue())
|
| | | {
|
| | | return UserConstants.NOT_UNIQUE;
|
| | | }
|
| | | return UserConstants.UNIQUE;
|
| | | }
|
| | |
|
| | | /**
|
| | | * 校验岗位编码是否唯一
|
| | | * |
| | | * @param post 岗位信息
|
| | | * @return 结果
|
| | | */
|
| | | @Override
|
| | | public String checkPostCodeUnique(SysPost post)
|
| | | {
|
| | | Long postId = StringUtils.isNull(post.getPostId()) ? -1L : post.getPostId();
|
| | | SysPost info = postMapper.checkPostCodeUnique(post.getPostCode());
|
| | | if (StringUtils.isNotNull(info) && info.getPostId().longValue() != postId.longValue())
|
| | | {
|
| | | return UserConstants.NOT_UNIQUE;
|
| | | }
|
| | | return UserConstants.UNIQUE;
|
| | | }
|
| | |
|
| | | /**
|
| | | * 通过岗位ID查询岗位使用数量
|
| | | * |
| | | * @param postId 岗位ID
|
| | | * @return 结果
|
| | | */
|
| | | @Override
|
| | | public int countUserPostById(Long postId)
|
| | | {
|
| | | return userPostMapper.countUserPostById(postId);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 删除岗位信息
|
| | | * |
| | | * @param postId 岗位ID
|
| | | * @return 结果
|
| | | */
|
| | | @Override
|
| | | public int deletePostById(Long postId)
|
| | | {
|
| | | return postMapper.deletePostById(postId);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 批量删除岗位信息
|
| | | * |
| | | * @param postIds 需要删除的岗位ID
|
| | | * @return 结果
|
| | | * @throws Exception 异常
|
| | | */
|
| | | @Override
|
| | | public int deletePostByIds(Long[] postIds)
|
| | | {
|
| | | for (Long postId : postIds)
|
| | | {
|
| | | SysPost post = selectPostById(postId);
|
| | | if (countUserPostById(postId) > 0)
|
| | | {
|
| | | throw new ServiceException(String.format("%1$s已分配,不能删除", post.getPostName()));
|
| | | }
|
| | | }
|
| | | return postMapper.deletePostByIds(postIds);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 新增保存岗位信息
|
| | | * |
| | | * @param post 岗位信息
|
| | | * @return 结果
|
| | | */
|
| | | @Override
|
| | | public int insertPost(SysPost post)
|
| | | {
|
| | | return postMapper.insertPost(post);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 修改保存岗位信息
|
| | | * |
| | | * @param post 岗位信息
|
| | | * @return 结果
|
| | | */
|
| | | @Override
|
| | | public int updatePost(SysPost post)
|
| | | {
|
| | | return postMapper.updatePost(post);
|
| | | }
|
| | | }
|
| | | package com.ruoyi.system.service.impl; |
| | | |
| | | import cn.hutool.core.util.ObjectUtil; |
| | | import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.ruoyi.common.core.constant.UserConstants; |
| | | import com.ruoyi.common.mybatis.core.page.PageQuery; |
| | | import com.ruoyi.common.mybatis.core.page.TableDataInfo; |
| | | import com.ruoyi.common.core.exception.ServiceException; |
| | | import com.ruoyi.common.core.utils.StringUtils; |
| | | import com.ruoyi.system.domain.SysPost; |
| | | import com.ruoyi.system.domain.SysUserPost; |
| | | import com.ruoyi.system.mapper.SysPostMapper; |
| | | import com.ruoyi.system.mapper.SysUserPostMapper; |
| | | import com.ruoyi.system.service.ISysPostService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.Arrays; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 岗位信息 服务层处理 |
| | | * |
| | | * @author Lion Li |
| | | */ |
| | | @RequiredArgsConstructor |
| | | @Service |
| | | public class SysPostServiceImpl implements ISysPostService { |
| | | |
| | | private final SysPostMapper baseMapper; |
| | | private final SysUserPostMapper userPostMapper; |
| | | |
| | | @Override |
| | | public TableDataInfo<SysPost> selectPagePostList(SysPost post, PageQuery pageQuery) { |
| | | LambdaQueryWrapper<SysPost> lqw = new LambdaQueryWrapper<SysPost>() |
| | | .like(StringUtils.isNotBlank(post.getPostCode()), SysPost::getPostCode, post.getPostCode()) |
| | | .eq(StringUtils.isNotBlank(post.getStatus()), SysPost::getStatus, post.getStatus()) |
| | | .like(StringUtils.isNotBlank(post.getPostName()), SysPost::getPostName, post.getPostName()); |
| | | Page<SysPost> page = baseMapper.selectPage(pageQuery.build(), lqw); |
| | | return TableDataInfo.build(page); |
| | | } |
| | | |
| | | /** |
| | | * 查询岗位信息集合 |
| | | * |
| | | * @param post 岗位信息 |
| | | * @return 岗位信息集合 |
| | | */ |
| | | @Override |
| | | public List<SysPost> selectPostList(SysPost post) { |
| | | return baseMapper.selectList(new LambdaQueryWrapper<SysPost>() |
| | | .like(StringUtils.isNotBlank(post.getPostCode()), SysPost::getPostCode, post.getPostCode()) |
| | | .eq(StringUtils.isNotBlank(post.getStatus()), SysPost::getStatus, post.getStatus()) |
| | | .like(StringUtils.isNotBlank(post.getPostName()), SysPost::getPostName, post.getPostName())); |
| | | } |
| | | |
| | | /** |
| | | * 查询所有岗位 |
| | | * |
| | | * @return 岗位列表 |
| | | */ |
| | | @Override |
| | | public List<SysPost> selectPostAll() { |
| | | return baseMapper.selectList(); |
| | | } |
| | | |
| | | /** |
| | | * 通过岗位ID查询岗位信息 |
| | | * |
| | | * @param postId 岗位ID |
| | | * @return 角色对象信息 |
| | | */ |
| | | @Override |
| | | public SysPost selectPostById(Long postId) { |
| | | return baseMapper.selectById(postId); |
| | | } |
| | | |
| | | /** |
| | | * 根据用户ID获取岗位选择框列表 |
| | | * |
| | | * @param userId 用户ID |
| | | * @return 选中岗位ID列表 |
| | | */ |
| | | @Override |
| | | public List<Long> selectPostListByUserId(Long userId) { |
| | | return baseMapper.selectPostListByUserId(userId); |
| | | } |
| | | |
| | | /** |
| | | * 校验岗位名称是否唯一 |
| | | * |
| | | * @param post 岗位信息 |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public String checkPostNameUnique(SysPost post) { |
| | | boolean exist = baseMapper.exists(new LambdaQueryWrapper<SysPost>() |
| | | .eq(SysPost::getPostName, post.getPostName()) |
| | | .ne(ObjectUtil.isNotNull(post.getPostId()), SysPost::getPostId, post.getPostId())); |
| | | if (exist) { |
| | | return UserConstants.NOT_UNIQUE; |
| | | } |
| | | return UserConstants.UNIQUE; |
| | | } |
| | | |
| | | /** |
| | | * 校验岗位编码是否唯一 |
| | | * |
| | | * @param post 岗位信息 |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public String checkPostCodeUnique(SysPost post) { |
| | | boolean exist = baseMapper.exists(new LambdaQueryWrapper<SysPost>() |
| | | .eq(SysPost::getPostCode, post.getPostCode()) |
| | | .ne(ObjectUtil.isNotNull(post.getPostId()), SysPost::getPostId, post.getPostId())); |
| | | if (exist) { |
| | | return UserConstants.NOT_UNIQUE; |
| | | } |
| | | return UserConstants.UNIQUE; |
| | | } |
| | | |
| | | /** |
| | | * 通过岗位ID查询岗位使用数量 |
| | | * |
| | | * @param postId 岗位ID |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public long countUserPostById(Long postId) { |
| | | return userPostMapper.selectCount(new LambdaQueryWrapper<SysUserPost>().eq(SysUserPost::getPostId, postId)); |
| | | } |
| | | |
| | | /** |
| | | * 删除岗位信息 |
| | | * |
| | | * @param postId 岗位ID |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public int deletePostById(Long postId) { |
| | | return baseMapper.deleteById(postId); |
| | | } |
| | | |
| | | /** |
| | | * 批量删除岗位信息 |
| | | * |
| | | * @param postIds 需要删除的岗位ID |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public int deletePostByIds(Long[] postIds) { |
| | | for (Long postId : postIds) { |
| | | SysPost post = selectPostById(postId); |
| | | if (countUserPostById(postId) > 0) { |
| | | throw new ServiceException(String.format("%1$s已分配,不能删除", post.getPostName())); |
| | | } |
| | | } |
| | | return baseMapper.deleteBatchIds(Arrays.asList(postIds)); |
| | | } |
| | | |
| | | /** |
| | | * 新增保存岗位信息 |
| | | * |
| | | * @param post 岗位信息 |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public int insertPost(SysPost post) { |
| | | return baseMapper.insert(post); |
| | | } |
| | | |
| | | /** |
| | | * 修改保存岗位信息 |
| | | * |
| | | * @param post 岗位信息 |
| | | * @return 结果 |
| | | */ |
| | | @Override |
| | | public int updatePost(SysPost post) { |
| | | return baseMapper.updateById(post); |
| | | } |
| | | } |