|
|
|
|
@ -241,8 +241,8 @@ public class RemindMsgController extends BladeController { |
|
|
|
|
@Operation(summary = "导出Excel", description = "传入RemindMsg") |
|
|
|
|
public void downloadExcel(HttpServletResponse response) { |
|
|
|
|
List<RemindMsgExcel> list = new ArrayList<>(); |
|
|
|
|
ExcelUtil.export(response, "[提醒信息]数据" + DateUtil.time(), |
|
|
|
|
"[提醒信息]数据表", list, RemindMsgExcel.class); |
|
|
|
|
ExcelUtil.export(response, "导入模版-消息提醒", |
|
|
|
|
"消息提醒", list, RemindMsgExcel.class); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
@ -253,8 +253,8 @@ public class RemindMsgController extends BladeController { |
|
|
|
|
@Operation(summary = "下载Excel模板", description = "") |
|
|
|
|
public ResponseEntity<org.springframework.core.io.Resource> downloadExcelTemplate() { |
|
|
|
|
return ExcelExtUtil.downloadXlsTemplate( |
|
|
|
|
"Excel/QA/ImportTemplate-CycleTestItem.xls", |
|
|
|
|
"导入模版-周期试验项目.xls"); |
|
|
|
|
"Excel/QA/消息提醒.xls", |
|
|
|
|
"导入模版-消息提醒.xls"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|