UnionActivityMapper.xml 3.03 KB
<?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.IUnionActivityDAO" >
  <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" />
    <result column="click_id" property="clickId" jdbcType="VARCHAR" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, udid, muid, union_type, client_type, advertiser_id, click_id, create_time
  </sql>

  <select id="selectByUdid" resultMap="BaseResultMap">
    select  <include refid="Base_Column_List" />
    from union_activity
    where udid = #{udid} limit 1
  </select>
  <insert id="insert" parameterType="com.yoho.unions.dal.model.UnionActivity" >
    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
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="udid != null" >
        udid,
      </if>
      <if test="muid != null" >
        muid,
      </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="muid != null" >
        #{muid,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>

</mapper>