Commit 79118dfd by zhangkb

修改报表3数据批量保存和修改接口

parent b2c0988e
......@@ -38,8 +38,8 @@
#{val.batterAverageIndCount}, #{val.badAverageIndCount}, #{val.rankHeadThreeIndCount},
#{val.rankAfterThreeIndCount}, #{val.indImproveCount}, #{val.indImproveHeadThreeCount},
#{val.indImproveAfterThreeCount}, #{val.indImproveRate}, #{val.effectiveIndCount},
#{val.rankOneCount},#{val.rankTwoCount},#{val.rankThreeCount},#{val.rankLastOneCount},
#{val.rankLastTwoCount},#{val.rankLastThreeCount},#{val.code}
#{indReduceCount},#{val.rankOneCount},#{val.rankTwoCount},#{val.rankThreeCount},
#{val.rankLastOneCount},#{val.rankLastTwoCount},#{val.rankLastThreeCount},#{val.code}
)
</foreach>
</insert>
......@@ -87,6 +87,27 @@
<if test="val.effectiveIndCount != null">
effective_ind_count = #{val.effectiveIndCount},
</if>
<if test="val.indReduceCount != null">
ind_reduce_count = #{val.indReduceCount},
</if>
<if test="val.rankOneCount != null">
rank_one_count = #{val.rankOneCount},
</if>
<if test="val.rankTwoCount != null">
rank_two_count = #{val.rankTwoCount},
</if>
<if test="val.rankThreeCount != null">
rank_three_count = #{val.rankThreeCount},
</if>
<if test="val.rankLastOneCount != null">
rank_last_one_count = #{val.rankLastOneCount},
</if>
<if test="val.rankLastTwoCount != null">
rank_last_two_count = #{val.rankLastTwoCount},
</if>
<if test="val.rankLastThreeCount != null">
rank_last_three_count = #{val.rankLastThreeCount},
</if>
<if test="val.code != null">
code = #{val.code},
</if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment