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
47d4d3a6
Commit
47d4d3a6
authored
Jun 10, 2022
by
fangxinjiang
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
parents
4dcd0e45
42f25f9d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
DeptController.java
...u.cloud.plus.v1/yifu/admin/controller/DeptController.java
+2
-0
DictController.java
...u.cloud.plus.v1/yifu/admin/controller/DictController.java
+2
-0
SysRoleServiceImpl.java
...d.plus.v1/yifu/admin/service/impl/SysRoleServiceImpl.java
+1
-1
No files found.
yifu-upms/yifu-upms-biz/src/main/java/com/yifu.cloud.plus.v1/yifu/admin/controller/DeptController.java
View file @
47d4d3a6
...
...
@@ -69,6 +69,7 @@ public class DeptController {
* 返回当前用户树形菜单集合
* @return 树形菜单
*/
@SysLog
(
"返回当前用户树形菜单"
)
@GetMapping
(
value
=
"/user-tree"
)
public
R
<
List
<
Tree
<
Long
>>>
listCurrentUserDeptTrees
()
{
return
R
.
ok
(
sysDeptService
.
listCurrentUserDeptTrees
());
...
...
@@ -115,6 +116,7 @@ public class DeptController {
* @param deptname 部门名
* @return
*/
@SysLog
(
"根据部门名查询部门信息"
)
@GetMapping
(
"/details/{deptname}"
)
public
R
<
SysDept
>
user
(
@PathVariable
String
deptname
)
{
SysDept
condition
=
new
SysDept
();
...
...
yifu-upms/yifu-upms-biz/src/main/java/com/yifu.cloud.plus.v1/yifu/admin/controller/DictController.java
View file @
47d4d3a6
...
...
@@ -140,6 +140,7 @@ public class DictController {
* @param id id
* @return R
*/
@SysLog
(
"通过id查询字典项"
)
@GetMapping
(
"/item/{id:\\d+}"
)
public
R
<
SysDictItem
>
getDictItemById
(
@PathVariable
(
"id"
)
Long
id
)
{
return
R
.
ok
(
sysDictItemService
.
getById
(
id
));
...
...
@@ -193,6 +194,7 @@ public class DictController {
* @param parentId 父节点ID
* @return 树形菜单
*/
@SysLog
(
"返回树形字典集合"
)
@GetMapping
(
value
=
"/tree"
)
public
R
<
List
<
Tree
<
Long
>>>
getTree
(
boolean
lazy
,
Long
parentId
)
{
return
R
.
ok
(
sysDictItemService
.
treeMenu
(
lazy
,
parentId
));
...
...
yifu-upms/yifu-upms-biz/src/main/java/com/yifu.cloud.plus.v1/yifu/admin/service/impl/SysRoleServiceImpl.java
View file @
47d4d3a6
...
...
@@ -85,7 +85,7 @@ public class SysRoleServiceImpl extends ServiceImpl<SysRoleMapper, SysRole> impl
SysUserRole
userRole
=
sysUserRoleMapper
.
selectOne
(
Wrappers
.<
SysUserRole
>
query
().
lambda
()
.
eq
(
SysUserRole:
:
getRoleId
,
sysRole
.
getRoleId
()).
last
(
CommonConstants
.
LAST_ONE_SQL
));
//已存在用户
Assert
.
state
(
!
Common
.
isEmpty
(
userRole
),
MsgUtils
.
getMessage
(
ErrorCodes
.
SYS_ROLE_DELETE_EXIST_USER
));
Assert
.
state
(
Common
.
isEmpty
(
userRole
),
MsgUtils
.
getMessage
(
ErrorCodes
.
SYS_ROLE_DELETE_EXIST_USER
));
//系统内置
Assert
.
state
(!
CommonConstants
.
ZERO_String
.
equals
(
sysRole
.
getSystemFlag
()),
MsgUtils
.
getMessage
(
ErrorCodes
.
SYS_ROLE_DELETE_SYSTEM
));
sysRoleMenuMapper
.
delete
(
Wrappers
.<
SysRoleMenu
>
update
().
lambda
().
eq
(
SysRoleMenu:
:
getRoleId
,
id
));
...
...
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