| | |
| | | * @return 查询结果 |
| | | */ |
| | | @GetMapping("/rota/getRotaPersonByDate") |
| | | public R getRotaPersonByDate(@RequestParam(value = "rotaDate") String rotaDate) { |
| | | return comSwRotaService.getRotaPersonByDate(rotaDate); |
| | | public R getRotaPersonByDate(@RequestParam(value = "rotaDate") String rotaDate,@RequestParam("communityId")Long communityId) { |
| | | return comSwRotaService.getRotaPersonByDate(rotaDate,communityId); |
| | | } |
| | | |
| | | /** |
| | |
| | | * @return 查询结果 |
| | | */ |
| | | @GetMapping("/rota/getRotaLeaderByDate") |
| | | public R getRotaLeaderByDate(@RequestParam(value = "rotaDate") String rotaDate) { |
| | | return comSwRotaService.getRotaLeaderByDate(rotaDate); |
| | | public R getRotaLeaderByDate(@RequestParam(value = "rotaDate") String rotaDate,@RequestParam("communityId")Long communityId) { |
| | | return comSwRotaService.getRotaLeaderByDate(rotaDate,communityId); |
| | | } |
| | | |
| | | /** |