| | |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | import org.springframework.web.bind.annotation.RestController; |
| | | |
| | | @Api(value = "用时分析controller", tags = {"用时分析controller"}) |
| | | @ApiResource({"blade-mdc/time-used-analysis"}) |
| | | @Api(value = "用时分析", tags = {"用时分析"}) |
| | | @ApiResource({"mdc/time-used-analysis"}) |
| | | @RestController |
| | | public class TimeUsedAnalysisController { |
| | | private final ITimeUsedAnalysisService superAggregateStateService; |
| | |
| | | this.superAggregateStateService = superAggregateStateService; |
| | | } |
| | | |
| | | /** |
| | | * 用时分析统计 |
| | | * @param query |
| | | * @param stationVO |
| | | * @return |
| | | */ |
| | | @PostMapping({"/work-stations"}) |
| | | @ApiOperationSupport(order = 1) |
| | | @ApiOperation("按多设备统计用时") |