114 lines
4.5 KiB
XML
114 lines
4.5 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.cool.store.mapper.HyPartnerUserChannelMapper">
|
|
<resultMap id="BaseResultMap" type="com.cool.store.entity.HyPartnerUserChannelDO">
|
|
<id column="id" jdbcType="BIGINT" property="id" />
|
|
<result column="channel_id" jdbcType="BIGINT" property="channelId" />
|
|
<result column="channel_name" jdbcType="VARCHAR" property="channelName" />
|
|
<result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
|
|
<result column="update_time" jdbcType="TIMESTAMP" property="updateTime" />
|
|
</resultMap>
|
|
<sql id="Base_Column_List">
|
|
id, channel_id, channel_name, create_time, update_time
|
|
</sql>
|
|
<select id="selectByPrimaryKey" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from hy_partner_user_channel
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</select>
|
|
<select id="selectByChannelId" parameterType="java.lang.Long" resultMap="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from hy_partner_user_channel
|
|
where channel_id = #{channelId} limit 1
|
|
</select>
|
|
<select id="selectByChannelName" resultMap="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from hy_partner_user_channel
|
|
where channel_name = #{channelName} limit 1
|
|
</select>
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long">
|
|
delete from hy_partner_user_channel
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</delete>
|
|
<insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.cool.store.entity.HyPartnerUserChannelDO" useGeneratedKeys="true">
|
|
insert into hy_partner_user_channel (channel_id, channel_name, create_time,
|
|
update_time)
|
|
values (#{channelId,jdbcType=BIGINT}, #{channelName,jdbcType=VARCHAR}, #{createTime,jdbcType=TIMESTAMP},
|
|
#{updateTime,jdbcType=TIMESTAMP})
|
|
</insert>
|
|
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.cool.store.entity.HyPartnerUserChannelDO" useGeneratedKeys="true">
|
|
insert into hy_partner_user_channel
|
|
<trim prefix="(" suffix=")" suffixOverrides=",">
|
|
<if test="channelId != null">
|
|
channel_id,
|
|
</if>
|
|
<if test="channelName != null">
|
|
channel_name,
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time,
|
|
</if>
|
|
</trim>
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
<if test="channelId != null">
|
|
#{channelId,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="channelName != null">
|
|
#{channelName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
#{createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
</trim>
|
|
</insert>
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.cool.store.entity.HyPartnerUserChannelDO">
|
|
update hy_partner_user_channel
|
|
<set>
|
|
<if test="channelId != null">
|
|
channel_id = #{channelId,jdbcType=BIGINT},
|
|
</if>
|
|
<if test="channelName != null">
|
|
channel_name = #{channelName,jdbcType=VARCHAR},
|
|
</if>
|
|
<if test="createTime != null">
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
<if test="updateTime != null">
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP},
|
|
</if>
|
|
</set>
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
<update id="updateByPrimaryKey" parameterType="com.cool.store.entity.HyPartnerUserChannelDO">
|
|
update hy_partner_user_channel
|
|
set channel_id = #{channelId,jdbcType=BIGINT},
|
|
channel_name = #{channelName,jdbcType=VARCHAR},
|
|
create_time = #{createTime,jdbcType=TIMESTAMP},
|
|
update_time = #{updateTime,jdbcType=TIMESTAMP}
|
|
where id = #{id,jdbcType=BIGINT}
|
|
</update>
|
|
|
|
<select id="getAllUserChannel" resultMap="BaseResultMap">
|
|
select * from hy_partner_user_channel
|
|
</select>
|
|
|
|
<select id="getUserChannelByIds" resultMap="BaseResultMap">
|
|
select * from hy_partner_user_channel
|
|
<where>
|
|
<if test="userChannelIds!=null and userChannelIds.size>0">
|
|
<foreach collection="userChannelIds" item="userChannelId" open="channel_id in (" close=")" separator=",">
|
|
#{userChannelId}
|
|
</foreach>
|
|
</if>
|
|
</where>
|
|
</select>
|
|
<select id="selectByChannel" resultMap="BaseResultMap">
|
|
select
|
|
<include refid="Base_Column_List" />
|
|
from hy_partner_user_channel
|
|
where channel_id = #{channelId} and channel_name=#{channelName} limit 1
|
|
</select>
|
|
</mapper> |