From 48c113ad2c0a956beaabb83fa8761e7e4ea9eaad Mon Sep 17 00:00:00 2001 From: sxu <602087911@qq.com> Date: Tue, 3 Dec 2024 18:31:49 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=96=E7=A0=81=E5=87=BA=E5=BA=93=E6=90=9C?= =?UTF-8?q?=E7=B4=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../material/lease/controller/LeaseApplyInfoController.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bonus-modules/bonus-material/src/main/java/com/bonus/material/lease/controller/LeaseApplyInfoController.java b/bonus-modules/bonus-material/src/main/java/com/bonus/material/lease/controller/LeaseApplyInfoController.java index 903f356f..c92aee20 100644 --- a/bonus-modules/bonus-material/src/main/java/com/bonus/material/lease/controller/LeaseApplyInfoController.java +++ b/bonus-modules/bonus-material/src/main/java/com/bonus/material/lease/controller/LeaseApplyInfoController.java @@ -66,8 +66,8 @@ public class LeaseApplyInfoController extends BaseController { //@RequiresPermissions("lease:info:query") @GetMapping(value = "/{id}") public AjaxResult getInfo(@NotNull(message = "领料任务ID不能为空") @PathVariable("id") Long id, - @RequestParam(value = "keyword", required = false) String keyword) { - return success(leaseApplyInfoService.selectLeaseApplyInfoById(id, keyword)); + @RequestParam(value = "keyWord", required = false) String keyWord) { + return success(leaseApplyInfoService.selectLeaseApplyInfoById(id, keyWord)); } /**