From fea22e82e7e49691f6e0c20a29b228d0ab3173e9 Mon Sep 17 00:00:00 2001
From: zxl <763096477@qq.com>
Date: 星期三, 29 十月 2025 17:08:38 +0800
Subject: [PATCH] 修改问题
---
ycl-server/src/main/resources/mapper/zgyw/CheckTemplateRuleMapper.xml | 9 +++++++++
1 files changed, 9 insertions(+), 0 deletions(-)
diff --git a/ycl-server/src/main/resources/mapper/zgyw/CheckTemplateRuleMapper.xml b/ycl-server/src/main/resources/mapper/zgyw/CheckTemplateRuleMapper.xml
index 2893c43..384f4bd 100644
--- a/ycl-server/src/main/resources/mapper/zgyw/CheckTemplateRuleMapper.xml
+++ b/ycl-server/src/main/resources/mapper/zgyw/CheckTemplateRuleMapper.xml
@@ -72,4 +72,13 @@
where tctr.check_template_id = #{checkTemplateId}
</select>
+ <select id="getAllRuleTemplate" resultType="com.ycl.platform.domain.vo.RuleExcelVO">
+ select cr.id as ruleId,ct.examine_category as examineCategory,ct.examine_tag as examineTag,ct.template_name as templateName,cr.rule_name as ruleName,ctr.weight as weight,cr.rule_description as ruleDescription
+ from t_check_template_rule ctr
+ left join t_check_template ct on ctr.check_template_id = ct.id
+ left join t_check_rule cr on ctr.check_rule_id = cr.id
+ where ct.status = 0 and ct.deleted = 0
+
+ </select>
+
</mapper>
--
Gitblit v1.8.0