ConfigMapper.xml 3.93 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.Config">
  <resultMap id="BaseResultMap" type="com.bjivt.entity.showtime.Config">
    <id column="id" jdbcType="INTEGER" property="id" />
    <result column="key" jdbcType="VARCHAR" property="key" />
    <result column="value" jdbcType="VARCHAR" property="value" />
    <result column="addition_data" jdbcType="VARCHAR" property="additionData" />
    <result column="type" jdbcType="INTEGER" property="type" />
    <result column="enable" jdbcType="INTEGER" property="enable" />
    <result column="con_url" jdbcType="VARCHAR" property="conUrl" />
  </resultMap>
  <sql id="Base_Column_List">
    id, `key`, `value`, addition_data, type,enabled,con_url
  </sql>
  <select id="selectById" parameterType="java.lang.Integer" resultMap="BaseResultMap">
    select 
    <include refid="Base_Column_List" />
    from tbl_config
    where id = #{id,jdbcType=INTEGER}
  </select>
  <delete id="deleteById" parameterType="java.lang.Integer">
    delete from tbl_config
    where id = #{id,jdbcType=INTEGER}
  </delete>
  <insert id="insertSelective" parameterType="com.bjivt.entity.showtime.Config">
    insert into tbl_config
    <trim prefix="(" suffix=")" suffixOverrides=",">
      <if test="id != null">
        id,
      </if>
      <if test="key != null">
        `key`,
      </if>
      <if test="value != null">
        `value`,
      </if>
      <if test="additionData != null">
        addition_data,
      </if>
      <if test="type != null">
        type,
      </if>
      <if test="enabled != null">
        enabled,
      </if>
      <if test="conUrl != null">
        con_url,
      </if>
    </trim>
    <trim prefix="values (" suffix=")" suffixOverrides=",">
      <if test="id != null">
        #{id,jdbcType=INTEGER},
      </if>
      <if test="key != null">
        #{key,jdbcType=VARCHAR},
      </if>
      <if test="value != null">
        #{value,jdbcType=VARCHAR},
      </if>
      <if test="additionData != null">
        #{additionData,jdbcType=VARCHAR},
      </if>
      <if test="type != null">
        #{type,jdbcType=INTEGER},
      </if>
      <if test="enabled != null">
        #{enabled,jdbcType=INTEGER},
      </if>
      <if test="conUrl != null">
        #{conUrl,jdbcType=VARCHAR},
      </if>
      
    </trim>
  </insert>
  <update id="updateByIdSelective" parameterType="com.bjivt.entity.showtime.Config">
    update tbl_config
    <set>
      <if test="key != null">
        `key` = #{key,jdbcType=VARCHAR},
      </if>
      <if test="value != null">
        `value` = #{value,jdbcType=VARCHAR},
      </if>
      <if test="additionData != null">
        addition_data = #{additionData,jdbcType=VARCHAR},
      </if>
      <if test="type != null">
        type = #{type,jdbcType=INTEGER},
      </if>
      <if test="enabled != null">
        enabled = #{enabled,jdbcType=INTEGER},
      </if>
       <if test="conUrl != null">
        con_url = #{conUrl,jdbcType=VARCHAR},
      </if>
    </set>
    where id = #{id,jdbcType=INTEGER}
  </update>
  <select id="getCountBy" resultType="java.lang.Integer" parameterType="com.bjivt.entity.showtime.Config">
    SELECT
				count(1)
			FROM
				tbl_config
    <trim prefix="where" prefixOverrides="and|or">
      <if test="type != null" >
		        	 and tbl_config.type = #{type}
		    	  </if>
      </trim>
  </select>
  
     <select id="findListByMap" resultMap="BaseResultMap" parameterType="java.util.Map">
     	SELECT
				<include refid="Base_Column_List"/>
			FROM
				tbl_config
  	  	<trim prefix="where" prefixOverrides="and|or">
		  	  	 <if test="Config.type != null" >
		        	 and tbl_config.type= #{Config.type}
		    	  </if>
  	  	</trim>
	    <if test="page != null and page !=''">
	    <if test="page.from != null and page.size != null">
          limit #{page.from},#{page.size}
   		</if>
   		</if>
  </select>
</mapper>