Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform
Project
Project
Details
Activity
Releases
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
youjj
cloud-platform
Commits
60df76bc
Commit
60df76bc
authored
Oct 07, 2020
by
周健威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加角色列表接口
parent
5db5789a
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
0 deletions
+5
-0
BaseUserDTO.java
...va/com/github/wxiaoqi/security/admin/dto/BaseUserDTO.java
+2
-0
UserMapper.xml
...odules/ace-admin/src/main/resources/mapper/UserMapper.xml
+3
-0
No files found.
ace-modules/ace-admin-api/src/main/java/com/github/wxiaoqi/security/admin/dto/BaseUserDTO.java
View file @
60df76bc
...
...
@@ -38,4 +38,6 @@ public class BaseUserDTO extends PageParam implements DataInter {
List
<
Integer
>
dataCompanyIds
;
Integer
bizType
;
Integer
status
;
}
ace-modules/ace-admin/src/main/resources/mapper/UserMapper.xml
View file @
60df76bc
...
...
@@ -72,6 +72,9 @@
LEFT JOIN company_info ci ON u.corporation_id=ci.id
<where>
u.is_del = 0
<if
test=
"status != null"
>
and u.status = #{status}
</if>
<if
test=
"bizType != null"
>
and u.biz_type = #{bizType}
</if>
...
...
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