ChannelGroupMapper.xml 7.4 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="create_userName" property="createUserName" jdbcType="VARCHAR" />
    <result column="update_time" property="updateTime" jdbcType="INTEGER" />
  </resultMap>
  <resultMap id="groupResultMap" type="com.yoho.service.model.union.response.ChannelGroupRspBO" extends="BaseResultMap">
    <result column="group_id" property="smsNumber" 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="content" property="content" jdbcType="VARCHAR" />
  </resultMap>
  <sql id="Base_Column_List" >
    id, name, group_number, create_time, create_user, create_userName, 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" keyProperty="id" useGeneratedKeys="true" >
    insert into channel_group (id, name, group_number,
    create_time, create_user, create_userName,update_time
    )
    values (#{id,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}, #{groupNumber,jdbcType=INTEGER},
    #{createTime,jdbcType=INTEGER}, #{createUser,jdbcType=INTEGER}, #{createUserName,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="createUserName != null" >
        create_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="groupNumber != null" >
        #{groupNumber,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="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="createUserName != null" >
        create_userName = #{createUserName,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},
    create_userName = #{createUserName,jdbcType=VARCHAR},
    update_time = #{updateTime,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
  <select id ="selectListCountByParam"  parameterType="java.lang.Integer" resultType="java.lang.Integer">
    select count(*)  from channel_group cg
    left join channel_group_batch  cgb
    on cg.id = cgb.group_id
    <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="smsNumber != null" >
        and cgb.id = #{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="groupResultMap" parameterType="com.yoho.service.model.union.response.ChannelGroupRspBO" >
    select 	    cg.id as id, name, group_number, create_time, create_user, create_userName, cgb.id as group_id, send_time,
    send_user, send_userName, content
    from channel_group cg
    left join channel_group_batch  cgb
    on cg.id = cgb.group_id
    <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="smsNumber != null" >
        and cgb.id = #{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>