SysDeptMapper.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import org.apache.ibatis.annotations.Param;
  4. import com.ruoyi.common.core.domain.entity.SysDept;
  5. /**
  6. * 部门管理 数据层
  7. *
  8. * @author ruoyi
  9. */
  10. public interface SysDeptMapper
  11. {
  12. /**
  13. * 查询部门人数
  14. *
  15. * @param dept 部门信息
  16. * @return 结果
  17. */
  18. public int selectDeptCount(SysDept dept);
  19. /**
  20. * 查询部门是否存在用户
  21. *
  22. * @param deptId 部门ID
  23. * @return 结果
  24. */
  25. public int checkDeptExistUser(Long deptId);
  26. /**
  27. * 查询部门管理数据
  28. *
  29. * @param dept 部门信息
  30. * @return 部门信息集合
  31. */
  32. public List<SysDept> selectDeptList(SysDept dept);
  33. /**
  34. * 删除部门管理信息
  35. *
  36. * @param deptId 部门ID
  37. * @return 结果
  38. */
  39. public int deleteDeptById(Long deptId);
  40. /**
  41. * 新增部门信息
  42. *
  43. * @param dept 部门信息
  44. * @return 结果
  45. */
  46. public int insertDept(SysDept dept);
  47. /**
  48. * 修改部门信息
  49. *
  50. * @param dept 部门信息
  51. * @return 结果
  52. */
  53. public int updateDept(SysDept dept);
  54. /**
  55. * 修改子元素关系
  56. *
  57. * @param depts 子元素
  58. * @return 结果
  59. */
  60. public int updateDeptChildren(@Param("depts") List<SysDept> depts);
  61. /**
  62. * 根据部门ID查询信息
  63. *
  64. * @param deptId 部门ID
  65. * @return 部门信息
  66. */
  67. public SysDept selectDeptById(Long deptId);
  68. /**
  69. * 校验部门名称是否唯一
  70. *
  71. * @param deptName 部门名称
  72. * @param parentId 父部门ID
  73. * @return 结果
  74. */
  75. public SysDept checkDeptNameUnique(@Param("deptName") String deptName, @Param("parentId") Long parentId);
  76. /**
  77. * 根据角色ID查询部门
  78. *
  79. * @param roleId 角色ID
  80. * @return 部门列表
  81. */
  82. public List<String> selectRoleDeptTree(Long roleId);
  83. /**
  84. * 修改所在部门正常状态
  85. *
  86. * @param deptIds 部门ID组
  87. */
  88. public void updateDeptStatusNormal(Long[] deptIds);
  89. /**
  90. * 根据ID查询所有子部门
  91. *
  92. * @param deptId 部门ID
  93. * @return 部门列表
  94. */
  95. public List<SysDept> selectChildrenDeptById(Long deptId);
  96. /**
  97. * 根据ID查询所有子部门(正常状态)
  98. *
  99. * @param deptId 部门ID
  100. * @return 子部门数
  101. */
  102. public int selectNormalChildrenDeptById(Long deptId);
  103. }