|
@@ -11,11 +11,13 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<result property="year" column="year" />
|
|
|
<result property="unit" column="unit" />
|
|
|
<result property="creator" column="creator" />
|
|
|
- <result property="index" column="index" />
|
|
|
+ <result property="indexv" column="indexv" />
|
|
|
+ <result property="industry" column="industry" />
|
|
|
+ <result property="code" column="code" />
|
|
|
</resultMap>
|
|
|
|
|
|
<sql id="selectPriceIndexVo">
|
|
|
- select id, name, month, year, unit, creator, index from price_index
|
|
|
+ select id, name, month, year, unit, creator, indexv,industry,code from price_index
|
|
|
</sql>
|
|
|
|
|
|
<select id="selectPriceIndexList" parameterType="PriceIndex" resultMap="PriceIndexResult">
|
|
@@ -26,7 +28,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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>
|
|
|
+ <if test="indexv != null "> and index = #{indexv}</if>
|
|
|
+ <if test="industry != null "> and industry like concat('%', #{industry}, '%')}</if>
|
|
|
+ <if test="code != null "> and index = #{code}</if>
|
|
|
</where>
|
|
|
</select>
|
|
|
|
|
@@ -44,7 +48,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="year != null">year,</if>
|
|
|
<if test="unit != null">unit,</if>
|
|
|
<if test="creator != null">creator,</if>
|
|
|
- <if test="index != null">index,</if>
|
|
|
+ <if test="indexv != null">indexv,</if>
|
|
|
+ <if test="industry != null">industry,</if>
|
|
|
+ <if test="code != null">code,</if>
|
|
|
</trim>
|
|
|
<trim prefix="values (" suffix=")" suffixOverrides=",">
|
|
|
<if test="id != null">#{id},</if>
|
|
@@ -53,7 +59,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<if test="year != null">#{year},</if>
|
|
|
<if test="unit != null">#{unit},</if>
|
|
|
<if test="creator != null">#{creator},</if>
|
|
|
- <if test="index != null">#{index},</if>
|
|
|
+ <if test="indexv != null">#{indexv},</if>
|
|
|
+ <if test="industry != null">#{industry},</if>
|
|
|
+ <if test="code != null">#{code},</if>
|
|
|
</trim>
|
|
|
</insert>
|
|
|
|
|
@@ -65,7 +73,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
<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>
|
|
|
+ <if test="indexv != null">index = #{indexv},</if>
|
|
|
+ <if test="industry != null">index = #{industry},</if>
|
|
|
+ <if test="code != null">index = #{code},</if>
|
|
|
</trim>
|
|
|
where id = #{id}
|
|
|
</update>
|
|
@@ -83,9 +93,9 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|
|
|
|
|
<!-- 批量插入 -->
|
|
|
<insert id="insertBatch">
|
|
|
- INSERT INTO price_index (id, name, month, year, unit, creator, `indexv`, industry, code) VALUES
|
|
|
+ INSERT INTO price_index (id, name, month, year, unit, creator, indexv, industry, code) VALUES
|
|
|
<foreach collection="list" item="item" separator=",">
|
|
|
- (#{item.id}, #{item.name}, #{item.month}, #{item.year}, #{item.unit}, #{item.creator}, #{item.index}, #{item.industry}, #{item.code})
|
|
|
+ (#{item.id}, #{item.name}, #{item.month}, #{item.year}, #{item.unit}, #{item.creator}, #{item.indexv}, #{item.industry}, #{item.code})
|
|
|
</foreach>
|
|
|
</insert>
|
|
|
|