|
@@ -0,0 +1,83 @@
|
|
|
+<?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.enteprise.priceindex.mapper.PriceIndexMapper">
|
|
|
+
|
|
|
+ <resultMap type="PriceIndex" id="PriceIndexResult">
|
|
|
+ <result property="id" column="id" />
|
|
|
+ <result property="name" column="name" />
|
|
|
+ <result property="month" column="month" />
|
|
|
+ <result property="year" column="year" />
|
|
|
+ <result property="unit" column="unit" />
|
|
|
+ <result property="creator" column="creator" />
|
|
|
+ <result property="index" column="index" />
|
|
|
+ </resultMap>
|
|
|
+
|
|
|
+ <sql id="selectPriceIndexVo">
|
|
|
+ select id, name, month, year, unit, creator, index from price_index
|
|
|
+ </sql>
|
|
|
+
|
|
|
+ <select id="selectPriceIndexList" parameterType="PriceIndex" resultMap="PriceIndexResult">
|
|
|
+ <include refid="selectPriceIndexVo"/>
|
|
|
+ <where>
|
|
|
+ <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
|
|
|
+ <if test="month != null "> and month = #{month}</if>
|
|
|
+ <if test="year != null "> and year = #{year}</if>
|
|
|
+ <if test="unit != null and unit != ''"> and unit = #{unit}</if>
|
|
|
+ <if test="creator != null and creator != ''"> and creator = #{creator}</if>
|
|
|
+ <if test="index != null "> and index = #{index}</if>
|
|
|
+ </where>
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <select id="selectPriceIndexById" parameterType="Long" resultMap="PriceIndexResult">
|
|
|
+ <include refid="selectPriceIndexVo"/>
|
|
|
+ where id = #{id}
|
|
|
+ </select>
|
|
|
+
|
|
|
+ <insert id="insertPriceIndex" parameterType="PriceIndex">
|
|
|
+ insert into price_index
|
|
|
+ <trim prefix="(" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id != null">id,</if>
|
|
|
+ <if test="name != null">name,</if>
|
|
|
+ <if test="month != null">month,</if>
|
|
|
+ <if test="year != null">year,</if>
|
|
|
+ <if test="unit != null">unit,</if>
|
|
|
+ <if test="creator != null">creator,</if>
|
|
|
+ <if test="index != null">index,</if>
|
|
|
+ </trim>
|
|
|
+ <trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
+ <if test="id != null">#{id},</if>
|
|
|
+ <if test="name != null">#{name},</if>
|
|
|
+ <if test="month != null">#{month},</if>
|
|
|
+ <if test="year != null">#{year},</if>
|
|
|
+ <if test="unit != null">#{unit},</if>
|
|
|
+ <if test="creator != null">#{creator},</if>
|
|
|
+ <if test="index != null">#{index},</if>
|
|
|
+ </trim>
|
|
|
+ </insert>
|
|
|
+
|
|
|
+ <update id="updatePriceIndex" parameterType="PriceIndex">
|
|
|
+ update price_index
|
|
|
+ <trim prefix="SET" suffixOverrides=",">
|
|
|
+ <if test="name != null">name = #{name},</if>
|
|
|
+ <if test="month != null">month = #{month},</if>
|
|
|
+ <if test="year != null">year = #{year},</if>
|
|
|
+ <if test="unit != null">unit = #{unit},</if>
|
|
|
+ <if test="creator != null">creator = #{creator},</if>
|
|
|
+ <if test="index != null">index = #{index},</if>
|
|
|
+ </trim>
|
|
|
+ where id = #{id}
|
|
|
+ </update>
|
|
|
+
|
|
|
+ <delete id="deletePriceIndexById" parameterType="Long">
|
|
|
+ delete from price_index where id = #{id}
|
|
|
+ </delete>
|
|
|
+
|
|
|
+ <delete id="deletePriceIndexByIds" parameterType="String">
|
|
|
+ delete from price_index where id in
|
|
|
+ <foreach item="id" collection="array" open="(" separator="," close=")">
|
|
|
+ #{id}
|
|
|
+ </foreach>
|
|
|
+ </delete>
|
|
|
+</mapper>
|