ReportMapper.xml 7.25 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.bjivt.entity.showtime.Report">
  <resultMap id="BaseResultMap" type="com.bjivt.entity.showtime.Report">
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="be_user_id" jdbcType="INTEGER" property="beUserId" />
    <result column="reason" jdbcType="VARCHAR" property="reason" />
    <result column="live_id" jdbcType="INTEGER" property="liveId" />
    <result column="user_id" jdbcType="INTEGER" property="userId" />
    <result column="image" jdbcType="VARCHAR" property="image" />
    <result column="create_time" jdbcType="TIMESTAMP" property="createTime" />
    <result column="type" jdbcType="INTEGER" property="type" />
	<result column="dispose" jdbcType="INTEGER" property="dispose" />
	<result column="be_username" jdbcType="VARCHAR" property="beUsername" />
	<result column="username" jdbcType="VARCHAR" property="username" />
	<result column="tel" jdbcType="VARCHAR" property="tel" />
    <result column="dispose_user_id" jdbcType="INTEGER" property="disposeUserId" />
    <result column="disposeUserName" jdbcType="VARCHAR" property="disposeUserName" />
  </resultMap>
  <sql id="Base_Column_List">
    id, be_user_id, reason, live_id, user_id, image, create_time,type,dispose
  </sql>
  <select id="selectById" parameterType="java.lang.Integer" resultMap="BaseResultMap">
    select 
    <include refid="Base_Column_List" />,
    (select name from tbl_user_list where id=tbl_report.be_user_id) be_username,
			(select name from tbl_user_list where id=tbl_report.user_id) username,
			(select msisdn from tbl_user_list where id=tbl_report.user_id) tel
    from tbl_report
    where id = #{id,jdbcType=INTEGER}
  </select>
  <delete id="deleteById" parameterType="java.lang.Integer">
    delete from tbl_report
    where id = #{id,jdbcType=INTEGER}
  </delete>
  <insert id="insert" parameterType="com.bjivt.entity.showtime.Report">
    insert into tbl_report (id, be_user_id, reason, 
      live_id, user_id, image, 
      create_time,type,dispose,dispose_user_id)
    values (#{id,jdbcType=INTEGER}, #{beUserId,jdbcType=INTEGER}, #{reason,jdbcType=VARCHAR}, 
      #{liveId,jdbcType=INTEGER}, #{userId,jdbcType=INTEGER}, #{image,jdbcType=VARCHAR}, 
      #{createTime,jdbcType=TIMESTAMP},#{type,jdbcType=INTEGER}),
		#{dispose,jdbcType=INTEGER},#{disposeUserId,jdbcType=INTEGER})
  </insert>
  <insert id="insertSelective" parameterType="com.bjivt.entity.showtime.Report">
    insert into tbl_report
    <trim prefix="(" suffix=")" suffixOverrides=",">
      <if test="id != null">
        id,
      </if>
      <if test="beUserId != null">
        be_user_id,
      </if>
      <if test="reason != null">
        reason,
      </if>
      <if test="liveId != null">
        live_id,
      </if>
      <if test="userId != null">
        user_id,
      </if>
      <if test="image != null">
        image,
      </if>
      <if test="createTime != null">
        create_time,
      </if>
      	<if test="type != null">
				type,
			</if>
			<if test="dispose != null">
				dispose,
			</if>
        <if test="disposeUserId != null">
            dispose_user_id,
        </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides=",">
      <if test="id != null">
        #{id,jdbcType=INTEGER},
      </if>
      <if test="beUserId != null">
        #{beUserId,jdbcType=INTEGER},
      </if>
      <if test="reason != null">
        #{reason,jdbcType=VARCHAR},
      </if>
      <if test="liveId != null">
        #{liveId,jdbcType=INTEGER},
      </if>
      <if test="userId != null">
        #{userId,jdbcType=INTEGER},
      </if>
      <if test="image != null">
        #{image,jdbcType=VARCHAR},
      </if>
      <if test="createTime != null">
        #{createTime,jdbcType=TIMESTAMP},
      </if>
      	<if test="type != null">
				#{type,jdbcType=INTEGER},
			</if>
			<if test="dispose != null">
				#{dispose,jdbcType=INTEGER},
			</if>
        <if test="disposeUserId != null">
            #{disposeUserId,jdbcType=INTEGER},
        </if>
    </trim>
  </insert>
  <update id="updateByIdSelective" parameterType="com.bjivt.entity.showtime.Report">
    update tbl_report
    <set>
      <if test="beUserId != null">
        be_user_id = #{beUserId,jdbcType=INTEGER},
      </if>
      <if test="reason != null">
        reason = #{reason,jdbcType=VARCHAR},
      </if>
      <if test="liveId != null">
        live_id = #{liveId,jdbcType=INTEGER},
      </if>
      <if test="userId != null">
        user_id = #{userId,jdbcType=INTEGER},
      </if>
      <if test="image != null">
        image = #{image,jdbcType=VARCHAR},
      </if>
      <if test="createTime != null">
        create_time = #{createTime,jdbcType=TIMESTAMP},
      </if>
      <if test="type != null">
				type = #{type,jdbcType=INTEGER},
			</if>
			<if test="dispose != null">
				dispose = #{dispose,jdbcType=INTEGER},
			</if>
        <if test="disposeUserId != null">
            dispose_user_id= #{disposeUserId,jdbcType=INTEGER},
        </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <update id="updateById" parameterType="com.bjivt.entity.showtime.Report">
    update tbl_report
    set be_user_id = #{beUserId,jdbcType=INTEGER},
      reason = #{reason,jdbcType=VARCHAR},
      live_id = #{liveId,jdbcType=INTEGER},
      user_id = #{userId,jdbcType=INTEGER},
      image = #{image,jdbcType=VARCHAR},
      create_time = #{createTime,jdbcType=TIMESTAMP},
      type = #{type,jdbcType=INTEGER},
		dispose = #{dispose,jdbcType=INTEGER},
		dispose_user_id= #{disposeUserId,jdbcType=INTEGER}
    where id = #{id,jdbcType=INTEGER}
  </update>
  <select id="getCountBy" resultType="java.lang.Integer" parameterType="com.bjivt.entity.showtime.Report">
    SELECT
				count(1)
			FROM
				tbl_report
    <trim prefix="where" prefixOverrides="and|or">
      <if test="liveId != null and liveId != -1" >
		        	 and   tbl_report.live_id = #{liveId}
		    	  </if>
      </trim>
  </select>
  
     <select id="findListByMap" resultMap="BaseResultMap" parameterType="com.bjivt.entity.showtime.Report">
     SELECT * from (select 
    	<include refid="Base_Column_List"/>,
    	(select name from tbl_user_list where id=tbl_report.be_user_id) be_username, 
     	(select name from tbl_user_list where id=tbl_report.user_id) username,
     	(select msisdn from tbl_user_list where id=tbl_report.user_id) tel,
        (select type from tbl_live_list where id=tbl_report.live_id) liveType,
         (select `name` from tbl_user_list where id=dispose_user_id) disposeUserName
         FROM tbl_report) a
  	  	<trim prefix="where" prefixOverrides="and|or">
		    <if test="Report.userId != null and Report.userId !=-1">
				and  user_id = #{Report.userId}
			</if>
			<if test="Report.tel != null and Report.tel !=''">
				and tel like '%${Report.tel}%'
			</if>
			<if test="Report.type != null and Report.type !=-1">
				and type = #{Report.type}
			</if>
			<if test="Report.dispose != null and Report.dispose !=-1">
				and dispose = #{Report.dispose}
			</if>
  	  	</trim>
  	  	order by create_time DESC
	    <if test="page != null and page !=''">
	    <if test="page.from != null and page.size != null">
          limit #{page.from},#{page.size}
   		</if>
   		</if>
  </select>
</mapper>