“djh”
2025-11-13 34d203c93e776c433b7b6614a77ad1d61c7035dd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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.SealTypeMapper">
 
    <select id="selectSealTypeList" resultType="com.gkhy.exam.system.domain.SealType">
        SELECT
            `id`,
            `company_id`,
            `seal_name`,
            `create_by`,
            `create_time`,
            `update_by`,
            `update_time`,
            `del_flag`
        FROM
            `seal_type`
        where del_flag = 0
            <if test="companyId!=null">
                and company_id = #{companyId}
            </if>
    </select>
</mapper>