From afb4d677173e7eac06ef3cea826acf4b25237ae4 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Wed, 20 Mar 2024 11:14:58 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A4=84=E7=90=86=E5=9B=BD=E6=A0=87?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E9=A1=B5=E3=80=81=E6=B5=B7=E5=A4=96=E6=A0=87?= =?UTF-8?q?=E5=87=86=E5=88=97=E8=A1=A8=E9=A1=B5=E3=80=81=E4=BC=81=E4=B8=9A?= =?UTF-8?q?=E6=A0=87=E5=87=86=E5=88=97=E8=A1=A8=E9=A1=B5=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../laws/common/service/impl/LawsCommonServiceImpl.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java index 058b4331..21cb2bb8 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java @@ -2311,6 +2311,11 @@ public class LawsCommonServiceImpl implements ILawsCommonService { private void jointSelectCondition(List fieldList, StringBuilder selectCondition, String key, String value, String tableName) { for (LawsTag lawsTag : fieldList) { String dbFieldName = lawsTag.getDbFieldName(); + if (Objects.equals(key, "standard_state")) { + // 多选 + manyOption(selectCondition, key, value); + return; + } if (Objects.equals(key, dbFieldName)) { String fieldShowType = lawsTag.getFieldShowType(); if (FieldCommon.TYPE_LIKE.contains(fieldShowType)) {