|
@@ -56,9 +56,9 @@ public class AuthUserInfoController {
|
|
|
|
|
|
@ApiOperation(value = "机构下未添加白名单的人员")
|
|
|
@ApiImplicitParam(name = "searchable", value = "searchable 查询条件:orgId:= ; name:like; idcard:like")
|
|
|
- @PostMapping("whiteListUserPage")
|
|
|
- public Result whiteListUserPage(Searchable searchable) {
|
|
|
- Page<AuthUserDTO> userPage = userInfoFacade.whiteListUserPage(searchable.toSearchDTO());
|
|
|
+ @PostMapping("notInWhiteListUserPage")
|
|
|
+ public Result notInWhiteListUserPage(Searchable searchable) {
|
|
|
+ Page<AuthUserDTO> userPage = userInfoFacade.notInWhiteListUserPage(searchable.toSearchDTO());
|
|
|
List<AuthUserDTO> content = userPage.getContent();
|
|
|
List<AuthUserVo> voList = content.stream().map(item -> {
|
|
|
AuthUserVo vo = new AuthUserVo();
|