From df2ff592a5b9037a747032f3351836e0c61fb4f9 Mon Sep 17 00:00:00 2001
From: maven <2163098428@qq.com>
Date: 星期五, 16 一月 2026 08:59:14 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/dev_New' into dev_New
---
src/main/resources/mapper/quality/QualityTestStandardMapper.xml | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/main/resources/mapper/quality/QualityTestStandardMapper.xml b/src/main/resources/mapper/quality/QualityTestStandardMapper.xml
index 72a977a..be07a98 100644
--- a/src/main/resources/mapper/quality/QualityTestStandardMapper.xml
+++ b/src/main/resources/mapper/quality/QualityTestStandardMapper.xml
@@ -7,17 +7,17 @@
FROM quality_test_standard
where
1=1
- <if test="qualityTestStandard.standardNo != null and qualityTestStandard.standardNo != '' ">
- AND standard_no like concat('%',#{qualityTestStandard.standardNo},'%')
+ <if test="c.standardNo != null and c.standardNo != '' ">
+ AND standard_no like concat('%',#{c.standardNo},'%')
</if>
- <if test="qualityTestStandard.standardName != null and qualityTestStandard.standardName != '' ">
- AND standard_name like concat('%',#{qualityTestStandard.standardName},'%')
+ <if test="c.standardName != null and c.standardName != '' ">
+ AND standard_name like concat('%',#{c.standardName},'%')
</if>
- <if test="qualityTestStandard.state != null and qualityTestStandard.state != '' ">
- AND state = #{qualityTestStandard.state}
+ <if test="c.state != null and c.state != '' ">
+ AND state = #{c.state}
</if>
- <if test="qualityTestStandard.inspectType != null and qualityTestStandard.inspectType != '' ">
- AND inspect_type = #{qualityTestStandard.inspectType}
+ <if test="c.inspectType != null and c.inspectType != '' ">
+ AND inspect_type = #{c.inspectType}
</if>
</select>
</mapper>
--
Gitblit v1.9.3