| | |
| | | @ValueClassify("统计图表") |
| | | @ApiOperation(value = "查询每日业务统计") |
| | | @GetMapping("/businessStatisticsByDay") |
| | | public Result businessStatisticsByDay(){ |
| | | return Result.success(reportService.businessStatisticsByDay()); |
| | | public Result businessStatisticsByDay(String startTime,String endTime,String type){ |
| | | return Result.success(reportService.businessStatisticsByDay(startTime,endTime,type)); |
| | | } |
| | | @ValueClassify("统计图表") |
| | | @ApiOperation(value = "查询检测项目统计") |
| | | @GetMapping("/testProductByDay") |
| | | public Result testProductByDay(){ |
| | | return Result.success(reportService.testProductByDay()); |
| | | public Result testProductByDay(String startTime,String endTime,String type){ |
| | | return Result.success(reportService.testProductByDay(startTime,endTime,type)); |
| | | } |
| | | @ValueAuth |
| | | @ApiOperation(value = "查询日历任务图") |
| | |
| | | public Result ScheduleByMe(String date){ |
| | | return Result.success(reportService.ScheduleByMe(date)); |
| | | } |
| | | |
| | | @ValueAuth |
| | | @ApiOperation(value = "各站点工时") |
| | | @PostMapping("/manHourByStation") |
| | | public Result manHourByStation(String startTime,String endTime){ |
| | | return Result.success(reportService.manHourByStation(startTime,endTime)); |
| | | } |
| | | |
| | | @ValueAuth |
| | | @ApiOperation(value = "各站点工时每个人所占百分比") |
| | | @PostMapping("/manHourByPerson") |
| | | public Result manHourByPerson(String startTime,String endTime){ |
| | | return Result.success(reportService.manHourByPerson(startTime,endTime)); |
| | | } |
| | | } |