|
@@ -304,6 +304,7 @@ public class AgreementLogic {
|
|
|
String filePath = String.format("%s-%s.xlsx", path, mailboxSendRecord.getSendBatch() + "-工伤险");
|
|
|
ExcelData excelData = new ExcelData();
|
|
|
excelData.setTitles(Arrays.asList(titles));
|
|
|
+ excelData.setRows(rows);
|
|
|
ExcelUtils.createExcel(filePath, excelData);
|
|
|
File excel = new File(filePath);
|
|
|
|
|
@@ -355,6 +356,7 @@ public class AgreementLogic {
|
|
|
String filePath = String.format("%s-%s.xlsx", path, mailboxSendRecord.getSendBatch() + "-雇主险");
|
|
|
ExcelData excelData = new ExcelData();
|
|
|
excelData.setTitles(Arrays.asList(titles));
|
|
|
+ excelData.setRows(rows);
|
|
|
ExcelUtils.createExcel(filePath, excelData);
|
|
|
File excel = new File(filePath);
|
|
|
|