| | |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import lombok.AllArgsConstructor; |
| | | import org.springframework.web.bind.annotation.GetMapping; |
| | | import org.springframework.web.bind.annotation.PostMapping; |
| | | import org.springframework.web.bind.annotation.RequestMapping; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | import org.springframework.web.bind.annotation.*; |
| | | |
| | | @RestController |
| | | @AllArgsConstructor |
| | |
| | | |
| | | @ValueClassify("统计图表") |
| | | @ApiOperation(value = "查询站点的检验时长") |
| | | @GetMapping("/timeByStation") |
| | | @PostMapping("/timeByStation") |
| | | public Result timeByStation(String startTime, String endTime, Page page,String sonLaboratory){ |
| | | return Result.success(reportService.timeByStation(startTime,endTime,page,sonLaboratory)); |
| | | } |