From c748dd4e703f94ff5ec0fa982138bbcabd11d83d Mon Sep 17 00:00:00 2001
From: linbangquan <1437892690@qq.com>
Date: Thu, 14 Mar 2024 17:04:45 +0800
Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E7=9F=A9=E9=98=B5?=
=?UTF-8?q?=E7=AE=A1=E7=90=86-=E5=A2=9E=E5=8A=A0=E5=87=BA=E5=8E=82?=
=?UTF-8?q?=E8=87=AA=E5=B8=A6=E7=9A=84=E7=94=A8=E6=88=B7=E3=80=81=E5=88=86?=
=?UTF-8?q?=E7=BB=84=E3=80=81=E8=A7=92=E8=89=B2=E4=B8=89=E4=B8=AA=E7=9F=A9?=
=?UTF-8?q?=E9=98=B5?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
关联 #[1021566328995840]矩阵管理-增加出厂自带的用户、分组、角色三个矩阵 http://192.168.0.96:8090/demo/rdm.html#/story-detail/939050947543040/939050947543042/1021566328995840
---
.../framework/process/dao/mapper/PriorityMapper.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/main/java/neatlogic/framework/process/dao/mapper/PriorityMapper.xml b/src/main/java/neatlogic/framework/process/dao/mapper/PriorityMapper.xml
index 85485ff2..5de281f3 100644
--- a/src/main/java/neatlogic/framework/process/dao/mapper/PriorityMapper.xml
+++ b/src/main/java/neatlogic/framework/process/dao/mapper/PriorityMapper.xml
@@ -102,15 +102,15 @@
OR `${filter.uuid}` IS NULL)
- (`${filter.uuid}` NOT LIKE CONCAT('%', #{filter.valueList[0]}, '%') OR a.`${filter.uuid}` IS NULL)
+ (`${filter.uuid}` NOT LIKE CONCAT('%', #{filter.valueList[0]}, '%') OR `${filter.uuid}` IS NULL)
- `${filter.uuid}` IS NULL
+ (`${filter.uuid}` IS NULL OR `${filter.uuid}` = '')
- `${filter.uuid}` IS NOT NULL
+ (`${filter.uuid}` IS NOT NULL AND `${filter.uuid}` != '')
--
Gitee