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
JSH ERP
Commits
13472467
Commit
13472467
authored
Apr 04, 2019
by
季圣华
Browse files
!45 修改角色删除后,再分配角色时,该角色还存在的问题
Merge pull request !45 from joecfan/pull
parents
fd9d683a
f4cccc0f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/com/jsh/erp/service/role/RoleService.java
View file @
13472467
...
@@ -83,6 +83,7 @@ public class RoleService {
...
@@ -83,6 +83,7 @@ public class RoleService {
public
List
<
Role
>
findUserRole
(){
public
List
<
Role
>
findUserRole
(){
RoleExample
example
=
new
RoleExample
();
RoleExample
example
=
new
RoleExample
();
example
.
setOrderByClause
(
"Id"
);
example
.
setOrderByClause
(
"Id"
);
example
.
createCriteria
().
andDeleteFlagNotEqualTo
(
BusinessConstants
.
DELETE_FLAG_DELETED
);
List
<
Role
>
list
=
roleMapper
.
selectByExample
(
example
);
List
<
Role
>
list
=
roleMapper
.
selectByExample
(
example
);
return
list
;
return
list
;
}
}
...
...
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