| | |
| | | @GetMapping("getEarlyWarningList") |
| | | public R getList(@RequestParam("pageNum") Integer pageNum, |
| | | @RequestParam("pageSize") Integer pageSize, |
| | | @RequestParam("communityId") String communityId, |
| | | @RequestParam("equipmentNumber") String equipmentNumber, |
| | | @RequestParam("type") String type, |
| | | @RequestParam("userName") String userName, |
| | | @RequestParam("phone") String phone) |
| | | { |
| | | return communityBraceletService.getList(pageNum,pageSize,communityId,equipmentNumber,"",type,userName,phone); |
| | | return communityBraceletService.getList(pageNum,pageSize,getCommunityId()+"",equipmentNumber,"",type,userName,phone); |
| | | } |
| | | |
| | | /** |
| | |
| | | */ |
| | | @ApiOperation(value = "处理人") |
| | | @GetMapping("conductorList") |
| | | public R conductorList(@RequestParam("communityId") String communityId) |
| | | public R conductorList() |
| | | { |
| | | return communityBraceletService.conductorList(communityId); |
| | | return communityBraceletService.conductorList(getCommunityId()+""); |
| | | } |
| | | |
| | | } |