AppGameItemMapper.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE mapper
  3. PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
  4. "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  5. <mapper namespace="com.game.business.mapper.AppGameItemMapper">
  6. <resultMap type="com.game.business.domain.AppGameItem" id="AppGameItemResult">
  7. <result property="id" column="id" />
  8. <result property="gameId" column="game_id" />
  9. <result property="itemName" column="item_name" />
  10. <result property="itemMultiple" column="item_multiple" />
  11. <result property="itemLocation" column="item_location" />
  12. <result property="lotteryCount" column="lottery_count" />
  13. <result property="consecutive" column="consecutive" />
  14. </resultMap>
  15. <sql id="selectAppGameItemVo">
  16. select id, game_id, item_name, item_multiple, item_location, lottery_count, consecutive from app_game_item
  17. </sql>
  18. <select id="selectAppGameItemList" parameterType="com.game.business.domain.AppGameItem" resultMap="AppGameItemResult">
  19. <include refid="selectAppGameItemVo"/>
  20. <where>
  21. <if test="gameId != null "> and game_id = #{gameId}</if>
  22. <if test="itemName != null and itemName != ''"> and item_name like concat('%', #{itemName}, '%')</if>
  23. <if test="itemMultiple != null "> and item_multiple = #{itemMultiple}</if>
  24. <if test="itemLocation != null and itemLocation != ''"> and item_location = #{itemLocation}</if>
  25. </where>
  26. </select>
  27. <select id="selectAppGameItemById" parameterType="Long" resultMap="AppGameItemResult">
  28. <include refid="selectAppGameItemVo"/>
  29. where id = #{id}
  30. </select>
  31. <insert id="insertAppGameItem" parameterType="com.game.business.domain.AppGameItem" useGeneratedKeys="true" keyProperty="id">
  32. insert into app_game_item
  33. <trim prefix="(" suffix=")" suffixOverrides=",">
  34. <if test="gameId != null">game_id,</if>
  35. <if test="itemName != null">item_name,</if>
  36. <if test="itemMultiple != null">item_multiple,</if>
  37. <if test="itemLocation != null">item_location,</if>
  38. <if test="lotteryCount != null">#{lottery_count},</if>
  39. <if test="consecutive != null">#{consecutive},</if>
  40. </trim>
  41. <trim prefix="values (" suffix=")" suffixOverrides=",">
  42. <if test="gameId != null">#{gameId},</if>
  43. <if test="itemName != null">#{itemName},</if>
  44. <if test="itemMultiple != null">#{itemMultiple},</if>
  45. <if test="itemLocation != null">#{itemLocation},</if>
  46. <if test="lotteryCount != null">#{lotteryCount},</if>
  47. <if test="consecutive != null">#{consecutive},</if>
  48. </trim>
  49. </insert>
  50. <update id="updateAppGameItem" parameterType="com.game.business.domain.AppGameItem">
  51. update app_game_item
  52. <trim prefix="SET" suffixOverrides=",">
  53. <if test="gameId != null">game_id = #{gameId},</if>
  54. <if test="itemName != null">item_name = #{itemName},</if>
  55. <if test="itemMultiple != null">item_multiple = #{itemMultiple},</if>
  56. <if test="itemLocation != null">item_location = #{itemLocation},</if>
  57. <if test="lotteryCount != null">lottery_count = #{lotteryCount},</if>
  58. <if test="consecutive != null">consecutive = #{consecutive},</if>
  59. </trim>
  60. where id = #{id}
  61. </update>
  62. <delete id="deleteAppGameItemById" parameterType="Long">
  63. delete from app_game_item where id = #{id}
  64. </delete>
  65. <delete id="deleteAppGameItemByIds" parameterType="String">
  66. delete from app_game_item where id in
  67. <foreach item="id" collection="array" open="(" separator="," close=")">
  68. #{id}
  69. </foreach>
  70. </delete>
  71. <update id="updateLotteryCount" parameterType="com.game.business.domain.AppGameItem">
  72. update app_game_item set lottery_count = lottery_count + 1
  73. where game_id = #{gameId} and item_location = #{itemLocation}
  74. </update>
  75. <update id="updateConsecutive" parameterType="com.game.business.dto.AppItemCountDTO">
  76. update app_game_item set consecutive = consecutive + 1
  77. where game_id = #{gameId} and item_location = #{itemLocation} and consecutive &lt; #{consecutive}
  78. </update>
  79. </mapper>