TblSortMapper.xml 3.68 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.search.dal.TblSortMapper">
    <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.TblSort">
        <id column="sort_id" property="sortId" jdbcType="INTEGER"/>
        <result column="sort_name" property="sortName" jdbcType="VARCHAR"/>
        <result column="parent_id" property="parentId" jdbcType="INTEGER"/>
        <result column="weight" property="weight" jdbcType="INTEGER"/>
        <result column="tariff" property="tariff" jdbcType="DOUBLE"/>
        <result column="sort_level" property="sortLevel" jdbcType="INTEGER"/>
        <result column="fourpx_sort" property="fourpxSort" jdbcType="VARCHAR"/>
        <result column="create_time" property="createTime" jdbcType="INTEGER"/>
        <result column="update_time" property="updateTime" jdbcType="INTEGER"/>
    </resultMap>

    <sql id="Base_Column_List">
        sort_id, sort_name, parent_id, weight, tariff, sort_level, fourpx_sort, create_time,
        update_time
    </sql>

    <select id="selectByPrimaryKey" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select
        <include refid="Base_Column_List"/>
        from tbl_sort
        where sort_id = #{sortId,jdbcType=INTEGER}
    </select>

    <select id="selectAll" resultMap="BaseResultMap" parameterType="java.lang.Integer">
        select
        <include refid="Base_Column_List"/>
        from tbl_sort
        where 1=1
    </select>

    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
        delete from tbl_sort
        where sort_id = #{sortId,jdbcType=INTEGER}
    </delete>

    <insert id="insert" parameterType="com.yoho.search.dal.model.TblSort">
        insert into tbl_sort (sort_id, sort_name, parent_id,
        weight, tariff, sort_level,
        fourpx_sort, create_time, update_time
        )
        values (#{sortId,jdbcType=INTEGER}, #{sortName,jdbcType=VARCHAR}, #{parentId,jdbcType=INTEGER},
        #{weight,jdbcType=INTEGER}, #{tariff,jdbcType=REAL}, #{sortLevel,jdbcType=SMALLINT},
        #{fourpxSort,jdbcType=VARCHAR}, #{createTime,jdbcType=INTEGER}, #{updateTime,jdbcType=INTEGER}
        )
    </insert>


    <update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.TblSort">
        update tbl_sort
        <set>
            <if test="sortName != null">
                sort_name = #{sortName,jdbcType=VARCHAR},
            </if>
            <if test="parentId != null">
                parent_id = #{parentId,jdbcType=INTEGER},
            </if>
            <if test="weight != null">
                weight = #{weight,jdbcType=INTEGER},
            </if>
            <if test="tariff != null">
                tariff = #{tariff,jdbcType=REAL},
            </if>
            <if test="sortLevel != null">
                sort_level = #{sortLevel,jdbcType=SMALLINT},
            </if>
            <if test="fourpxSort != null">
                fourpx_sort = #{fourpxSort,jdbcType=VARCHAR},
            </if>
            <if test="createTime != null">
                create_time = #{createTime,jdbcType=INTEGER},
            </if>
            <if test="updateTime != null">
                update_time = #{updateTime,jdbcType=INTEGER},
            </if>
        </set>
        where sort_id = #{sortId,jdbcType=INTEGER}
    </update>
    
    <select id="selectCount" resultType="java.lang.Integer" timeout="20000">
		select count(*) from tbl_sort
	</select>
	
	<select id="selectPageList" resultMap="BaseResultMap" timeout="20000">
		select
		<include refid="Base_Column_List" />
		from tbl_sort limit #{offset},#{pageSize}
	</select>
    
</mapper>