From ba3a90471ab1d2e7772dd3fd53be4ab104728ac4 Mon Sep 17 00:00:00 2001
From: zhaoqing <3160641494@qq.com>
Date: Fri, 7 Aug 2026 15:56:47 +0800
Subject: [PATCH] =?UTF-8?q?feat(bms):=E8=AE=A1=E8=B4=B9=E8=A7=84=E6=A0=BC?=
=?UTF-8?q?=20=E6=9F=A5=E8=AF=A2=E6=9D=A1=E4=BB=B6=20=E6=B7=BB=E5=8A=A0?=
=?UTF-8?q?=E8=B4=B9=E7=94=A8=E7=A7=91=E7=9B=AE?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../main/resources/mapper/BillingRulesMapper.xml | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/mhd_bms/src/main/resources/mapper/BillingRulesMapper.xml b/mhd_bms/src/main/resources/mapper/BillingRulesMapper.xml
index 313d42569..77823380b 100644
--- a/mhd_bms/src/main/resources/mapper/BillingRulesMapper.xml
+++ b/mhd_bms/src/main/resources/mapper/BillingRulesMapper.xml
@@ -89,6 +89,21 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
and service_items_code = #{billingRulesDO.serviceItemsCode}
+
+ and service_items_name like concat('%',#{billingRulesDO.serviceItemsName},'%')
+
+
+ and first_subject_code = #{billingRulesDO.firstSubjectCode}
+
+
+ and first_subject_name like concat('%',#{billingRulesDO.firstSubjectName},'%')
+
+
+ and second_subject_code = #{billingRulesDO.secondSubjectCode}
+
+
+ and second_subject_name like concat('%',#{billingRulesDO.secondSubjectName},'%')
+
and billing_rules_state = #{billingRulesDO.billingRulesState}