| | |
| | | public void getExportModel(HttpServletResponse response) { |
| | | List<ArchiveRecordModelExp> list = Collections.singletonList(new ArchiveRecordModelExp()); |
| | | ExcelUtil<ArchiveRecordModelExp> util = new ExcelUtil<>(ArchiveRecordModelExp.class); |
| | | util.exportExcel(response, list, "档案信息导入模板"); |
| | | util.exportExcel(response, list, "档案信息"); |
| | | } |
| | | |
| | | |
| | |
| | | public void getExportModelOther(HttpServletResponse response) { |
| | | List<ArchiveRecordModelOther> list = Collections.singletonList(new ArchiveRecordModelOther()); |
| | | ExcelUtil<ArchiveRecordModelOther> util = new ExcelUtil<>(ArchiveRecordModelOther.class); |
| | | util.exportExcel(response, list, "档案信息导入模板"); |
| | | util.exportExcel(response, list, "档案信息"); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermi('system:records:list')") |