Mapper代理开发

Untitled

Untitled

Untitled

Untitled

Untitled

<select id="SelectByCondition" resultMap="BrandMap">
        select * from tb_brand
        <where>
            <if test="status != null">
                and status = #{status}
            </if>
            <if test="companyName != null and companyName != '' ">
                and company_name like #{companyName}
            </if>
            <if test="brandName != null and brandName != '' ">
                and brand_name like #{brandName}
            </if>
        </where>
    </select>

Untitled

Untitled

Untitled