|
@@ -81,21 +81,21 @@ public class ESOrderBaseController {
|
|
|
ZfireParamBean zfireParam = FieldUtils.supplyParam(zfireParamBean);
|
|
|
//2.查询要导出的内容
|
|
|
zfireParamBean.setPageNum(1);
|
|
|
- zfireParamBean.setPageSize(20000);
|
|
|
+ zfireParamBean.setPageSize(10000);
|
|
|
IPage<OrderBaseVO> orderBaseVOIPage = orderBaseEsLogic.orderBaseEsList(zfireParamBean);
|
|
|
List<OrderBaseVO> records = orderBaseVOIPage.getRecords();
|
|
|
- if (records.size() == 20000){
|
|
|
+ if (records.size() == 10000){
|
|
|
zfireParamBean.setPageNum(2);
|
|
|
- zfireParamBean.setPageSize(20000);
|
|
|
+ zfireParamBean.setPageSize(10000);
|
|
|
IPage<OrderBaseVO> orderBaseVOIPage2 = orderBaseEsLogic.orderBaseEsList(zfireParamBean);
|
|
|
|
|
|
records.addAll(orderBaseVOIPage2.getRecords());
|
|
|
|
|
|
}
|
|
|
|
|
|
- if (records.size() == 40000){
|
|
|
+ if (records.size() == 20000){
|
|
|
zfireParamBean.setPageNum(3);
|
|
|
- zfireParamBean.setPageSize(20000);
|
|
|
+ zfireParamBean.setPageSize(10000);
|
|
|
IPage<OrderBaseVO> orderBaseVOIPage3 = orderBaseEsLogic.orderBaseEsList(zfireParamBean);
|
|
|
|
|
|
records.addAll(orderBaseVOIPage3.getRecords());
|