ParameterMakeMapper.xml 3.38 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.ParameterMakeMapper">
	<resultMap id="BaseResultMap" type="com.yoho.search.dal.model.ParameterMake">
		<id column="id" property="id" jdbcType="INTEGER" />
		<result column="standard_id" property="standardId" jdbcType="INTEGER" />
		<result column="parameter_value" property="parameterValue"
			jdbcType="VARCHAR" />
		<result column="order_by" property="orderBy" jdbcType="INTEGER" />
	</resultMap>
	<sql id="Base_Column_List">
		id, standard_id, parameter_value, order_by
	</sql>
	<select id="selectByPrimaryKey" resultMap="BaseResultMap"
		parameterType="java.lang.Integer">
		select
		<include refid="Base_Column_List" />
		from parameter_make
		where id = #{id,jdbcType=INTEGER}
	</select>
	<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"
		timeout="20000">
		delete from parameter_make
		where id = #{id,jdbcType=INTEGER}
	</delete>
	<insert id="insert" parameterType="com.yoho.search.dal.model.ParameterMake"
		timeout="20000">
		insert ignore into parameter_make (id, standard_id, parameter_value,
		order_by)
		values (#{id,jdbcType=INTEGER}, #{standardId,jdbcType=INTEGER},
		#{parameterValue,jdbcType=VARCHAR},
		#{orderBy,jdbcType=INTEGER})
	</insert>
	<insert id="insertSelective" parameterType="com.yoho.search.dal.model.ParameterMake"
		timeout="20000">
		insert ignore into parameter_make
		<trim prefix="(" suffix=")" suffixOverrides=",">
			<if test="id != null">
				id,
			</if>
			<if test="standardId != null">
				standard_id,
			</if>
			<if test="parameterValue != null">
				parameter_value,
			</if>
			<if test="orderBy != null">
				order_by,
			</if>
		</trim>
		<trim prefix="values (" suffix=")" suffixOverrides=",">
			<if test="id != null">
				#{id,jdbcType=INTEGER},
			</if>
			<if test="standardId != null">
				#{standardId,jdbcType=INTEGER},
			</if>
			<if test="parameterValue != null">
				#{parameterValue,jdbcType=VARCHAR},
			</if>
			<if test="orderBy != null">
				#{orderBy,jdbcType=INTEGER},
			</if>
		</trim>
	</insert>
	<update id="updateByPrimaryKeySelective" parameterType="com.yoho.search.dal.model.ParameterMake"
		timeout="20000">
		update parameter_make
		<set>
			<if test="standardId != null">
				standard_id = #{standardId,jdbcType=INTEGER},
			</if>
			<if test="parameterValue != null">
				parameter_value = #{parameterValue,jdbcType=VARCHAR},
			</if>
			<if test="orderBy != null">
				order_by = #{orderBy,jdbcType=INTEGER},
			</if>
		</set>
		where id = #{id,jdbcType=INTEGER}
	</update>
	<update id="updateByPrimaryKey" parameterType="com.yoho.search.dal.model.ParameterMake"
		timeout="20000">
		update parameter_make
		set standard_id = #{standardId,jdbcType=INTEGER},
		parameter_value = #{parameterValue,jdbcType=VARCHAR},
		order_by = #{orderBy,jdbcType=INTEGER}
		where id = #{id,jdbcType=INTEGER}
	</update>
	<select id="getAll" resultMap="BaseResultMap" timeout="20000">
		select
		<include refid="Base_Column_List" />
		from parameter_make
	</select>
	<select id="selectTotalCount" resultType="java.lang.Integer" timeout="20000">
		SELECT count(1) FROM parameter_make
	</select>
	<select id="selectPageLists" resultMap="BaseResultMap" timeout="20000">
		select
		<include refid="Base_Column_List" />
		from parameter_make limit #{offset},#{pageSize}
	</select>
</mapper>