From 85be244f6171d51f8aa8e38142925f623636cc0f Mon Sep 17 00:00:00 2001
From: Lius <Lius2225@163.com>
Date: 星期四, 17 七月 2025 16:18:00 +0800
Subject: [PATCH] 点检自助维护表打印导出

---
 lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamInspectionOrderController.java |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamInspectionOrderController.java b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamInspectionOrderController.java
index c0ff072..7fd0901 100644
--- a/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamInspectionOrderController.java
+++ b/lxzn-module-eam/src/main/java/org/jeecg/modules/eam/controller/EamInspectionOrderController.java
@@ -337,7 +337,7 @@
      */
     @GetMapping("/exportInsOrderBaseInfo")
     public JSONObject exportInspectionOrderBaseInfo(@RequestParam(name = "equipmentCode", required = true) String equipmentCode,
-                                                    @RequestParam(name = "inspectionDate", required = true) String inspectionDate) {
+                                                    @RequestParam(name = "inspectionDate", required = false) String inspectionDate) {
         return eamInspectionOrderService.exportInspectionOrderBaseInfo(equipmentCode, inspectionDate);
     }
 
@@ -349,7 +349,7 @@
      */
     @GetMapping("/exportInsOrderDetailList")
     public JSONObject exportInspectionOrderDetailList(@RequestParam(name = "equipmentCode", required = true) String equipmentCode,
-                                                    @RequestParam(name = "inspectionDate", required = true) String inspectionDate) {
+                                                    @RequestParam(name = "inspectionDate", required = false) String inspectionDate) {
         return eamInspectionOrderService.exportInspectionOrderDetailList(equipmentCode, inspectionDate);
     }
 
@@ -361,7 +361,7 @@
      */
     @GetMapping("/exportInsOrderDetailUserList")
     public JSONObject exportInspectionOrderDetailUserList(@RequestParam(name = "equipmentCode", required = true) String equipmentCode,
-                                                    @RequestParam(name = "inspectionDate", required = true) String inspectionDate) {
+                                                    @RequestParam(name = "inspectionDate", required = false) String inspectionDate) {
         return eamInspectionOrderService.exportInspectionOrderDetailUserList(equipmentCode, inspectionDate);
     }
 
@@ -373,7 +373,7 @@
      */
     @GetMapping("/exportWeekInsDetailList")
     public JSONObject exportWeekInsDetailList(@RequestParam(name = "equipmentCode", required = true) String equipmentCode,
-                                                    @RequestParam(name = "inspectionDate", required = true) String inspectionDate) {
+                                                    @RequestParam(name = "inspectionDate", required = false) String inspectionDate) {
         return eamInspectionOrderService.exportWeekInsDetailList(equipmentCode, inspectionDate);
     }
 
@@ -385,7 +385,7 @@
      */
     @GetMapping("/exportWeekInsOrderDetailUserList")
     public JSONObject exportInspectionOrder(@RequestParam(name = "equipmentCode", required = true) String equipmentCode,
-                                                    @RequestParam(name = "inspectionDate", required = true) String inspectionDate) {
+                                                    @RequestParam(name = "inspectionDate", required = false) String inspectionDate) {
         return eamInspectionOrderService.exportWeekInsOrderDetailUserList(equipmentCode, inspectionDate);
     }
 

--
Gitblit v1.9.3