137 lines
8.0 KiB
XML
137 lines
8.0 KiB
XML
<?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.xdadan.erp.emis.mapper.EmisBrandMapper">
|
|
|
|
<!-- com.xdadan.erp.emis.mapper.EmisBaseMapper.-->
|
|
|
|
<resultMap type="EmisBrand" id="EmisBrandResult" extends="com.xdadan.erp.emis.mapper.EmisBaseMapper.EmisBaseResult">
|
|
<result property="id" column="id" />
|
|
<result property="code" column="code" />
|
|
<result property="name" column="name" />
|
|
<result property="nameEn" column="name_en" />
|
|
<result property="logo" column="logo" />
|
|
<result property="url" column="url" />
|
|
<result property="status" column="status" />
|
|
<result property="brandImg" column="brand_img" />
|
|
<result property="orderNum" column="order_num" />
|
|
|
|
|
|
</resultMap>
|
|
|
|
<sql id="selectEmisBrandVo">
|
|
select id, code, name, name_en, logo, url, status, brand_img, order_num, remark, tenant_id, del_flag, create_by, create_time, update_by, update_time, create_site, update_site from emis_brand
|
|
</sql>
|
|
|
|
<select id="selectEmisBrandList" parameterType="EmisBrand" resultMap="EmisBrandResult">
|
|
<include refid="selectEmisBrandVo"/>
|
|
<where>
|
|
del_flag = '0'
|
|
<if test="id != null "> and id = #{id}</if>
|
|
<if test="code != null and code != ''"> and code like concat('%', #{code}, '%')</if>
|
|
<if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
|
<if test="nameEn != null and nameEn != ''"> and name_en like concat('%', #{nameEn}, '%')</if>
|
|
<if test="logo != null and logo != ''"> and logo like concat('%', #{logo}, '%')</if>
|
|
<if test="url != null and url != ''"> and url like concat('%', #{url}, '%')</if>
|
|
<if test="status != null "> and status = #{status}</if>
|
|
<if test="brandImg != null and brandImg != ''"> and brand_img like concat('%', #{brandImg}, '%')</if>
|
|
<if test="orderNum != null "> and order_num = #{orderNum}</if>
|
|
<if test="remark != null and remark != ''"> and remark like concat('%', #{remark}, '%')</if>
|
|
<if test="tenantId != null and tenantId != ''"> and tenant_id like concat('%', #{tenantId}, '%')</if>
|
|
<if test="delFlag != null and delFlag != ''"> and del_flag like concat('%', #{delFlag}, '%')</if>
|
|
<if test="createBy != null and createBy != ''"> and create_by like concat('%', #{createBy}, '%')</if>
|
|
<if test="createTime != null "> and create_time = #{createTime}</if>
|
|
<if test="updateBy != null and updateBy != ''"> and update_by like concat('%', #{updateBy}, '%')</if>
|
|
<if test="updateTime != null "> and update_time = #{updateTime}</if>
|
|
<if test="createSite != null and createSite != ''"> and create_site like concat('%', #{createSite}, '%')</if>
|
|
<if test="updateSite != null and updateSite != ''"> and update_site like concat('%', #{updateSite}, '%')</if>
|
|
</where>
|
|
order by create_time desc
|
|
</select>
|
|
|
|
<select id="selectEmisBrandById" parameterType="Long" resultMap="EmisBrandResult">
|
|
select id, code, name, name_en, logo, url, status, brand_img, order_num, remark, tenant_id, del_flag, create_by, create_time, update_by, update_time, create_site, update_site
|
|
from emis_brand a
|
|
where a.id = #{id}
|
|
</select>
|
|
|
|
<insert id="insertEmisBrand" parameterType="EmisBrand">
|
|
insert into emis_brand
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">id,</if>
|
|
<if test="code != null and code != ''">code,</if>
|
|
<if test="name != null and name != ''">name,</if>
|
|
<if test="nameEn != null and nameEn != ''">name_en,</if>
|
|
<if test="logo != null and logo != ''">logo,</if>
|
|
<if test="url != null and url != ''">url,</if>
|
|
<if test="status != null">status,</if>
|
|
<if test="brandImg != null and brandImg != ''">brand_img,</if>
|
|
<if test="orderNum != null">order_num,</if>
|
|
<if test="remark != null and remark != ''">remark,</if>
|
|
<if test="tenantId != null and tenantId != ''">tenant_id,</if>
|
|
<if test="delFlag != null and delFlag != ''">del_flag,</if>
|
|
<if test="createBy != null and createBy != ''">create_by,</if>
|
|
<if test="createTime != null">create_time,</if>
|
|
<if test="updateBy != null and updateBy != ''">update_by,</if>
|
|
<if test="updateTime != null">update_time,</if>
|
|
<if test="createSite != null and createSite != ''">create_site,</if>
|
|
<if test="updateSite != null and updateSite != ''">update_site,</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="id != null">#{id},</if>
|
|
<if test="code != null and code != ''">#{code},</if>
|
|
<if test="name != null and name != ''">#{name},</if>
|
|
<if test="nameEn != null and nameEn != ''">#{nameEn},</if>
|
|
<if test="logo != null and logo != ''">#{logo},</if>
|
|
<if test="url != null and url != ''">#{url},</if>
|
|
<if test="status != null">#{status},</if>
|
|
<if test="brandImg != null and brandImg != ''">#{brandImg},</if>
|
|
<if test="orderNum != null">#{orderNum},</if>
|
|
<if test="remark != null and remark != ''">#{remark},</if>
|
|
<if test="tenantId != null and tenantId != ''">#{tenantId},</if>
|
|
<if test="delFlag != null and delFlag != ''">#{delFlag},</if>
|
|
<if test="createBy != null and createBy != ''">#{createBy},</if>
|
|
<if test="createTime != null">#{createTime},</if>
|
|
<if test="updateBy != null and updateBy != ''">#{updateBy},</if>
|
|
<if test="updateTime != null">#{updateTime},</if>
|
|
<if test="createSite != null and createSite != ''">#{createSite},</if>
|
|
<if test="updateSite != null and updateSite != ''">#{updateSite},</if>
|
|
</trim>
|
|
</insert>
|
|
|
|
<update id="updateEmisBrand" parameterType="EmisBrand">
|
|
update emis_brand
|
|
<trim prefix="SET" suffixOverrides=",">
|
|
<if test="code != null and code != ''">code = #{code},</if>
|
|
<if test="name != null and name != ''">name = #{name},</if>
|
|
<if test="nameEn != null and nameEn != ''">name_en = #{nameEn},</if>
|
|
<if test="logo != null and logo != ''">logo = #{logo},</if>
|
|
<if test="url != null and url != ''">url = #{url},</if>
|
|
<if test="status != null">status = #{status},</if>
|
|
<if test="brandImg != null and brandImg != ''">brand_img = #{brandImg},</if>
|
|
<if test="orderNum != null">order_num = #{orderNum},</if>
|
|
<if test="remark != null and remark != ''">remark = #{remark},</if>
|
|
<if test="tenantId != null and tenantId != ''">tenant_id = #{tenantId},</if>
|
|
<if test="delFlag != null and delFlag != ''">del_flag = #{delFlag},</if>
|
|
<if test="createBy != null and createBy != ''">create_by = #{createBy},</if>
|
|
<if test="createTime != null">create_time = #{createTime},</if>
|
|
<if test="updateBy != null and updateBy != ''">update_by = #{updateBy},</if>
|
|
<if test="updateTime != null">update_time = #{updateTime},</if>
|
|
<if test="createSite != null and createSite != ''">create_site = #{createSite},</if>
|
|
<if test="updateSite != null and updateSite != ''">update_site = #{updateSite},</if>
|
|
</trim>
|
|
where id = #{id}
|
|
</update>
|
|
|
|
<delete id="deleteEmisBrandById" parameterType="Long">
|
|
update emis_brand set del_flag='1' where id = #{id}
|
|
</delete>
|
|
|
|
<delete id="deleteEmisBrandByIds" parameterType="String">
|
|
update emis_brand set del_flag='1' where id in
|
|
<foreach item="id" collection="array" open="(" separator="," close=")">
|
|
#{id}
|
|
</foreach>
|
|
</delete>
|
|
</mapper> |