“djh”
11 hours ago 2d9bf42ce507096c3b73a782da3ad16f29d2ccdc
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`,
@@ -21,7 +22,32 @@
        <if test="companyId!=null">
            and mi.company_id =#{companyId}
        </if>
        <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>
    <select id="selectListById" resultType="com.gkhy.exam.system.domain.MonthlyInspection">
        SELECT
            mi.`id`,
            mi.`company_id`,
            mi.`year`,
            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>