|
@ -151,6 +151,19 @@ public class IcNeighborHoodController { |
|
|
return new Result<List<OptionResultDTO>>().ok(icNeighborHoodService.getNeighborHoodOptions(dto.getAgencyId(), dto.getGridId(),tokenDto.getUserId(),tokenDto.getCustomerId())); |
|
|
return new Result<List<OptionResultDTO>>().ok(icNeighborHoodService.getNeighborHoodOptions(dto.getAgencyId(), dto.getGridId(),tokenDto.getUserId(),tokenDto.getCustomerId())); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* 入参:gridId、agencyId |
|
|
|
|
|
* 返回当前组织及下级下的所有小区 |
|
|
|
|
|
* @param tokenDto |
|
|
|
|
|
* @param dto |
|
|
|
|
|
* @return |
|
|
|
|
|
*/ |
|
|
|
|
|
@PostMapping("neighborhood-options") |
|
|
|
|
|
public Result<List<OptionResultDTO>> queryNeighborHoodOptions(@LoginUser TokenDto tokenDto, @RequestBody IcNeighborHoodDTO dto) { |
|
|
|
|
|
// List<OptionResultDTO> list=icNeighborHoodService.queryNeighborHoodOptions(dto.getAgencyId(), dto.getGridId(),tokenDto.getUserId(),tokenDto.getCustomerId());
|
|
|
|
|
|
return new Result<List<OptionResultDTO>>().ok(null); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 获取用户组织下小区列表 |
|
|
* 获取用户组织下小区列表 |
|
|
* |
|
|
* |
|
|