|
@@ -101,6 +101,25 @@ public class ESOrderBaseController {
|
|
|
records.addAll(orderBaseVOIPage3.getRecords());
|
|
|
|
|
|
}
|
|
|
+
|
|
|
+ if (records.size() == 30000){
|
|
|
+ zfireParamBean.setPageNum(4);
|
|
|
+ zfireParamBean.setPageSize(10000);
|
|
|
+ IPage<OrderBaseVO> orderBaseVOIPage3 = orderBaseEsLogic.orderBaseEsList(zfireParamBean);
|
|
|
+
|
|
|
+ records.addAll(orderBaseVOIPage3.getRecords());
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ if (records.size() == 40000){
|
|
|
+ zfireParamBean.setPageNum(5);
|
|
|
+ zfireParamBean.setPageSize(10000);
|
|
|
+ IPage<OrderBaseVO> orderBaseVOIPage3 = orderBaseEsLogic.orderBaseEsList(zfireParamBean);
|
|
|
+
|
|
|
+ records.addAll(orderBaseVOIPage3.getRecords());
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
//3.导出
|
|
|
FieldUtils.exportData(records, zfireParam.getExportFields(), request, response);
|
|
|
}
|