...
|
...
|
@@ -4,6 +4,7 @@ |
|
|
<resultMap id="BaseResultMap" type="com.yoho.unions.dal.model.UnionActivity" >
|
|
|
<id column="id" property="id" jdbcType="BIGINT" />
|
|
|
<result column="udid" property="udid" jdbcType="VARCHAR" />
|
|
|
<result column="muid" property="muid" 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" />
|
...
|
...
|
@@ -11,7 +12,7 @@ |
|
|
<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
|
|
|
id, udid, muid, union_type, client_type, advertiser_id, click_id, create_time
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectByUdid" resultMap="BaseResultMap">
|
...
|
...
|
@@ -20,12 +21,12 @@ |
|
|
where udid = #{udid} limit 1
|
|
|
</select>
|
|
|
<insert id="insert" parameterType="com.yoho.unions.dal.model.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 into union_activity (id, udid, muid,
|
|
|
union_type, client_type, advertiser_id,
|
|
|
click_id, create_time)
|
|
|
values (#{id,jdbcType=BIGINT}, #{udid,jdbcType=VARCHAR}, #{muid,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.model.UnionActivity" >
|
|
|
insert into union_activity
|
...
|
...
|
@@ -36,6 +37,9 @@ |
|
|
<if test="udid != null" >
|
|
|
udid,
|
|
|
</if>
|
|
|
<if test="muid != null" >
|
|
|
muid,
|
|
|
</if>
|
|
|
<if test="unionType != null" >
|
|
|
union_type,
|
|
|
</if>
|
...
|
...
|
@@ -59,6 +63,9 @@ |
|
|
<if test="udid != null" >
|
|
|
#{udid,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="muid != null" >
|
|
|
#{muid,jdbcType=VARCHAR},
|
|
|
</if>
|
|
|
<if test="unionType != null" >
|
|
|
#{unionType,jdbcType=VARCHAR},
|
|
|
</if>
|
...
|
...
|
|