|
@@ -53,7 +53,8 @@ public class UserInfoController {
|
|
|
@Autowired
|
|
|
UserAuthenticationFacade userAuthenticationFacade;
|
|
|
|
|
|
- /*@ApiOperation(value = "分页查询获取用户信息[by:wangfeng]", notes = "根据每页显示size条数,默认 10,和当前页current,认证的状态authStatus")
|
|
|
+ /*@ApiOperation(value = "分页查询获取用户信息[by:wangfeng]",
|
|
|
+ notes = "根据每页显示size条数,默认 10,和当前页current,认证的状态authStatus")
|
|
|
@PostMapping("/getUserInfoPag")
|
|
|
@SysLogger("getUserInfoPag")
|
|
|
@ApiIgnore
|
|
@@ -140,12 +141,14 @@ public class UserInfoController {
|
|
|
return userFacade.getUserOrganProductAlls(pageVO, pageVO.getOrgName(), pageVO.getAuthStatus());
|
|
|
}*/
|
|
|
|
|
|
- @ApiOperation(value = "分页查询注册用户信息接口(新)[by:wangfeng]", notes = "根据每页显示size条数,默认 10,和当前页current,认证的状态authStatus")
|
|
|
+ @ApiOperation(value = "分页查询注册用户信息接口(新)[by:wangfeng]",
|
|
|
+ notes = "根据每页显示size条数,默认 10,和当前页current,认证的状态authStatus")
|
|
|
@PostMapping("/queryUserInformation")
|
|
|
@SysLogger("queryUserInformation")
|
|
|
public RespDTO<IPage<UserAllDTO>> queryUserInformation(@RequestBody UserInfoPagVO userInfoPagVO) {
|
|
|
|
|
|
- return userFacade.queryUserInformations(userInfoPagVO, userInfoPagVO.getUserName(), userInfoPagVO.getAuthStatus(), userInfoPagVO.getStartTime(), userInfoPagVO.getEndTime());
|
|
|
+ return userFacade.queryUserInformations(userInfoPagVO, userInfoPagVO.getUserName(),
|
|
|
+ userInfoPagVO.getAuthStatus(), userInfoPagVO.getStartTime(), userInfoPagVO.getEndTime());
|
|
|
}
|
|
|
|
|
|
|
|
@@ -154,24 +157,30 @@ public class UserInfoController {
|
|
|
@SysLogger("queryMechanismInformation")
|
|
|
public RespDTO<IPage<OrganizationDTO>> queryMechanismInformation(@RequestBody UserInfoPagVO userInfoPagVO) {
|
|
|
|
|
|
- return userFacade.queryMechanismInformations(userInfoPagVO, userInfoPagVO.getOrgName(), userInfoPagVO.getStartTime(), userInfoPagVO.getEndTime());
|
|
|
+ return userFacade.queryMechanismInformations(userInfoPagVO, userInfoPagVO.getOrgName(),
|
|
|
+ userInfoPagVO.getStartTime(), userInfoPagVO.getEndTime());
|
|
|
}
|
|
|
|
|
|
|
|
|
- @ApiOperation(value = "分页查询已认证用户信息和机构信息及开通产品接口(新)[by:wangfeng]", notes = "根据每页显示size条数,默认 10,和当前页current")
|
|
|
+ @ApiOperation(value = "分页查询已认证用户信息和机构信息及开通产品接口(新)[by:wangfeng]",
|
|
|
+ notes = "根据每页显示size条数,默认 10,和当前页current")
|
|
|
@PostMapping("/queryVerifiedUserOrganizationProduct")
|
|
|
@SysLogger("queryVerifiedUserOrganizationProduct")
|
|
|
- public RespDTO<IPage<UserOrgizationProductDTO>> queryVerifiedUserOrganizationProduct(@RequestBody UserAndOrgPageVO userAndOrgPageVO) {
|
|
|
+ public RespDTO<IPage<UserOrgizationProductDTO>> queryVerifiedUserOrganizationProduct(
|
|
|
+ @RequestBody UserAndOrgPageVO userAndOrgPageVO) {
|
|
|
|
|
|
- return userFacade.queryVerifiedUserOrganizationProducts(userAndOrgPageVO, userAndOrgPageVO.getOrgName(), userAndOrgPageVO.getUserName(), userAndOrgPageVO.getStartTime(), userAndOrgPageVO.getEndTime());
|
|
|
+ return userFacade.queryVerifiedUserOrganizationProducts(userAndOrgPageVO, userAndOrgPageVO.getOrgName(),
|
|
|
+ userAndOrgPageVO.getUserName(), userAndOrgPageVO.getStartTime(), userAndOrgPageVO.getEndTime());
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value = "分页查询认证中的用户信息接口(新)[by:wangfeng]", notes = "根据每页显示size条数,默认 10,和当前页current")
|
|
|
+ @ApiOperation(value = "分页查询认证中的用户信息接口(新)[by:wangfeng]",
|
|
|
+ notes = "根据每页显示size条数,默认 10,和当前页current")
|
|
|
@PostMapping("/queryAuthentication")
|
|
|
@SysLogger("queryAuthentication")
|
|
|
public RespDTO<IPage<AuthenticationDTO>> queryAuthentication(@RequestBody UserAndOrgPageVO userAndOrgPageVO) {
|
|
|
|
|
|
- return userFacade.queryAuthentications(userAndOrgPageVO, userAndOrgPageVO.getOrgName(), userAndOrgPageVO.getUserName(), userAndOrgPageVO.getStartTime(), userAndOrgPageVO.getEndTime());
|
|
|
+ return userFacade.queryAuthentications(userAndOrgPageVO, userAndOrgPageVO.getOrgName(),
|
|
|
+ userAndOrgPageVO.getUserName(), userAndOrgPageVO.getStartTime(), userAndOrgPageVO.getEndTime());
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "超管修改用户信息接口(新)[by:wangfeng]", notes = "用户id必传")
|