Просмотр исходного кода

[性能验证]添加Excel报告文件下载

Li Yuan 2 лет назад
Родитель
Сommit
5b94b080ea

+ 1 - 1
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/excel/PVExcelImportServer.java

@@ -4,7 +4,7 @@ import com.lc.ibps.components.poi.excel.entity.ImportParams;
 import com.lc.ibps.components.poi.excel.entity.params.ExcelCollectionParams;
 import com.lc.ibps.components.poi.excel.entity.result.ExcelImportResult;
 import com.lc.ibps.components.poi.excel.imports.ExcelImportServer;
-import com.lc.ibps.components.verification.excel.model.ExcelSheetRecord;
+import com.lc.ibps.components.verification.model.ExcelSheetRecord;
 import org.apache.commons.lang3.StringUtils;
 import org.apache.poi.hssf.usermodel.HSSFWorkbook;
 import org.apache.poi.openxml4j.opc.OPCPackage;

+ 3 - 8
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/excel/PVTest.java

@@ -1,14 +1,9 @@
 package com.lc.ibps.components.verification.excel;
 
-import com.lc.ibps.components.poi.excel.entity.ExportParams;
-import com.lc.ibps.components.poi.excel.entity.ImportParams;
-import com.lc.ibps.components.poi.excel.entity.params.ExcelExportEntity;
-import com.lc.ibps.components.poi.excel.entity.vo.BaseEntityTypeConstants;
 import com.lc.ibps.components.poi.util.PoiPublicUtil;
-import com.lc.ibps.components.verification.excel.model.ExcelSheetRecord;
-import com.lc.ibps.components.verification.excel.model.InspectionConfigVO;
-import com.lc.ibps.components.verification.excel.model.InspectionItemVO;
-import com.lc.ibps.components.verification.excel.model.InspectionVO;
+import com.lc.ibps.components.verification.model.InspectionConfigVO;
+import com.lc.ibps.components.verification.model.InspectionItemVO;
+import com.lc.ibps.components.verification.model.InspectionVO;
 import org.apache.poi.ss.usermodel.Workbook;
 import org.junit.Test;
 

+ 1 - 1
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/excel/model/ExcelSheetRecord.java → ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/model/ExcelSheetRecord.java

@@ -1,4 +1,4 @@
-package com.lc.ibps.components.verification.excel.model;
+package com.lc.ibps.components.verification.model;
 
 import com.lc.ibps.components.verification.funcs.xValue;
 

+ 1 - 1
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/excel/model/InspectionConfigVO.java → ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/model/InspectionConfigVO.java

@@ -1,4 +1,4 @@
-package com.lc.ibps.components.verification.excel.model;
+package com.lc.ibps.components.verification.model;
 
 import java.time.LocalDate;
 import java.util.Date;

+ 1 - 1
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/excel/model/InspectionItemVO.java → ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/model/InspectionItemVO.java

@@ -1,4 +1,4 @@
-package com.lc.ibps.components.verification.excel.model;
+package com.lc.ibps.components.verification.model;
 
 
 import com.lc.ibps.components.poi.excel.entity.ExportParams;

+ 1 - 1
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/excel/model/InspectionVO.java → ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/model/InspectionVO.java

@@ -1,4 +1,4 @@
-package com.lc.ibps.components.verification.excel.model;
+package com.lc.ibps.components.verification.model;
 
 import com.lc.ibps.components.poi.excel.entity.enmus.ExcelType;
 import com.lc.ibps.components.verification.excel.PVExcelUtil;

+ 1 - 1
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/excel/model/RecordCalcVO.java → ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/verification/model/RecordCalcVO.java

@@ -1,4 +1,4 @@
-package com.lc.ibps.components.verification.excel.model;
+package com.lc.ibps.components.verification.model;
 
 import com.lc.ibps.components.verification.funcs.xAverage;
 import com.lc.ibps.components.verification.funcs.xFuncStdevVar;