| | |
| | | return R.data(callService.getCallTaskResultList(callTaskResult)); |
| | | } |
| | | |
| | | /** |
| | | * 查询智能外呼统计数据-按日期-行政区统计 |
| | | * @param callTaskStatistic |
| | | * @param query |
| | | * @return |
| | | */ |
| | | @GetMapping("/getOutgoingStatisticList") |
| | | public R getOutgoingStatisticList(CallTaskStatistic callTaskStatistic, Query query){ |
| | | // 返回 |
| | | return R.data(callService.getOutgoingStatisticList(Condition.getPage(query),callTaskStatistic)); |
| | | } |
| | | |
| | | /** |
| | | * 查询智能外呼统计数据-行政区统计 |
| | | * @param callTaskStatistic |
| | | * @return |
| | | */ |
| | | @GetMapping("/getOutgoingStatisticByArea") |
| | | public R getOutgoingStatisticByArea(CallTaskStatistic callTaskStatistic){ |
| | | // 返回 |
| | | return R.data(callService.getOutgoingStatisticByArea(callTaskStatistic)); |
| | | } |
| | | |
| | | } |