Authored by wangshusheng

Merge branch 'dev-kanjia' into dev6.8.2

... ... @@ -52,7 +52,7 @@
set help_count = help_count+1, update_time= UNIX_TIMESTAMP()
where user_id = #{userId,jdbcType=INTEGER}
and activity_id = #{activityId,jdbcType=INTEGER}
and productSkn = #{productSkn,jdbcType=INTEGER}
and product_skn = #{productSkn,jdbcType=INTEGER}
</update>
<update id="updateDecreaseUseCount" >
... ... @@ -60,7 +60,7 @@
set use_count = use_count-1, update_time= UNIX_TIMESTAMP()
where user_id = #{userId,jdbcType=INTEGER}
and activity_id = #{activityId,jdbcType=INTEGER}
and productSkn = #{productSkn,jdbcType=INTEGER}
and product_skn = #{productSkn,jdbcType=INTEGER}
</update>
<update id="updateIncreaseUseCount" >
... ... @@ -68,6 +68,6 @@
set use_count = use_count+1, update_time= UNIX_TIMESTAMP()
where user_id = #{userId,jdbcType=INTEGER}
and activity_id = #{activityId,jdbcType=INTEGER}
and productSkn = #{productSkn,jdbcType=INTEGER}
and product_skn = #{productSkn,jdbcType=INTEGER}
</update>
</mapper>
\ No newline at end of file
... ...