|
@@ -316,6 +316,9 @@ public class ApiController extends BaseController {
|
|
|
if (StringUtils.isBlank(dto.getEndDate())) {
|
|
|
return ResultUtil.error("结束日期不可以为空");
|
|
|
}
|
|
|
+ // 清空分页查询
|
|
|
+ dto.setPageNumber(null);
|
|
|
+ dto.setPageSize(null);
|
|
|
String ysFilePath = "/public/excel/userReport.xlsx";
|
|
|
// 汇总
|
|
|
String hzFilePath = "/public/excel/userReport" + DateUtil.getTimeStamp() + ".xlsx";
|