From a76f872d1572329021252d11645b56f2a2396ba8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9B=B9=E9=B9=8F=E9=A3=9E?= Date: Sun, 31 Mar 2024 19:47:50 +0800 Subject: [PATCH] =?UTF-8?q?other:=20pbom=E5=AF=BC=E5=87=BA=E5=BC=BA?= =?UTF-8?q?=E5=88=B6=E8=AE=BE=E7=BD=AE=E9=A1=B5=E7=A0=81=E5=92=8C=E9=A1=B5?= =?UTF-8?q?=E6=95=B0=E9=81=BF=E5=85=8D=E5=89=8D=E7=AB=AF=E4=BC=A0=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E5=8F=82=E6=95=B0=E5=AF=BC=E8=87=B4=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/nflg/product/bomnew/api/user/PBomApi.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nflg_project_dev/nflg-bom-new/src/main/java/com/nflg/product/bomnew/api/user/PBomApi.java b/nflg_project_dev/nflg-bom-new/src/main/java/com/nflg/product/bomnew/api/user/PBomApi.java index d8771396..4e8121f9 100644 --- a/nflg_project_dev/nflg-bom-new/src/main/java/com/nflg/product/bomnew/api/user/PBomApi.java +++ b/nflg_project_dev/nflg-bom-new/src/main/java/com/nflg/product/bomnew/api/user/PBomApi.java @@ -83,6 +83,8 @@ public class PBomApi extends BaseApi { @LogRecord(success = "PBom-导出工作列表,操作结果:{{#_ret}}", bizNo = "",type = "PBom-导出工作列表") public void exportWorkDownLoad(@RequestBody BomNewPbomParentQuery query, HttpServletResponse response) throws IOException { //bomNewPbomParentService.workDetailsExcel(query,response); + query.setPage(1L); + query.setPageSize(1000L); IPage data = bomNewPbomParentService.workDetailsListByPage(query); List out = new ArrayList<>(); if (!data.getRecords().isEmpty()) { @@ -96,6 +98,8 @@ public class PBomApi extends BaseApi { @LogRecord(success = "PBom-导出已发布工作列表,操作结果:{{#_ret}}", bizNo = "",type = "PBom-已发布工作列表") public void releaseListDownLoad(@RequestBody BomNewPbomParentQuery query ,HttpServletResponse response) throws IOException { //bomNewPbomParentService.releaseListExcel(query,response); + query.setPage(1L); + query.setPageSize(1000L); IPage data = bomNewPbomParentService.releaseListByPage(query); List out = new ArrayList<>(); if (!data.getRecords().isEmpty()) {