|
|
<?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.yoho.unions.dal.model.UnionActivity" >
|
|
|
<resultMap id="BaseResultMap" type="com.yoho.unions.dal.UnionActivity" >
|
|
|
<id column="id" property="id" jdbcType="BIGINT" />
|
|
|
<result column="udid" property="udid" jdbcType="VARCHAR" />
|
|
|
<result column="union_type" property="unionType" jdbcType="VARCHAR" />
|
|
|
<result column="client_type" property="clientType" jdbcType="VARCHAR" />
|
|
|
<result column="advertiser_id" property="advertiserId" jdbcType="VARCHAR" />
|
|
|
<result column="click_id" property="clickId" jdbcType="VARCHAR" />
|
|
|
<result column="create_time" property="createTime" jdbcType="INTEGER" />
|
|
|
</resultMap>
|
|
|
<sql id="Base_Column_List" >
|
|
|
id, udid, union_type, client_type, advertiser_id, click_id, create_time
|
|
|
</sql>
|
|
|
<select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Long" >
|
|
|
select
|
|
|
<include refid="Base_Column_List" />
|
|
|
from union_activity
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</select>
|
|
|
<delete id="deleteByPrimaryKey" parameterType="java.lang.Long" >
|
|
|
delete from union_activity
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</delete>
|
|
|
<insert id="insert" parameterType="com.yoho.unions.dal.UnionActivity" >
|
|
|
insert into union_activity (id, udid, union_type,
|
|
|
client_type, advertiser_id, click_id,
|
|
|
create_time)
|
|
|
values (#{id,jdbcType=BIGINT}, #{udid,jdbcType=VARCHAR}, #{unionType,jdbcType=VARCHAR},
|
|
|
#{clientType,jdbcType=VARCHAR}, #{advertiserId,jdbcType=VARCHAR}, #{clickId,jdbcType=VARCHAR},
|
|
|
#{createTime,jdbcType=INTEGER})
|
|
|
</insert>
|
|
|
<insert id="insertSelective" parameterType="com.yoho.unions.dal.UnionActivity" >
|
|
|
insert into union_activity
|
|
|
<trim prefix="(" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
|
id,
|
|
|
</if>
|
|
|
<if test="udid != null" >
|
|
|
udid,
|
|
|
</if>
|
|
|
<if test="unionType != null" >
|
|
|
union_type,
|
|
|
</if>
|
|
|
<if test="clientType != null" >
|
|
|
client_type,
|
|
|
</if>
|
|
|
<if test="advertiserId != null" >
|
|
|
advertiser_id,
|
|
|
</if>
|
|
|
<if test="clickId != null" >
|
|
|
click_id,
|
|
|
</if>
|
|
|
<if test="createTime != null" >
|
|
|
create_time,
|
|
|
</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides="," >
|
|
|
<if test="id != null" >
|
|
|
#{id,jdbcType=BIGINT},
|
|
|
</if>
|
|
|
<if test="udid != null" >
|
|
|
#{udid,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="unionType != null" >
|
|
|
#{unionType,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="clientType != null" >
|
|
|
#{clientType,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="advertiserId != null" >
|
|
|
#{advertiserId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="clickId != null" >
|
|
|
#{clickId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="createTime != null" >
|
|
|
#{createTime,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
<update id="updateByPrimaryKeySelective" parameterType="com.yoho.unions.dal.UnionActivity" >
|
|
|
update union_activity
|
|
|
<set >
|
|
|
<if test="udid != null" >
|
|
|
udid = #{udid,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="unionType != null" >
|
|
|
union_type = #{unionType,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="clientType != null" >
|
|
|
client_type = #{clientType,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="advertiserId != null" >
|
|
|
advertiser_id = #{advertiserId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="clickId != null" >
|
|
|
click_id = #{clickId,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="createTime != null" >
|
|
|
create_time = #{createTime,jdbcType=INTEGER},
|
|
|
</if>
|
|
|
</set>
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</update>
|
|
|
<update id="updateByPrimaryKey" parameterType="com.yoho.unions.dal.UnionActivity" >
|
|
|
update union_activity
|
|
|
set udid = #{udid,jdbcType=VARCHAR},
|
|
|
union_type = #{unionType,jdbcType=VARCHAR},
|
|
|
client_type = #{clientType,jdbcType=VARCHAR},
|
|
|
advertiser_id = #{advertiserId,jdbcType=VARCHAR},
|
|
|
click_id = #{clickId,jdbcType=VARCHAR},
|
|
|
create_time = #{createTime,jdbcType=INTEGER}
|
|
|
where id = #{id,jdbcType=BIGINT}
|
|
|
</update>
|
|
|
</mapper> |
|
|
\ No newline at end of file |
...
|
...
|
|