Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jinli gu
RuoYi Vue
Commits
4de4763b
Commit
4de4763b
authored
Dec 06, 2021
by
疯狂的狮子li
Browse files
update 优化查询用户的角色组、岗位组代码
parent
2c3f1c28
Changes
1
Hide whitespace changes
Inline
Side-by-side
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/SysUserServiceImpl.java
View file @
4de4763b
...
@@ -2,6 +2,8 @@ package com.ruoyi.system.service.impl;
...
@@ -2,6 +2,8 @@ package com.ruoyi.system.service.impl;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
java.util.stream.Collectors
;
import
org.slf4j.Logger
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
...
@@ -25,6 +27,7 @@ import com.ruoyi.system.mapper.SysUserPostMapper;
...
@@ -25,6 +27,7 @@ import com.ruoyi.system.mapper.SysUserPostMapper;
import
com.ruoyi.system.mapper.SysUserRoleMapper
;
import
com.ruoyi.system.mapper.SysUserRoleMapper
;
import
com.ruoyi.system.service.ISysConfigService
;
import
com.ruoyi.system.service.ISysConfigService
;
import
com.ruoyi.system.service.ISysUserService
;
import
com.ruoyi.system.service.ISysUserService
;
import
org.springframework.util.CollectionUtils
;
/**
/**
* 用户 业务层处理
* 用户 业务层处理
...
@@ -127,16 +130,11 @@ public class SysUserServiceImpl implements ISysUserService
...
@@ -127,16 +130,11 @@ public class SysUserServiceImpl implements ISysUserService
public
String
selectUserRoleGroup
(
String
userName
)
public
String
selectUserRoleGroup
(
String
userName
)
{
{
List
<
SysRole
>
list
=
roleMapper
.
selectRolesByUserName
(
userName
);
List
<
SysRole
>
list
=
roleMapper
.
selectRolesByUserName
(
userName
);
StringBuffer
idsStr
=
new
StringBuffer
();
if
(
CollectionUtils
.
isEmpty
(
list
))
for
(
SysRole
role
:
list
)
{
idsStr
.
append
(
role
.
getRoleName
()).
append
(
","
);
}
if
(
StringUtils
.
isNotEmpty
(
idsStr
.
toString
()))
{
{
return
idsStr
.
substring
(
0
,
idsStr
.
length
()
-
1
)
;
return
StringUtils
.
EMPTY
;
}
}
return
idsStr
.
toString
(
);
return
list
.
stream
().
map
(
SysRole:
:
getRoleName
).
collect
(
Collectors
.
joining
(
","
)
);
}
}
/**
/**
...
@@ -149,16 +147,11 @@ public class SysUserServiceImpl implements ISysUserService
...
@@ -149,16 +147,11 @@ public class SysUserServiceImpl implements ISysUserService
public
String
selectUserPostGroup
(
String
userName
)
public
String
selectUserPostGroup
(
String
userName
)
{
{
List
<
SysPost
>
list
=
postMapper
.
selectPostsByUserName
(
userName
);
List
<
SysPost
>
list
=
postMapper
.
selectPostsByUserName
(
userName
);
StringBuffer
idsStr
=
new
StringBuffer
();
if
(
CollectionUtils
.
isEmpty
(
list
))
for
(
SysPost
post
:
list
)
{
idsStr
.
append
(
post
.
getPostName
()).
append
(
","
);
}
if
(
StringUtils
.
isNotEmpty
(
idsStr
.
toString
()))
{
{
return
idsStr
.
substring
(
0
,
idsStr
.
length
()
-
1
)
;
return
StringUtils
.
EMPTY
;
}
}
return
idsStr
.
toString
(
);
return
list
.
stream
().
map
(
SysPost:
:
getPostName
).
collect
(
Collectors
.
joining
(
","
)
);
}
}
/**
/**
...
...
Write
Preview
Supports
Markdown
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