ChannelGroupMapper.xml 6.54 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.IChannelGroupDAO" >
  <resultMap id="BaseResultMap" type="com.yoho.unions.dal.model.ChannelGroup" >
    <id column="id" property="id" jdbcType="INTEGER" />
    <result column="name" property="name" jdbcType="VARCHAR" />
    <result column="group_number" property="groupNumber" jdbcType="INTEGER" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
    <result column="create_user" property="createUser" jdbcType="INTEGER" />
    <result column="sms_number" property="smsNumber" jdbcType="INTEGER" />
    <result column="send_time" property="sendTime" jdbcType="INTEGER" />
    <result column="send_user" property="sendUser" jdbcType="INTEGER" />
    <result column="content" property="content" jdbcType="VARCHAR" />
    <result column="update_time" property="updateTime" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, name, group_number, create_time, create_user, sms_number, send_time, send_user, 
    content, update_time
  </sql>
  <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer" >
    select 
    <include refid="Base_Column_List" />
    from channel_group
    where id = #{id,jdbcType=INTEGER}
  </select>
  <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" >
    delete from channel_group
    where id = #{id,jdbcType=INTEGER}
  </delete>
  <insert id="insert" parameterType="com.yoho.unions.dal.model.ChannelGroup" >
    insert into channel_group (id, name, group_number, 
      create_time, create_user, sms_number, 
      send_time, send_user, content, 
      update_time)
    values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{groupNumber,jdbcType=INTEGER}, 
      #{createTime,jdbcType=INTEGER}, #{createUser,jdbcType=INTEGER}, #{smsNumber,jdbcType=INTEGER}, 
      #{sendTime,jdbcType=INTEGER}, #{sendUser,jdbcType=INTEGER}, #{content,jdbcType=VARCHAR}, 
      #{updateTime,jdbcType=INTEGER})
  </insert>
  <insert id="insertSelective" parameterType="com.yoho.unions.dal.model.ChannelGroup" >
    insert into channel_group
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="name != null" >
        name,
      </if>
      <if test="groupNumber != null" >
        group_number,
      </if>
      <if test="createTime != null" >
        create_time,
      </if>
      <if test="createUser != null" >
        create_user,
      </if>
      <if test="smsNumber != null" >
        sms_number,
      </if>
      <if test="sendTime != null" >
        send_time,
      </if>
      <if test="sendUser != null" >
        send_user,
      </if>
      <if test="content != null" >
        content,
      </if>
      <if test="updateTime != null" >
        update_time,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        #{id,jdbcType=INTEGER},
      </if>
      <if test="name != null" >
        #{name,jdbcType=VARCHAR},
      </if>
      <if test="groupNumber != null" >
        #{groupNumber,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        #{createTime,jdbcType=INTEGER},
      </if>
      <if test="createUser != null" >
        #{createUser,jdbcType=INTEGER},
      </if>
      <if test="smsNumber != null" >
        #{smsNumber,jdbcType=INTEGER},
      </if>
      <if test="sendTime != null" >
        #{sendTime,jdbcType=INTEGER},
      </if>
      <if test="sendUser != null" >
        #{sendUser,jdbcType=INTEGER},
      </if>
      <if test="content != null" >
        #{content,jdbcType=VARCHAR},
      </if>
      <if test="updateTime != null" >
        #{updateTime,jdbcType=INTEGER},
      </if>
    </trim>
  </insert>
  <update id="updateByPrimaryKeySelective" parameterType="com.yoho.unions.dal.model.ChannelGroup" >
    update channel_group
    <set >
      <if test="name != null" >
        name = #{name,jdbcType=VARCHAR},
      </if>
      <if test="groupNumber != null" >
        group_number = #{groupNumber,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        create_time = #{createTime,jdbcType=INTEGER},
      </if>
      <if test="createUser != null" >
        create_user = #{createUser,jdbcType=INTEGER},
      </if>
      <if test="smsNumber != null" >
        sms_number = #{smsNumber,jdbcType=INTEGER},
      </if>
      <if test="sendTime != null" >
        send_time = #{sendTime,jdbcType=INTEGER},
      </if>
      <if test="sendUser != null" >
        send_user = #{sendUser,jdbcType=INTEGER},
      </if>
      <if test="content != null" >
        content = #{content,jdbcType=VARCHAR},
      </if>
      <if test="updateTime != null" >
        update_time = #{updateTime,jdbcType=INTEGER},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateByPrimaryKey" parameterType="com.yoho.unions.dal.model.ChannelGroup" >
    update channel_group
    set name = #{name,jdbcType=VARCHAR},
      group_number = #{groupNumber,jdbcType=INTEGER},
      create_time = #{createTime,jdbcType=INTEGER},
      create_user = #{createUser,jdbcType=INTEGER},
      sms_number = #{smsNumber,jdbcType=INTEGER},
      send_time = #{sendTime,jdbcType=INTEGER},
      send_user = #{sendUser,jdbcType=INTEGER},
      content = #{content,jdbcType=VARCHAR},
      update_time = #{updateTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
  <select id="getChannelGroupList" resultMap="BaseResultMap" parameterType="com.yoho.unions.dal.model.ChannelGroup" >
    select
    <include refid="Base_Column_List" />
    from channel_group
    where 1=1
    <if test="channelGroup.name != null" >
     and name = #{channelGroup.name,jdbcType=VARCHAR},
    </if>
    <if test="channelGroup.createTime != null" >
     and create_time>=#{channelGroup.createTime,jdbcType=INTEGER} and create_time &lt;=#{channelGroup.createTime,jdbcType=INTEGER}
    </if>
    <if test="channelGroup.createUser != null" >
      create_user = #{channelGroup.createUser,jdbcType=INTEGER},
    </if>
    <if test="channelGroup.smsNumber != null" >
      sms_number = #{channelGroup.smsNumber,jdbcType=INTEGER},
    </if>
    <if test="channelGroup.sendTime != null" >
      send_time >= #{channelGroup.sendTime,jdbcType=INTEGER} and  send_time &lt; #{channelGroup.sendTime,jdbcType=INTEGER}
    </if>
    <if test="channelGroup.sendUser != null" >
      send_user = #{channelGroup.sendUser,jdbcType=INTEGER},
    </if>
  </select>
</mapper>