Commit a464d907 authored by chenyuxi's avatar chenyuxi

feat: 部门加排序接口

parent 09b2ecf4
......@@ -44,6 +44,8 @@ public class DeptTreeSelectVO implements Serializable {
*/
private String peopleNum;
private Integer sortOrder;
private List<DeptTreeSelectVO> children;
......@@ -52,6 +54,7 @@ public class DeptTreeSelectVO implements Serializable {
this.parentId = dept.getParentId();
this.ancestors = dept.getAncestors();
this.name = dept.getName();
this.sortOrder = dept.getSortOrder();
this.parentName = dept.getParentName();
this.peopleNum =dept.getPeopleNum();
if(dept.getChildren() != null){
......
......@@ -439,6 +439,7 @@ public class SysDeptServiceImpl extends ServiceImpl<SysDeptMapper, SysDept> impl
return R.failed("父级部门未找到");
}
if (Common.isNotNull(info.getAncestors())){
// todo 商量是否加这个限制
String[] split = info.getAncestors().split(",");
if (split.length >= 6){
return R.failed("添加部门的层级超出限制,最多支持5级");
......
......@@ -64,7 +64,7 @@
</select>
<select id="cspDeptList" resultType="com.yifu.cloud.plus.v1.yifu.admin.api.vo.SysDeptVo">
select d.dept_id, d.name, d.parent_id,d.ancestors
select d.dept_id, d.name, d.parent_id,d.ancestors,sort_order
from sys_dept d
where d.del_flag = '0'
<if test="dept.projectNo != null and dept.projectNo != ''">
......@@ -79,18 +79,18 @@
<if test="dept.name != null and dept.name != ''">
AND d.name like concat('%', #{dept.name}, '%')
</if>
order by d.create_time asc
order by d.create_time desc,d.sort_order asc
</select>
<select id="cspDeptUserList" resultType="com.yifu.cloud.plus.v1.yifu.admin.api.vo.SysDeptVo">
select d.dept_id, d.name, d.parent_id,d.ancestors,
select d.dept_id, d.name, d.parent_id,d.ancestors,sort_order,
(select count(*) from sys_user_dept_permission where dept_id = d.dept_id) as peoplenum
from sys_dept d
where d.del_flag = '0'
<if test="dept.projectNo != null and dept.projectNo != ''">
AND d.project_no = #{dept.projectNo}
</if>
order by d.create_time asc
order by d.create_time desc,d.sort_order asc
</select>
<select id="checkDeptNameUnique" resultMap="BaseResultMap">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment