| | |
| | | /** |
| | | * 导出数据库的表信息到excel |
| | | * @param response 响应对象 |
| | | * @param btmTypeIds 业务类型的编号,用逗号分割 |
| | | * @param ids 业务类型的编号,用逗号分割 |
| | | */ |
| | | @PostMapping("/exportExcel") |
| | | @VciBusinessLog(operateName = "导出表单/表格到excel中") |
| | | public void exportExcel(String btmTypeIds,HttpServletResponse response){ |
| | | String excelFileName = portalVIServiceI.exportToExcel(VciBaseUtil.str2List(btmTypeIds)); |
| | | public void exportExcel(String ids,HttpServletResponse response){ |
| | | String excelFileName = portalVIServiceI.exportToExcel(VciBaseUtil.str2List(ids)); |
| | | try { |
| | | ControllerUtil.writeFileToResponse(response,excelFileName); |
| | | } catch (IOException e) { |