| | |
| | | * 保安员统计 |
| | | */ |
| | | @PostMapping("/selectLi") |
| | | public R<IPage> selectLi(String jurisdiction, String deptid, Query query) { |
| | | IPage list = informationService.selectLi(Condition.getPage(query), jurisdiction, deptid); |
| | | public R<IPage> selectLi(String jurisdiction, String deptid,String stats, Query query) { |
| | | IPage list = informationService.selectLi(Condition.getPage(query), jurisdiction, deptid,stats); |
| | | return R.data(list); |
| | | } |
| | | |
| | |
| | | * 业务统计情况 |
| | | */ |
| | | @PostMapping("/selectYw") |
| | | public R<IPage> selectYw(String jurisdiction, String deptid, Query query) { |
| | | IPage list = informationService.selectYw(Condition.getPage(query), jurisdiction, deptid); |
| | | public R<IPage> selectYw(String jurisdiction, String deptid,String stats, Query query) { |
| | | IPage list = informationService.selectYw(Condition.getPage(query), jurisdiction, deptid,stats); |
| | | return R.data(list); |
| | | } |
| | | |