From 2d9bf42ce507096c3b73a782da3ad16f29d2ccdc Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: Thu, 07 May 2026 15:25:16 +0800
Subject: [PATCH] 新增年份查询

---
 multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml b/multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml
index 93d73b2..a3bc071 100644
--- a/multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml
+++ b/multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml
@@ -6,6 +6,7 @@
         SELECT
             mi.`id`,
             mi.`company_id`,
+            mi.`year`,
             sc.`name` AS company_name,
             mi.`record_name`,
             mi.`del_flag`,
@@ -24,6 +25,9 @@
         <if test="id!=null">
             and mi.id = #{id}
         </if>
+        <if test="year!=null and year!=''">
+            and mi.`year` = #{year}
+        </if>
         ORDER BY
             mi.create_time DESC
     </select>
@@ -31,6 +35,7 @@
         SELECT
             mi.`id`,
             mi.`company_id`,
+            mi.`year`,
             sc.`name` AS company_name,
             mi.`record_name`,
             mi.`del_flag`,

--
Gitblit v1.9.2