Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
polysoft-nafmii
/
polysoft-parent
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit 45319684
authored
Apr 28, 2021
by
ypenglv
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
中心端列表查询
1 parent
939209e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
nafmii-admin/src/main/java/org/nafmii/admin/user/controller/CenterUserController.java
nafmii-admin/src/main/java/org/nafmii/admin/user/controller/CenterUserController.java
View file @
4531968
...
@@ -44,7 +44,8 @@ public class CenterUserController {
...
@@ -44,7 +44,8 @@ public class CenterUserController {
public
ApiResponse
<
List
<
CenterUserVO
>>
queryUserList
(
@RequestBody
@Validated
QueryUsersParam
param
){
public
ApiResponse
<
List
<
CenterUserVO
>>
queryUserList
(
@RequestBody
@Validated
QueryUsersParam
param
){
PageHelper
.
startPage
(
param
.
getPageNum
(),
param
.
getPageSize
());
PageHelper
.
startPage
(
param
.
getPageNum
(),
param
.
getPageSize
());
PageResult
<
CenterUserVO
>
result
=
BeanTransferUtils
.
toPagedResult
(
centerUserService
.
queryUserList
(
param
),
CenterUserVO
.
class
);
PageResult
<
CenterUserVO
>
result
=
BeanTransferUtils
.
toPagedResult
(
centerUserService
.
queryUserList
(
param
),
CenterUserVO
.
class
);
return
new
ApiResponse
(
result
);
return
new
ApiResponse
(
result
);
}
}
}
}
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment