| | |
| | | * @return 查询结果 |
| | | */ |
| | | @GetMapping("/patrolRecord/rota/getRotaPersonByDate") |
| | | R getRotaPersonByDate(@RequestParam(value = "rotaDate") String rotaDate); |
| | | R getRotaPersonByDate(@RequestParam(value = "rotaDate") String rotaDate,@RequestParam("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 根据日期查询值班领导 |
| | |
| | | * @return 查询结果 |
| | | */ |
| | | @GetMapping("/patrolRecord/rota/getRotaLeaderByDate") |
| | | R getRotaLeaderByDate(@RequestParam(value = "rotaDate") String rotaDate); |
| | | R getRotaLeaderByDate(@RequestParam(value = "rotaDate") String rotaDate,@RequestParam("communityId")Long communityId); |
| | | |
| | | /** |
| | | * 批量导入值班表 |
| | |
| | | */ |
| | | @PostMapping("/reserve/admin/homeQuarantine/export") |
| | | R exportHomeQuarantine(@RequestBody PageReserveRegisterDetailedAdminDTO pageReserveRegisterDetailedAdminDTO); |
| | | |
| | | /** |
| | | * 获取预设图片 |
| | | * @param type |
| | | * @param subtype |
| | | * @return |
| | | */ |
| | | @GetMapping("/picture/library/get") |
| | | R getPresetPictureLibrary(@RequestParam("type") Integer type, @RequestParam("subtype") Integer subtype); |
| | | } |