Browse Source

入参修改

wangfeng 6 năm trước cách đây
mục cha
commit
a328bcbb7b

+ 3 - 3
user-service/src/main/java/com/diagbot/web/UserInfoController.java

@@ -159,15 +159,15 @@ public class UserInfoController {
     @ApiOperation(value = "分页查询已认证用户信息和机构信息及开通产品接口[by:wangfeng]", notes = "根据每页显示size条数,默认 10,和当前页current")
     @PostMapping("/queryVerifiedUserOrganizationProduct")
     @SysLogger("queryVerifiedUserOrganizationProduct")
-    public RespDTO<IPage<UserOrgizationProductDTO>> queryVerifiedUserOrganizationProduct(UserAndOrgPageVO userAndOrgPageVO) {
+    public RespDTO<IPage<UserOrgizationProductDTO>> queryVerifiedUserOrganizationProduct(@RequestBody UserAndOrgPageVO userAndOrgPageVO) {
 		
 		return userFacade.queryVerifiedUserOrganizationProducts(userAndOrgPageVO,userAndOrgPageVO.getOrgName(),userAndOrgPageVO.getUserName());
 	}
    
-    @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(UserAndOrgPageVO userAndOrgPageVO) {
+	public RespDTO<IPage<AuthenticationDTO>> queryAuthentication(@RequestBody UserAndOrgPageVO userAndOrgPageVO) {
 		
 		return userFacade.queryAuthentications(userAndOrgPageVO,userAndOrgPageVO.getOrgName(),userAndOrgPageVO.getUserName());
 	}