lin
2024-03-26 5fd47c20d64ec1b09a30cdaeef20c4ccbaad5376
src/main/java/org/springblade/modules/system/controller/UserController.java
@@ -416,12 +416,8 @@
    */
   @GetMapping("/getUserInfoByDistrictIds")
   @ApiOperation(value = "通过小区id查询用户")
   public  R<IPage<HouseholdVO>> getUserInfoByDistrictIds(@RequestParam("districtIds") String districtIds
      , @RequestParam(value = "building", required = false) String building
      , @RequestParam(value = "unit", required = false) String unit
      , @RequestParam(value = "name", required = false) String name
      , Query query) {
      IPage<HouseholdVO> pages = userService.getUserInfoByDistrictIds(districtIds, building, unit, name, Condition.getPage(query));
   public  R<IPage<HouseholdVO>> getUserInfoByDistrictIds(Query query,HouseholdVO householdVO) {
      IPage<HouseholdVO> pages = userService.getUserInfoByDistrictIds(householdVO, Condition.getPage(query));
      return R.data(pages);
   }