Browse Source

信件查询最大导出数量10000调整到100000

master
wxc 3 weeks ago
parent
commit
6b7b7fbd2a
  1. 2
      src/main/java/com/biutag/supervision/controller/work/NegativeController.java

2
src/main/java/com/biutag/supervision/controller/work/NegativeController.java

@ -212,7 +212,7 @@ public class NegativeController {
@PostMapping("export/excel")
public Result<Void> export(NegativeQueryParam queryParam) {
queryParam.setSize(10000);
queryParam.setSize(100000);
queryParam.setCurrent(1);
Page<NegativeQueryVo> page = negativeQueryService.page(queryParam);
NegativeTask negativeTask = negativeTaskService.save(page.getRecords().size());

Loading…
Cancel
Save