From ee43a048ae9a80bbcd8225a8a4c968ce7eea02e6 Mon Sep 17 00:00:00 2001 From: shuliYao <1397940314@qq.com> Date: Wed, 3 Apr 2024 11:35:45 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=B8=80=E9=94=AE=E6=9F=A5=E9=87=8D?= =?UTF-8?q?=E6=A8=A1=E7=B3=8A=E6=90=9C=E7=B4=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../xiaoyao/ocr/controller/OcrCheckDuplicateController.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/controller/OcrCheckDuplicateController.java b/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/controller/OcrCheckDuplicateController.java index dc18b92..74b278e 100644 --- a/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/controller/OcrCheckDuplicateController.java +++ b/jyjz-system/jyjz-system-oa/src/main/java/cn/jyjz/xiaoyao/ocr/controller/OcrCheckDuplicateController.java @@ -81,7 +81,11 @@ public class OcrCheckDuplicateController { } //调用查询参数解析方法,解析为queryWrapper queryWrapper = SearchParaFormatting.searchParaParse(queryWrapper, paraMap); - + //提报人模糊搜索 + String upUserName = req.getParameter("upUserName"); + if(StringUtils.isNotBlank(upUserName)){ + queryWrapper.like("upName",upUserName); + } queryWrapper.eq("tenant_id", tenantId); queryWrapper.eq("suspiciousfile", "0"); queryWrapper.orderBy(true,true,"submit_date_timestamp");