TbAssetMapper.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  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.ruoyi.asset.mapper.TbAssetMapper">
  6. <resultMap type="TbAsset" id="TbAssetResult">
  7. <result property="id" column="id" />
  8. <result property="barCode" column="bar_code" />
  9. <result property="number" column="number" />
  10. <result property="name" column="name" />
  11. <result property="kind" column="kind" />
  12. <result property="categoryNumber" column="category_number" />
  13. <result property="amount" column="amount" />
  14. <result property="quantity" column="quantity" />
  15. <result property="quantityUnit" column="quantity_unit" />
  16. <result property="buildDate" column="build_date" />
  17. <result property="placeName" column="place_name" />
  18. <result property="purpose" column="purpose" />
  19. <result property="deptId" column="dept_id" />
  20. <result property="registrant" column="registrant" />
  21. <result property="specificationsModel" column="specifications_model" />
  22. <result property="remark" column="remark" />
  23. <result property="manufacturer" column="manufacturer" />
  24. <result property="brand" column="brand" />
  25. <result property="supplier" column="supplier" />
  26. <result property="status" column="status" />
  27. </resultMap>
  28. <sql id="selectTbAssetVo">
  29. select id, bar_code, number, name, kind, category_number, amount, quantity, build_date, place_name, purpose, dept_id, registrant, specifications_model, remark, manufacturer, brand, supplier, status from tb_asset
  30. </sql>
  31. <select id="selectTbAssetList" parameterType="TbAsset" resultMap="TbAssetResult">
  32. <include refid="selectTbAssetVo"/>
  33. <where>
  34. <if test="barCode != null and barCode != ''"> and bar_code = #{barCode}</if>
  35. <if test="number != null and number != ''"> and number = #{number}</if>
  36. <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
  37. <if test="kind != null and kind != ''"> and kind = #{kind}</if>
  38. <if test="categoryNumber != null and categoryNumber != ''"> and category_number = #{categoryNumber}</if>
  39. <if test="buildDate != null "> and build_date = #{buildDate}</if>
  40. <if test="placeName != null and placeName != ''"> and place_name like concat('%', #{placeName}, '%')</if>
  41. <if test="purpose != null and purpose != ''"> and purpose = #{purpose}</if>
  42. <if test="deptId != null "> and dept_id = #{deptId}</if>
  43. <if test="registrant != null and registrant != ''"> and registrant = #{registrant}</if>
  44. <if test="remark != null and remark != ''"> and remark = #{remark}</if>
  45. <if test="manufacturer != null and manufacturer != ''"> and manufacturer = #{manufacturer}</if>
  46. <if test="brand != null and brand != ''"> and brand = #{brand}</if>
  47. <if test="supplier != null and supplier != ''"> and supplier = #{supplier}</if>
  48. <if test="status != null "> and status = #{status}</if>
  49. </where>
  50. </select>
  51. <select id="selectTbAssetById" parameterType="Long" resultMap="TbAssetResult">
  52. <include refid="selectTbAssetVo"/>
  53. where id = #{id}
  54. </select>
  55. <insert id="insertTbAsset" parameterType="TbAsset" useGeneratedKeys="true" keyProperty="id">
  56. insert into tb_asset
  57. <trim prefix="(" suffix=")" suffixOverrides=",">
  58. <if test="barCode != null and barCode != ''">bar_code,</if>
  59. <if test="number != null and number != ''">number,</if>
  60. <if test="name != null and name != ''">name,</if>
  61. <if test="kind != null and kind != ''">kind,</if>
  62. <if test="categoryNumber != null and categoryNumber != ''">category_number,</if>
  63. <if test="amount != null">amount,</if>
  64. <if test="quantity != null">quantity,</if>
  65. <if test="quantityUnit != null">quantity_unit,</if>
  66. <if test="buildDate != null">build_date,</if>
  67. <if test="placeName != null">place_name,</if>
  68. <if test="purpose != null">purpose,</if>
  69. <if test="deptId != null">dept_id,</if>
  70. <if test="registrant != null and registrant != ''">registrant,</if>
  71. <if test="specificationsModel != null and specificationsModel != ''">specifications_model,</if>
  72. <if test="remark != null">remark,</if>
  73. <if test="manufacturer != null">manufacturer,</if>
  74. <if test="brand != null">brand,</if>
  75. <if test="supplier != null">supplier,</if>
  76. <if test="status != null">status,</if>
  77. </trim>
  78. <trim prefix="values (" suffix=")" suffixOverrides=",">
  79. <if test="barCode != null and barCode != ''">#{barCode},</if>
  80. <if test="number != null and number != ''">#{number},</if>
  81. <if test="name != null and name != ''">#{name},</if>
  82. <if test="kind != null and kind != ''">#{kind},</if>
  83. <if test="categoryNumber != null and categoryNumber != ''">#{categoryNumber},</if>
  84. <if test="amount != null">#{amount},</if>
  85. <if test="quantity != null">#{quantity},</if>
  86. <if test="quantityUnit != null">#{quantityUnit},</if>
  87. <if test="buildDate != null">#{buildDate},</if>
  88. <if test="placeName != null">#{placeName},</if>
  89. <if test="purpose != null">#{purpose},</if>
  90. <if test="deptId != null">#{deptId},</if>
  91. <if test="registrant != null and registrant != ''">#{registrant},</if>
  92. <if test="specificationsModel != null and specificationsModel != ''">#{specificationsModel},</if>
  93. <if test="remark != null">#{remark},</if>
  94. <if test="manufacturer != null">#{manufacturer},</if>
  95. <if test="brand != null">#{brand},</if>
  96. <if test="supplier != null">#{supplier},</if>
  97. <if test="status != null">#{status},</if>
  98. </trim>
  99. </insert>
  100. <update id="updateTbAsset" parameterType="TbAsset">
  101. update tb_asset
  102. <trim prefix="SET" suffixOverrides=",">
  103. <if test="barCode != null and barCode != ''">bar_code = #{barCode},</if>
  104. <if test="number != null and number != ''">number = #{number},</if>
  105. <if test="name != null and name != ''">name = #{name},</if>
  106. <if test="kind != null and kind != ''">kind = #{kind},</if>
  107. <if test="categoryNumber != null and categoryNumber != ''">category_number = #{categoryNumber},</if>
  108. <if test="amount != null">amount = #{amount},</if>
  109. <if test="quantity != null">quantity = #{quantity},</if>
  110. <if test="quantityUnit != null">quantity_unit = #{quantityUnit},</if>
  111. <if test="buildDate != null">build_date = #{buildDate},</if>
  112. <if test="placeName != null">place_name = #{placeName},</if>
  113. <if test="purpose != null">purpose = #{purpose},</if>
  114. <if test="deptId != null">dept_id = #{deptId},</if>
  115. <if test="registrant != null and registrant != ''">registrant = #{registrant},</if>
  116. <if test="specificationsModel != null and specificationsModel != ''">specifications_model = #{specificationsModel},</if>
  117. <if test="remark != null">remark = #{remark},</if>
  118. <if test="manufacturer != null">manufacturer = #{manufacturer},</if>
  119. <if test="brand != null">brand = #{brand},</if>
  120. <if test="supplier != null">supplier = #{supplier},</if>
  121. <if test="status != null">status = #{status},</if>
  122. </trim>
  123. where id = #{id}
  124. </update>
  125. <delete id="deleteTbAssetById" parameterType="Long">
  126. delete from tb_asset where id = #{id}
  127. </delete>
  128. <delete id="deleteTbAssetByIds" parameterType="String">
  129. delete from tb_asset where id in
  130. <foreach item="id" collection="array" open="(" separator="," close=")">
  131. #{id}
  132. </foreach>
  133. </delete>
  134. <insert id="replace" parameterType="TbAsset">
  135. replace into tb_asset
  136. <trim prefix="(" suffix=")" suffixOverrides=",">
  137. <if test="barCode != null and barCode != ''">bar_code,</if>
  138. <if test="number != null and number != ''">number,</if>
  139. <if test="name != null and name != ''">name,</if>
  140. <if test="kind != null and kind != ''">kind,</if>
  141. <if test="categoryNumber != null and categoryNumber != ''">category_number,</if>
  142. <if test="amount != null">amount,</if>
  143. <if test="quantity != null">quantity,</if>
  144. <if test="quantityUnit != null">quantity_unit,</if>
  145. <if test="buildDate != null">build_date,</if>
  146. <if test="placeName != null">place_name,</if>
  147. <if test="purpose != null">purpose,</if>
  148. <if test="deptId != null">dept_id,</if>
  149. <if test="registrant != null and registrant != ''">registrant,</if>
  150. <if test="specificationsModel != null and specificationsModel != ''">specifications_model,</if>
  151. <if test="remark != null">remark,</if>
  152. <if test="manufacturer != null">manufacturer,</if>
  153. <if test="brand != null">brand,</if>
  154. <if test="supplier != null">supplier,</if>
  155. <if test="status != null">status,</if>
  156. </trim>
  157. <trim prefix="values (" suffix=")" suffixOverrides=",">
  158. <if test="barCode != null and barCode != ''">#{barCode},</if>
  159. <if test="number != null and number != ''">#{number},</if>
  160. <if test="name != null and name != ''">#{name},</if>
  161. <if test="kind != null and kind != ''">#{kind},</if>
  162. <if test="categoryNumber != null and categoryNumber != ''">#{categoryNumber},</if>
  163. <if test="amount != null">#{amount},</if>
  164. <if test="quantity != null">#{quantity},</if>
  165. <if test="quantityUnit != null">#{quantityUnit},</if>
  166. <if test="buildDate != null">#{buildDate},</if>
  167. <if test="placeName != null">#{placeName},</if>
  168. <if test="purpose != null">#{purpose},</if>
  169. <if test="deptId != null">#{deptId},</if>
  170. <if test="registrant != null and registrant != ''">#{registrant},</if>
  171. <if test="specificationsModel != null and specificationsModel != ''">#{specificationsModel},</if>
  172. <if test="remark != null">#{remark},</if>
  173. <if test="manufacturer != null">#{manufacturer},</if>
  174. <if test="brand != null">#{brand},</if>
  175. <if test="supplier != null">#{supplier},</if>
  176. <if test="status != null">#{status},</if>
  177. </trim>
  178. </insert>
  179. </mapper>