StyleMapper.xml 1.62 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.StyleMapper">

    <resultMap id="BaseResultMap" type="com.yoho.search.dal.model.Style">
		<id column="id" property="id" jdbcType="INTEGER" />
		<result column="style_name" property="styleName" jdbcType="VARCHAR" />
	</resultMap>

    <sql id="Base_Column_List">
		id, style_name
	</sql>

    <select id="selectByPrimaryKey" resultMap="BaseResultMap"
		parameterType="java.lang.Integer" timeout="20000">
		select
		<include refid="Base_Column_List" />
		from style
		where id = #{id,jdbcType=INTEGER}
        limit 1
	</select>

    <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer" timeout="20000">
		delete from style
		where id = #{id,jdbcType=INTEGER}
	</delete>

    <insert id="insert" parameterType="com.yoho.search.dal.model.Style" timeout="20000">
		insert ignore into style (id, style_name)
		values (#{id,jdbcType=INTEGER}, #{styleName,jdbcType=VARCHAR})
	</insert>

	<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.Style" timeout="20000">
		update style
		<set>
			<if test="styleName != null">
				style_name = #{styleName,jdbcType=VARCHAR},
			</if>
		</set>
		where id = #{id,jdbcType=INTEGER}
	</update>

	<select id="selectCount" resultType="java.lang.Integer" timeout="20000">
		SELECT count(1) FROM style
	</select>

    <select id="selectPageLists" resultMap="BaseResultMap" timeout="20000">
		select
		<include refid="Base_Column_List" />
		from style limit #{offset},#{pageSize}
	</select>
</mapper>