| | |
| | | * 导出钣金车间统计列表 |
| | | */ |
| | | @Operation(summary = "钣金计划大表", description = "导出功能") |
| | | @RequiresPermissions("plateProcessShopStat:export") |
| | | @Log(title = "钣金车间统计", businessType = BusinessType.EXPORT) |
| | | @RequiresPermissions("plateProcessShopStat:export") |
| | | @PostMapping("/export") |
| | | public void export(HttpServletResponse response, ApsPlateProcessShopStat apsPlateProcessShopStat) |
| | | { |
| | | List<ApsPlateProcessShopStat> list = apsPlateProcessShopStatService.selectApsPlateProcessShopStatList(apsPlateProcessShopStat); |
| | | ExcelUtil<ApsPlateProcessShopStat> util = new ExcelUtil<ApsPlateProcessShopStat>(ApsPlateProcessShopStat.class); |
| | | util.exportExcel(response, list, "钣金车间统计数据"); |
| | | apsPlateProcessShopStatService.exportExcel(response); |
| | | } |
| | | |
| | | |