CompanyDictMapper.xml 2.72 KB
<?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.CompanyDictMapper">

    <!-- 通用查询映射结果 -->
    <resultMap id="BaseResultMap" type="com.subsidy.model.CompanyDictDO">
        <id column="id" property="id" />
        <result column="create_date" property="createDate" />
        <result column="update_date" property="updateDate" />
        <result column="delete_date" property="deleteDate" />
        <result column="company_name" property="companyName" />
    </resultMap>

    <!-- 通用查询结果列 -->
    <sql id="Base_Column_List">
        create_date,
        update_date,
        delete_date,
        id, company_name
    </sql>

    <select id="operators"  resultType="com.subsidy.vo.administer.OperatorsVO">
        SELECT
           distinct t.id,
            t2.id as companyId,
            t.telephone,
            t.user_name,
            t2.banner,
            t2.short_name,
            t.account_name,
            t.img,
            t2.company_name,
            t2.logo,
            t2.address,
            t2.supervise_name
        FROM
            administer t
            left join role_administer_mapping t4 on t.id = t4.administer_id
            left join company_dict t2 on t.company_id = t2.id
            left join company_field_mapping t3 on t2.id = t3.company_id
        WHERE
            t.delete_date IS NULL
            and t2.delete_date is null
            and t3.delete_date is null
            <if test="role == 1">
                and t4.role_id in (1,3)
            </if>
            <if test="role == 2">
                and t4.role_id = 2
            </if>
            <if test="id != null and id != ''">
                and t2.id = #{id}
            </if>
            <if test="companyName != null and companyName != ''">
              and t2.company_name like concat('%',#{companyName} ,'%')
            </if>
            <if test="fieldId != null and fieldId != ''">
              and t3.field_id = #{fieldId}
            </if>
            <if test="superviseName != null and superviseName != ''">
               and t2.supervise_name =#{superviseName}
            </if>
        </select>


        <select id="getAllCompany" parameterType="com.subsidy.model.CompanyDictDO" resultType="com.subsidy.vo.company.GetAllCompanyVO">
            SELECT
                t.id,
                t.company_name
            FROM
                company_dict t
                where t.delete_date is null
                <if test="companyName != null and companyName != ''">
                    and t.company_name like concat('%',#{companyName} ,'%')
                </if>
        </select>

</mapper>