| | |
| | | return ApiResponse.success(platformService.findPage(pageWrap)); |
| | | } |
| | | |
| | | @ApiOperation("月台作业统计") |
| | | @PostMapping("/platformWorkReportPage") |
| | | @CloudRequiredPermission("business:platform:query") |
| | | public ApiResponse<List<Platform>> platformWorkReportPage (@RequestBody Platform platform,@RequestHeader(Constants.HEADER_USER_TOKEN) String token){ |
| | | return ApiResponse.success(platformService.platformWorkReportList(platform)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("根据月台组获取月台列表信息") |
| | | @GetMapping("/listByGroupId") |
| | |
| | | public ApiResponse findById(@PathVariable Integer id,@RequestHeader(Constants.HEADER_USER_TOKEN) String token){ |
| | | return ApiResponse.success(platformService.findById(id)); |
| | | } |
| | | |
| | | |
| | | |
| | | |
| | | @ApiOperation("获取月台组信息") |