|
@@ -417,13 +417,14 @@ public class BuildingOwnerInfoController extends BaseController {
|
417
|
417
|
@ApiImplicitParam(paramType = "query", dataTypeClass = Integer.class, name = "levelId", value = "楼层")
|
418
|
418
|
})
|
419
|
419
|
public ResponseBean selectByAddress(@RequestParam("orgId") Integer orgId,
|
|
420
|
+ @RequestParam(value = "communityId") Integer communityId,
|
420
|
421
|
@RequestParam(value = "phaseId", required = false) Integer phaseId,
|
421
|
422
|
@RequestParam(value = "buildingId",required = false) Integer buildingId,
|
422
|
423
|
@RequestParam(value = "unitId", required = false) Integer unitId,
|
423
|
424
|
@RequestParam(value = "levelId", required = false) Integer levelId) {
|
424
|
425
|
|
425
|
426
|
ResponseBean responseBean = new ResponseBean();
|
426
|
|
- responseBean = iBuildingOwnerInfoService.selectBuildList(orgId, phaseId, buildingId, unitId, levelId);
|
|
427
|
+ responseBean = iBuildingOwnerInfoService.selectBuildList(orgId, communityId, phaseId, buildingId, unitId, levelId);
|
427
|
428
|
return responseBean;
|
428
|
429
|
|
429
|
430
|
}
|