TbOrderMapper.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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.order.mapper.TbOrderMapper">
  6. <resultMap type="TbOrder" id="TbOrderResult">
  7. <result property="id" column="id" />
  8. <result property="orderNumber" column="order_number" />
  9. <result property="orderType" column="order_type" />
  10. <result property="assetTotalOriginalValue" column="asset_total_original_value" />
  11. <result property="assetTotalNetValue" column="asset_total_net_value" />
  12. <result property="applicationDate" column="application_date" />
  13. <result property="applicationDepartment" column="application_department" />
  14. <result property="adjustmentAssetNumber" column="adjustment_asset_number" />
  15. <result property="adjustmentOriginalAssetInfo" column="adjustment_original_asset_info" />
  16. <result property="allocationCallOutDepartment" column="allocation_call_out_department" />
  17. <result property="allocationCallOutBy" column="allocation_call_out_by" />
  18. <result property="allocationCallOutDate" column="allocation_call_out_date" />
  19. <result property="allocationCallInDepartment" column="allocation_call_in_department" />
  20. <result property="allocationCallInBy" column="allocation_call_in_by" />
  21. <result property="allocationCallInDate" column="allocation_call_in_date" />
  22. <result property="allocationNewResponsiblePerson" column="allocation_new_responsible_person" />
  23. <result property="allocationNewLocationNumber" column="allocation_new_location_number" />
  24. <result property="lendDepartment" column="lend_department" />
  25. <result property="lendBySponsor" column="lend_by_sponsor" />
  26. <result property="lendPassingUnit" column="lend_passing_unit" />
  27. <result property="reason" column="reason" />
  28. <result property="preparedBy" column="prepared_by" />
  29. <result property="preparedDepartment" column="prepared_department" />
  30. <result property="corporation" column="corporation" />
  31. <result property="recordStatus" column="record_status" />
  32. </resultMap>
  33. <sql id="selectTbOrderVo">
  34. select id, order_number, order_type, asset_total_original_value, asset_total_net_value, application_date, application_department, adjustment_asset_number, adjustment_original_asset_info, allocation_call_out_department, allocation_call_out_by, allocation_call_out_date, allocation_call_in_department, allocation_call_in_by, allocation_call_in_date, allocation_new_responsible_person, allocation_new_location_number, lend_department, lend_by_sponsor, lend_passing_unit, reason, prepared_by, prepared_department, corporation, record_status from tb_order
  35. </sql>
  36. <select id="selectTbOrderList" parameterType="TbOrder" resultMap="TbOrderResult">
  37. <include refid="selectTbOrderVo"/>
  38. <where>
  39. <if test="orderNumber != null and orderNumber != ''"> and order_number = #{orderNumber}</if>
  40. <if test="orderType != null "> and order_type = #{orderType}</if>
  41. <if test="applicationDate != null "> and application_date = #{applicationDate}</if>
  42. <if test="applicationDepartment != null and applicationDepartment != ''"> and application_department = #{applicationDepartment}</if>
  43. <if test="adjustmentAssetNumber != null and adjustmentAssetNumber != ''"> and adjustment_asset_number = #{adjustmentAssetNumber}</if>
  44. <if test="allocationCallOutDepartment != null and allocationCallOutDepartment != ''"> and allocation_call_out_department = #{allocationCallOutDepartment}</if>
  45. <if test="allocationCallOutBy != null and allocationCallOutBy != ''"> and allocation_call_out_by = #{allocationCallOutBy}</if>
  46. <if test="allocationCallOutDate != null "> and allocation_call_out_date = #{allocationCallOutDate}</if>
  47. <if test="allocationCallInDepartment != null and allocationCallInDepartment != ''"> and allocation_call_in_department = #{allocationCallInDepartment}</if>
  48. <if test="allocationCallInBy != null and allocationCallInBy != ''"> and allocation_call_in_by = #{allocationCallInBy}</if>
  49. <if test="allocationCallInDate != null "> and allocation_call_in_date = #{allocationCallInDate}</if>
  50. <if test="lendDepartment != null and lendDepartment != ''"> and lend_department = #{lendDepartment}</if>
  51. <if test="lendBySponsor != null and lendBySponsor != ''"> and lend_by_sponsor = #{lendBySponsor}</if>
  52. <if test="lendPassingUnit != null and lendPassingUnit != ''"> and lend_passing_unit = #{lendPassingUnit}</if>
  53. <if test="reason != null and reason != ''"> and reason = #{reason}</if>
  54. <if test="preparedBy != null and preparedBy != ''"> and prepared_by = #{preparedBy}</if>
  55. <if test="preparedDepartment != null and preparedDepartment != ''"> and prepared_department = #{preparedDepartment}</if>
  56. <if test="corporation != null and corporation != ''"> and corporation = #{corporation}</if>
  57. <if test="recordStatus != null "> and record_status = #{recordStatus}</if>
  58. </where>
  59. </select>
  60. <select id="selectTbOrderById" parameterType="Long" resultMap="TbOrderResult">
  61. <include refid="selectTbOrderVo"/>
  62. where id = #{id}
  63. </select>
  64. <insert id="insertTbOrder" parameterType="TbOrder" useGeneratedKeys="true" keyProperty="id">
  65. insert into tb_order
  66. <trim prefix="(" suffix=")" suffixOverrides=",">
  67. <if test="orderNumber != null and orderNumber != ''">order_number,</if>
  68. <if test="orderType != null">order_type,</if>
  69. <if test="assetTotalOriginalValue != null and assetTotalOriginalValue != ''">asset_total_original_value,</if>
  70. <if test="assetTotalNetValue != null and assetTotalNetValue != ''">asset_total_net_value,</if>
  71. <if test="applicationDate != null">application_date,</if>
  72. <if test="applicationDepartment != null">application_department,</if>
  73. <if test="adjustmentAssetNumber != null">adjustment_asset_number,</if>
  74. <if test="adjustmentOriginalAssetInfo != null">adjustment_original_asset_info,</if>
  75. <if test="allocationCallOutDepartment != null">allocation_call_out_department,</if>
  76. <if test="allocationCallOutBy != null">allocation_call_out_by,</if>
  77. <if test="allocationCallOutDate != null">allocation_call_out_date,</if>
  78. <if test="allocationCallInDepartment != null">allocation_call_in_department,</if>
  79. <if test="allocationCallInBy != null">allocation_call_in_by,</if>
  80. <if test="allocationCallInDate != null">allocation_call_in_date,</if>
  81. <if test="allocationNewResponsiblePerson != null">allocation_new_responsible_person,</if>
  82. <if test="allocationNewLocationNumber != null">allocation_new_location_number,</if>
  83. <if test="lendDepartment != null">lend_department,</if>
  84. <if test="lendBySponsor != null">lend_by_sponsor,</if>
  85. <if test="lendPassingUnit != null">lend_passing_unit,</if>
  86. <if test="reason != null">reason,</if>
  87. <if test="preparedBy != null and preparedBy != ''">prepared_by,</if>
  88. <if test="preparedDepartment != null and preparedDepartment != ''">prepared_department,</if>
  89. <if test="corporation != null and corporation != ''">corporation,</if>
  90. <if test="recordStatus != null">record_status,</if>
  91. </trim>
  92. <trim prefix="values (" suffix=")" suffixOverrides=",">
  93. <if test="orderNumber != null and orderNumber != ''">#{orderNumber},</if>
  94. <if test="orderType != null">#{orderType},</if>
  95. <if test="assetTotalOriginalValue != null and assetTotalOriginalValue != ''">#{assetTotalOriginalValue},</if>
  96. <if test="assetTotalNetValue != null and assetTotalNetValue != ''">#{assetTotalNetValue},</if>
  97. <if test="applicationDate != null">#{applicationDate},</if>
  98. <if test="applicationDepartment != null">#{applicationDepartment},</if>
  99. <if test="adjustmentAssetNumber != null">#{adjustmentAssetNumber},</if>
  100. <if test="adjustmentOriginalAssetInfo != null">#{adjustmentOriginalAssetInfo},</if>
  101. <if test="allocationCallOutDepartment != null">#{allocationCallOutDepartment},</if>
  102. <if test="allocationCallOutBy != null">#{allocationCallOutBy},</if>
  103. <if test="allocationCallOutDate != null">#{allocationCallOutDate},</if>
  104. <if test="allocationCallInDepartment != null">#{allocationCallInDepartment},</if>
  105. <if test="allocationCallInBy != null">#{allocationCallInBy},</if>
  106. <if test="allocationCallInDate != null">#{allocationCallInDate},</if>
  107. <if test="allocationNewResponsiblePerson != null">#{allocationNewResponsiblePerson},</if>
  108. <if test="allocationNewLocationNumber != null">#{allocationNewLocationNumber},</if>
  109. <if test="lendDepartment != null">#{lendDepartment},</if>
  110. <if test="lendBySponsor != null">#{lendBySponsor},</if>
  111. <if test="lendPassingUnit != null">#{lendPassingUnit},</if>
  112. <if test="reason != null">#{reason},</if>
  113. <if test="preparedBy != null and preparedBy != ''">#{preparedBy},</if>
  114. <if test="preparedDepartment != null and preparedDepartment != ''">#{preparedDepartment},</if>
  115. <if test="corporation != null and corporation != ''">#{corporation},</if>
  116. <if test="recordStatus != null">#{recordStatus},</if>
  117. </trim>
  118. </insert>
  119. <update id="updateTbOrder" parameterType="TbOrder">
  120. update tb_order
  121. <trim prefix="SET" suffixOverrides=",">
  122. <if test="orderNumber != null and orderNumber != ''">order_number = #{orderNumber},</if>
  123. <if test="orderType != null">order_type = #{orderType},</if>
  124. <if test="assetTotalOriginalValue != null and assetTotalOriginalValue != ''">asset_total_original_value = #{assetTotalOriginalValue},</if>
  125. <if test="assetTotalNetValue != null and assetTotalNetValue != ''">asset_total_net_value = #{assetTotalNetValue},</if>
  126. <if test="applicationDate != null">application_date = #{applicationDate},</if>
  127. <if test="applicationDepartment != null">application_department = #{applicationDepartment},</if>
  128. <if test="adjustmentAssetNumber != null">adjustment_asset_number = #{adjustmentAssetNumber},</if>
  129. <if test="adjustmentOriginalAssetInfo != null">adjustment_original_asset_info = #{adjustmentOriginalAssetInfo},</if>
  130. <if test="allocationCallOutDepartment != null">allocation_call_out_department = #{allocationCallOutDepartment},</if>
  131. <if test="allocationCallOutBy != null">allocation_call_out_by = #{allocationCallOutBy},</if>
  132. <if test="allocationCallOutDate != null">allocation_call_out_date = #{allocationCallOutDate},</if>
  133. <if test="allocationCallInDepartment != null">allocation_call_in_department = #{allocationCallInDepartment},</if>
  134. <if test="allocationCallInBy != null">allocation_call_in_by = #{allocationCallInBy},</if>
  135. <if test="allocationCallInDate != null">allocation_call_in_date = #{allocationCallInDate},</if>
  136. <if test="allocationNewResponsiblePerson != null">allocation_new_responsible_person = #{allocationNewResponsiblePerson},</if>
  137. <if test="allocationNewLocationNumber != null">allocation_new_location_number = #{allocationNewLocationNumber},</if>
  138. <if test="lendDepartment != null">lend_department = #{lendDepartment},</if>
  139. <if test="lendBySponsor != null">lend_by_sponsor = #{lendBySponsor},</if>
  140. <if test="lendPassingUnit != null">lend_passing_unit = #{lendPassingUnit},</if>
  141. <if test="reason != null">reason = #{reason},</if>
  142. <if test="preparedBy != null and preparedBy != ''">prepared_by = #{preparedBy},</if>
  143. <if test="preparedDepartment != null and preparedDepartment != ''">prepared_department = #{preparedDepartment},</if>
  144. <if test="corporation != null and corporation != ''">corporation = #{corporation},</if>
  145. <if test="recordStatus != null">record_status = #{recordStatus},</if>
  146. </trim>
  147. where id = #{id}
  148. </update>
  149. <delete id="deleteTbOrderById" parameterType="Long">
  150. delete from tb_order where id = #{id}
  151. </delete>
  152. <delete id="deleteTbOrderByIds" parameterType="String">
  153. delete from tb_order where id in
  154. <foreach item="id" collection="array" open="(" separator="," close=")">
  155. #{id}
  156. </foreach>
  157. </delete>
  158. </mapper>