From 97cd53a574602b3eb4320a6e63105f604eb03f85 Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: 星期三, 17 十二月 2025 09:02:12 +0800
Subject: [PATCH] 修改新增

---
 multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml |   21 +++++++++++++++++++++
 1 files changed, 21 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 3ac56f5..93d73b2 100644
--- a/multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml
+++ b/multi-system/src/main/resources/mapper/system/MonthlyInspectionMapper.xml
@@ -21,7 +21,28 @@
         <if test="companyId!=null">
             and mi.company_id =#{companyId}
         </if>
+        <if test="id!=null">
+            and mi.id = #{id}
+        </if>
         ORDER BY
             mi.create_time DESC
     </select>
+    <select id="selectListById" resultType="com.gkhy.exam.system.domain.MonthlyInspection">
+        SELECT
+            mi.`id`,
+            mi.`company_id`,
+            sc.`name` AS company_name,
+            mi.`record_name`,
+            mi.`del_flag`,
+            mi.`create_by`,
+            mi.`create_time`,
+            mi.`update_by`,
+            mi.`update_time`
+        FROM
+            `monthly_inspection` mi
+                LEFT JOIN sys_company sc ON mi.company_id = sc.id
+        WHERE
+            mi.del_flag = 1
+        and mi.id = #{monthlyId}
+    </select>
 </mapper>

--
Gitblit v1.9.2