“djh”
2025-12-03 e32ac074e0cdc07b7551155e2e1c24684857f2b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.gkhy.exam.system.mapper.MonthlyInspectionMapper">
 
    <select id="selectInspectionList" 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
        <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>