Blame view

CertCompanyMappingMapper.xml 985 Bytes
涂亚平 committed
1 2 3 4 5 6
<?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.subsidy.mapper.CertCompanyMappingMapper">

    <select id="getCompanyCerts" resultType="com.subsidy.model.CertDictDO">
        SELECT
涂亚平 committed
7
        distinct t.*
涂亚平 committed
8
        FROM
涂亚平 committed
9 10 11
        cert_dict t
        LEFT JOIN cert_type_mapping t3 ON t.id = t3.cert_id
        LEFT JOIN cert_company_mapping t2 ON t.id = t2.cert_id
涂亚平 committed
12 13 14 15
        WHERE
            t.delete_date IS NULL
            AND t2.delete_date IS NULL
            AND t3.delete_date IS NULL
涂亚平 committed
16
            AND t2.company_id = #{companyId}
涂亚平 committed
17 18 19
            <if test="typeId != null and typeId !=''">
                AND t3.type_id = #{typeId}
            </if>
涂亚平 committed
20
            order by t.id
涂亚平 committed
21 22 23 24 25 26
    </select>

    <select id="getCompanyCertStatus" resultType="com.subsidy.vo.cert.GetCompanyCertsVO">
        select * from cert_dict t where t.delete_date is null
    </select>
</mapper>