From 3e8efb0f87c2d9afd16f33affadab501ee0f0031 Mon Sep 17 00:00:00 2001 From: aike <17730485278@139.com> Date: Sat, 27 Sep 2025 16:53:47 +0800 Subject: [PATCH] =?UTF-8?q?demand:=20=20TMS=E7=B3=BB=E7=BB=9F=20-=20?= =?UTF-8?q?=E8=BF=90=E8=BE=93=E7=AE=A1=E7=90=86=20-=20=E6=BC=8F=E7=BB=84?= =?UTF-8?q?=E6=89=B9=E6=AC=A1=E7=BB=9F=E8=AE=A1=20-=20=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=BC=8F=E7=BB=84=E6=89=B9=E6=AC=A1=E7=BB=9F=E8=AE=A1=E5=88=97?= =?UTF-8?q?=E8=A1=A8=20=20=20TMS=E7=B3=BB=E7=BB=9F=20-=20=E8=BF=90?= =?UTF-8?q?=E8=BE=93=E7=AE=A1=E7=90=86=20-=20=E6=BC=8F=E7=BB=84=E6=89=B9?= =?UTF-8?q?=E6=AC=A1=E7=BB=9F=E8=AE=A1=20-=20=E5=AF=BC=E5=87=BA=E6=BC=8F?= =?UTF-8?q?=E7=BB=84=E8=AF=A6=E7=BB=86=E6=95=B0=E6=8D=AE=20=20=20TMS?= =?UTF-8?q?=E7=B3=BB=E7=BB=9F=20-=20=E8=BF=90=E8=BE=93=E7=AE=A1=E7=90=86?= =?UTF-8?q?=20-=20=E6=BC=8F=E7=BB=84=E6=89=B9=E6=AC=A1=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=20-=20=E5=AF=BC=E5=87=BA=E6=BC=8F=E7=BB=84=E6=89=B9=E6=AC=A1?= =?UTF-8?q?=E7=BB=9F=E8=AE=A1=E6=9F=A5=E8=AF=A2=E6=8E=A5=E5=8F=A3=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit committer: heyu --- .../emis/EmisTmsSiteBatchMissStatisticsController.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsSiteBatchMissStatisticsController.java b/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsSiteBatchMissStatisticsController.java index 22958554f..007f41bd4 100644 --- a/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsSiteBatchMissStatisticsController.java +++ b/emis-biz-web/src/main/java/com/xdadan/erp/web/emis/EmisTmsSiteBatchMissStatisticsController.java @@ -57,9 +57,9 @@ public class EmisTmsSiteBatchMissStatisticsController extends BaseController { */ @PreAuthorize("@ss.hasPermi('emis:emisTmsSiteBatchMissStatistics:exportDetail')") @Log(title = "漏组详细数据导出", businessType = BusinessType.EXPORT) - @GetMapping("/exportDetail") + @PostMapping("/exportDetail") public void exportDetail(HttpServletResponse response, - EmisTmsSiteBatchMissStatistics emisTmsSiteBatchMissStatistics) { + @RequestBody EmisTmsSiteBatchMissStatistics emisTmsSiteBatchMissStatistics) { try { // 设置响应头,支持流式传输 response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"); @@ -90,9 +90,9 @@ public class EmisTmsSiteBatchMissStatisticsController extends BaseController { */ @PreAuthorize("@ss.hasPermi('emis:emisTmsSiteBatchMissStatistics:exportStatistics')") @Log(title = "漏组批次统计导出", businessType = BusinessType.EXPORT) - @GetMapping("/exportStatistics") + @PostMapping("/exportStatistics") public void exportStatistics(HttpServletResponse response, - EmisTmsSiteBatchMissStatistics emisTmsSiteBatchMissStatistics) { + @RequestBody EmisTmsSiteBatchMissStatistics emisTmsSiteBatchMissStatistics) { try { statisticsService.exportStatisticsData(response, emisTmsSiteBatchMissStatistics); } catch (Exception e) {