Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
a464d907
Commit
a464d907
authored
Feb 26, 2025
by
chenyuxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 部门加排序接口
parent
09b2ecf4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
DeptTreeSelectVO.java
...ifu.cloud.plus.v1/yifu/admin/api/vo/DeptTreeSelectVO.java
+3
-0
SysDeptServiceImpl.java
...d/plus/v1/yifu/admin/service/impl/SysDeptServiceImpl.java
+1
-0
SysDeptMapper.xml
...yifu-upms-biz/src/main/resources/mapper/SysDeptMapper.xml
+4
-4
No files found.
yifu-upms/yifu-upms-api/src/main/java/com/yifu.cloud.plus.v1/yifu/admin/api/vo/DeptTreeSelectVO.java
View file @
a464d907
...
@@ -44,6 +44,8 @@ public class DeptTreeSelectVO implements Serializable {
...
@@ -44,6 +44,8 @@ public class DeptTreeSelectVO implements Serializable {
*/
*/
private
String
peopleNum
;
private
String
peopleNum
;
private
Integer
sortOrder
;
private
List
<
DeptTreeSelectVO
>
children
;
private
List
<
DeptTreeSelectVO
>
children
;
...
@@ -52,6 +54,7 @@ public class DeptTreeSelectVO implements Serializable {
...
@@ -52,6 +54,7 @@ public class DeptTreeSelectVO implements Serializable {
this
.
parentId
=
dept
.
getParentId
();
this
.
parentId
=
dept
.
getParentId
();
this
.
ancestors
=
dept
.
getAncestors
();
this
.
ancestors
=
dept
.
getAncestors
();
this
.
name
=
dept
.
getName
();
this
.
name
=
dept
.
getName
();
this
.
sortOrder
=
dept
.
getSortOrder
();
this
.
parentName
=
dept
.
getParentName
();
this
.
parentName
=
dept
.
getParentName
();
this
.
peopleNum
=
dept
.
getPeopleNum
();
this
.
peopleNum
=
dept
.
getPeopleNum
();
if
(
dept
.
getChildren
()
!=
null
){
if
(
dept
.
getChildren
()
!=
null
){
...
...
yifu-upms/yifu-upms-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/admin/service/impl/SysDeptServiceImpl.java
View file @
a464d907
...
@@ -439,6 +439,7 @@ public class SysDeptServiceImpl extends ServiceImpl<SysDeptMapper, SysDept> impl
...
@@ -439,6 +439,7 @@ public class SysDeptServiceImpl extends ServiceImpl<SysDeptMapper, SysDept> impl
return
R
.
failed
(
"父级部门未找到"
);
return
R
.
failed
(
"父级部门未找到"
);
}
}
if
(
Common
.
isNotNull
(
info
.
getAncestors
())){
if
(
Common
.
isNotNull
(
info
.
getAncestors
())){
// todo 商量是否加这个限制
String
[]
split
=
info
.
getAncestors
().
split
(
","
);
String
[]
split
=
info
.
getAncestors
().
split
(
","
);
if
(
split
.
length
>=
6
){
if
(
split
.
length
>=
6
){
return
R
.
failed
(
"添加部门的层级超出限制,最多支持5级"
);
return
R
.
failed
(
"添加部门的层级超出限制,最多支持5级"
);
...
...
yifu-upms/yifu-upms-biz/src/main/resources/mapper/SysDeptMapper.xml
View file @
a464d907
...
@@ -64,7 +64,7 @@
...
@@ -64,7 +64,7 @@
</select>
</select>
<select
id=
"cspDeptList"
resultType=
"com.yifu.cloud.plus.v1.yifu.admin.api.vo.SysDeptVo"
>
<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
from sys_dept d
where d.del_flag = '0'
where d.del_flag = '0'
<if
test=
"dept.projectNo != null and dept.projectNo != ''"
>
<if
test=
"dept.projectNo != null and dept.projectNo != ''"
>
...
@@ -79,18 +79,18 @@
...
@@ -79,18 +79,18 @@
<if
test=
"dept.name != null and dept.name != ''"
>
<if
test=
"dept.name != null and dept.name != ''"
>
AND d.name like concat('%', #{dept.name}, '%')
AND d.name like concat('%', #{dept.name}, '%')
</if>
</if>
order by d.create_time asc
order by d.create_time
desc,d.sort_order
asc
</select>
</select>
<select
id=
"cspDeptUserList"
resultType=
"com.yifu.cloud.plus.v1.yifu.admin.api.vo.SysDeptVo"
>
<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
(select count(*) from sys_user_dept_permission where dept_id = d.dept_id) as peoplenum
from sys_dept d
from sys_dept d
where d.del_flag = '0'
where d.del_flag = '0'
<if
test=
"dept.projectNo != null and dept.projectNo != ''"
>
<if
test=
"dept.projectNo != null and dept.projectNo != ''"
>
AND d.project_no = #{dept.projectNo}
AND d.project_no = #{dept.projectNo}
</if>
</if>
order by d.create_time asc
order by d.create_time
desc,d.sort_order
asc
</select>
</select>
<select
id=
"checkDeptNameUnique"
resultMap=
"BaseResultMap"
>
<select
id=
"checkDeptNameUnique"
resultMap=
"BaseResultMap"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment