From 584dbcd691e66b6deb4d4821ab6eea10bf8c35dd Mon Sep 17 00:00:00 2001 From: lyh <925863403@qq.com> Date: 星期五, 18 七月 2025 11:31:07 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- 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