...
|
...
|
@@ -3282,7 +3282,8 @@ public class UnionShareServiceImpl implements IUnionShareService,IBusinessExport |
|
|
throw new ServiceException(400, "没有要导出的数据");
|
|
|
}
|
|
|
request.setSize(5000);
|
|
|
int totalPage = count / 5000 + (count % 5000 > 1 ? 1 : 0);
|
|
|
int totalPage =1;//限制导出数量,避免大批量导出
|
|
|
// int totalPage = count / 5000 + (count % 5000 > 1 ? 1 : 0);
|
|
|
ordersDOList = new ArrayList<>();
|
|
|
for (int i = 1; i <= totalPage; i++) {
|
|
|
request.setPage(i);
|
...
|
...
|
|