|
@@ -39,11 +39,12 @@ public class UserManageController {
|
|
|
public ResultBean<org.springframework.data.domain.Page<User>> showUserByPagination(Pageable page,
|
|
public ResultBean<org.springframework.data.domain.Page<User>> showUserByPagination(Pageable page,
|
|
|
@RequestParam(required = false) String fromApp,
|
|
@RequestParam(required = false) String fromApp,
|
|
|
@RequestParam(required = false) Short mobileValidCode,
|
|
@RequestParam(required = false) Short mobileValidCode,
|
|
|
|
|
+ @RequestParam(required = false) Short identityValidCode,
|
|
|
@RequestParam(required = false) String key,
|
|
@RequestParam(required = false) String key,
|
|
|
@RequestParam(required = false) String keyword) {
|
|
@RequestParam(required = false) String keyword) {
|
|
|
// Controller中的Pageable类型参数默认根据查询参数 page 和 size 注入并实例化
|
|
// Controller中的Pageable类型参数默认根据查询参数 page 和 size 注入并实例化
|
|
|
return new ResultBean<>(
|
|
return new ResultBean<>(
|
|
|
- userBackendService.showUserByPagination(page, fromApp, mobileValidCode, key, keyword));
|
|
|
|
|
|
|
+ userBackendService.showUserByPagination(page, fromApp, mobileValidCode, identityValidCode, key, keyword));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(method = RequestMethod.GET, path = "//showEnUserByPagination",
|
|
@RequestMapping(method = RequestMethod.GET, path = "//showEnUserByPagination",
|