ChannelGroupMapper.xml 10.6 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="sms_number" property="smsNumber" jdbcType="INTEGER" />
    <result column="success_count" property="successCount" jdbcType="INTEGER" />
    <result column="create_time" property="createTime" jdbcType="INTEGER" />
    <result column="create_user" property="createUser" jdbcType="INTEGER" />
    <result column="create_userName" property="createUserName" jdbcType="VARCHAR" />
    <result column="content" property="content" jdbcType="VARCHAR" />
    <result column="status" property="status" jdbcType="INTEGER" />
    <result column="send_time" property="sendTime" jdbcType="INTEGER" />
    <result column="send_user" property="sendUser" jdbcType="INTEGER" />
    <result column="send_userName" property="sendUserName" jdbcType="VARCHAR" />
    <result column="update_time" property="updateTime" jdbcType="INTEGER" />
    <result column="fail_count" property="failCount" jdbcType="INTEGER" />
    <result column="query_count" property="queryCount" jdbcType="INTEGER" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, name, group_number,sms_number,success_count, create_time, create_user, create_userName, content,status,send_time,send_user,send_userName,update_time,fail_count,query_count
  </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" keyProperty="id" useGeneratedKeys="true" >
    insert into channel_group (id, name, content,group_number,sms_number,success_count,
    create_time, create_user, create_userName,status,send_time,send_user,send_userName,update_time,fail_count,query_count
    )
    values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{content,jdbcType=VARCHAR},#{groupNumber,jdbcType=INTEGER},#{smsNumber,jdbcType=INTEGER},#{successCount,jdbcType=INTEGER},
    #{createTime,jdbcType=INTEGER}, #{createUser,jdbcType=INTEGER}, #{createUserName,jdbcType=VARCHAR}, #{status,jdbcType=INTEGER},
    #{sendTime,jdbcType=INTEGER}, #{sendUser,jdbcType=INTEGER}, #{sendUserName,jdbcType=VARCHAR}, #{updateTime,jdbcType=INTEGER},#{failCount,jdbcType=INTEGER},#{queryCount,jdbcType=INTEGER}
    )
  </insert>
  <insert id="insertSelective" parameterType="com.yoho.unions.dal.model.ChannelGroup" keyProperty="id" useGeneratedKeys="true">
    insert into channel_group
    <trim prefix="(" suffix=")" suffixOverrides="," >
      <if test="id != null" >
        id,
      </if>
      <if test="name != null" >
        name,
      </if>
      <if test="content != null" >
        content,
      </if>
      <if test="groupNumber != null" >
        group_number,
      </if>
      <if test="smsNumber != null" >
        sms_number,
      </if>
      <if test="successCount != null" >
        success_count,
      </if>
      <if test="failCount != null" >
        fail_count,
      </if>
      <if test="queryCount != null" >
        query_count,
      </if>
      <if test="createTime != null" >
        create_time,
      </if>
      <if test="createUser != null" >
        create_user,
      </if>
      <if test="createUserName != null" >
        create_userName,
      </if>
      <if test="status != null" >
        status,
      </if>
      <if test="sendTime != null" >
        send_time,
      </if>
      <if test="sendUser != null" >
        send_user,
      </if>
      <if test="sendUserName != null" >
        send_userName,
      </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="content != null" >
        #{content,jdbcType=VARCHAR},
      </if>
      <if test="groupNumber != null" >
        #{groupNumber,jdbcType=INTEGER},
      </if>
      <if test="smsNumber != null" >
        #{smsNumber,jdbcType=INTEGER},
      </if>
      <if test="successCount != null" >
        #{successCount,jdbcType=INTEGER},
      </if>
      <if test="failCount != null" >
        #{failCount,jdbcType=INTEGER},
      </if>
      <if test="queryCount != null" >
        #{queryCount,jdbcType=INTEGER},
      </if>
      <if test="createTime != null" >
        #{createTime,jdbcType=INTEGER},
      </if>
      <if test="createUser != null" >
        #{createUser,jdbcType=INTEGER},
      </if>
      <if test="createUserName != null" >
        #{createUserName,jdbcType=VARCHAR},
      </if>
      <if test="status != null" >
        #{status,jdbcType=VARCHAR},
      </if>
      <if test="sendTime != null" >
        #{sendTime,jdbcType=INTEGER},
      </if>
      <if test="sendUser != null" >
        #{sendUser,jdbcType=INTEGER},
      </if>
      <if test="sendUserName != null" >
        #{sendUserName,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="content != null" >
        content = #{content,jdbcType=VARCHAR},
      </if>
      <if test="groupNumber != null" >
      group_number = #{groupNumber,jdbcType=INTEGER},
      </if>
      <if test="smsNumber != null" >
        sms_number = #{smsNumber,jdbcType=INTEGER},
      </if>
      <if test="successCount != null" >
        success_count = #{successCount,jdbcType=INTEGER},
      </if>
      <if test="failCount != null" >
        fail_count = #{failCount,jdbcType=INTEGER},
      </if>
      <if test="queryCount != null" >
        query_count = #{failCount,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="createUserName != null" >
        create_userName = #{createUserName,jdbcType=VARCHAR},
      </if>
      <if test="status != null" >
        status = #{status,jdbcType=VARCHAR},
      </if>
      <if test="sendTime != null" >
        send_time = #{sendTime,jdbcType=INTEGER},
      </if>
      <if test="sendUser != null" >
        send_user = #{sendUser,jdbcType=INTEGER},
      </if>
      <if test="sendUserName != null" >
        send_userName = #{sendUserName,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},
    content = #{content,jdbcType=VARCHAR},
    group_number = #{groupNumber,jdbcType=INTEGER},
    sms_number = #{smsNumber,jdbcType=INTEGER},
    success_count = #{successCount,jdbcType=INTEGER},
    create_time = #{createTime,jdbcType=INTEGER},
    create_user = #{createUser,jdbcType=INTEGER},
    create_userName = #{createUserName,jdbcType=VARCHAR},
    status = #{status,jdbcType=INTEGER},
    send_time = #{sendTime,jdbcType=INTEGER},
    send_user = #{sendUser,jdbcType=INTEGER},
    send_userName = #{sendUserName,jdbcType=VARCHAR},
    update_time = #{updateTime,jdbcType=INTEGER},
    fail_count = #{failCount,jdbcType=INTEGER},
    query_count = #{queryCount,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
  <select id ="selectListCountByParam" resultType="java.lang.Integer">
    select count(*)  from channel_group
    <where>
      <if test="name != null" >
        name LIKE CONCAT('%',#{name,jdbcType=VARCHAR},'%')
      </if>
      <if test="createTimeBegin != null" >
        and create_time>=#{createTimeBegin,jdbcType=INTEGER}
      </if>
      <if test="createTimeEnd != null" >
        and create_time &lt;=#{createTimeEnd,jdbcType=INTEGER}
      </if>
      <if test="createUserName != null" >
        and create_userName LIKE CONCAT('%',#{createUserName,jdbcType=VARCHAR},'%')
      </if>
      <if test="status != null" >
        and status !=0
      </if>
      <if test="smsNumber != null" >
        and sms_number = #{smsNumber,jdbcType=INTEGER}
      </if>
      <if test="sendTimeBegin != null" >
        and send_time >= #{sendTimeBegin,jdbcType=INTEGER}
      </if>
      <if test="sendTimeEnd != null" >
        and  send_time &lt; #{sendTimeEnd,jdbcType=INTEGER}
      </if>
      <if test="sendUserName != null" >
        and send_userName LIKE CONCAT('%',#{sendUserName,jdbcType=VARCHAR},'%')
      </if>
    </where>
  </select>
  <select id="selectListByParam" resultMap="BaseResultMap" parameterType="com.yoho.service.model.union.response.ChannelGroupRspBO" >
    select 	 <include refid="Base_Column_List" />
    from channel_group
    <where>
      <if test="name != null" >
        name LIKE CONCAT('%',#{name,jdbcType=VARCHAR},'%')
      </if>
      <if test="createTimeBegin != null" >
        and create_time>=#{createTimeBegin,jdbcType=INTEGER}
      </if>
      <if test="createTimeEnd != null" >
        and create_time &lt;=#{createTimeEnd,jdbcType=INTEGER}
      </if>
      <if test="createUserName != null" >
        and create_userName LIKE CONCAT('%',#{createUserName,jdbcType=VARCHAR},'%')
      </if>
      <if test="status != null" >
        and status !=0
      </if>
      <if test="smsNumber != null" >
        and sms_number = #{smsNumber,jdbcType=INTEGER}
      </if>
      <if test="sendTimeBegin != null" >
        and send_time >= #{sendTimeBegin,jdbcType=INTEGER}
      </if>
      <if test="sendTimeEnd != null" >
        and  send_time &lt; #{sendTimeEnd,jdbcType=INTEGER}
      </if>
      <if test="sendUserName != null" >
        and send_userName LIKE CONCAT('%',#{sendUserName,jdbcType=VARCHAR},'%')
      </if>
    </where>
    ORDER BY create_time DESC limit #{start,jdbcType=INTEGER}, #{size,jdbcType=INTEGER}
  </select>
</mapper>