TbOrderDetailMapper.xml 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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.TbOrderDetailMapper">
  6. <resultMap type="TbOrderDetail" id="TbOrderDetailResult">
  7. <result property="id" column="id" />
  8. <result property="orderNumber" column="order_number" />
  9. <result property="assetNumber" column="asset_number" />
  10. <result property="allocationOldResponsiblePerson" column="allocation_old_responsible_person" />
  11. <result property="allocationOldLocationNumber" column="allocation_old_location_number" />
  12. <result property="allocationNewResponsiblePerson" column="allocation_new_responsible_person" />
  13. <result property="allocationNewLocationNumber" column="allocation_new_location_number" />
  14. <result property="lendReturnDate" column="lend_return_date" />
  15. <result property="lendActualReturnDate" column="lend_actual_return_date" />
  16. <result property="lendBySponsor" column="lend_by_sponsor" />
  17. <result property="remark" column="remark" />
  18. </resultMap>
  19. <sql id="selectTbOrderDetailVo">
  20. select id, order_number, asset_number, allocation_old_responsible_person, allocation_old_location_number, allocation_new_responsible_person, allocation_new_location_number, lend_return_date, lend_actual_return_date, lend_by_sponsor, remark from tb_order_detail
  21. </sql>
  22. <select id="selectTbOrderDetailList" parameterType="TbOrderDetail" resultMap="TbOrderDetailResult">
  23. <include refid="selectTbOrderDetailVo"/>
  24. <where>
  25. <if test="orderNumber != null and orderNumber != ''"> and order_number = #{orderNumber}</if>
  26. <if test="assetNumber != null and assetNumber != ''"> and asset_number = #{assetNumber}</if>
  27. <if test="allocationOldResponsiblePerson != null and allocationOldResponsiblePerson != ''"> and allocation_old_responsible_person = #{allocationOldResponsiblePerson}</if>
  28. <if test="allocationOldLocationNumber != null and allocationOldLocationNumber != ''"> and allocation_old_location_number = #{allocationOldLocationNumber}</if>
  29. <if test="allocationNewResponsiblePerson != null and allocationNewResponsiblePerson != ''"> and allocation_new_responsible_person = #{allocationNewResponsiblePerson}</if>
  30. <if test="allocationNewLocationNumber != null and allocationNewLocationNumber != ''"> and allocation_new_location_number = #{allocationNewLocationNumber}</if>
  31. <if test="lendReturnDate != null "> and lend_return_date = #{lendReturnDate}</if>
  32. <if test="lendActualReturnDate != null "> and lend_actual_return_date = #{lendActualReturnDate}</if>
  33. <if test="lendBySponsor != null and lendBySponsor != ''"> and lend_by_sponsor = #{lendBySponsor}</if>
  34. </where>
  35. </select>
  36. <select id="selectTbOrderDetailByOrderNumber" parameterType="String" resultMap="TbOrderDetailResult">
  37. <include refid="selectTbOrderDetailVo"/>
  38. where order_number = #{orderNumber}
  39. </select>
  40. <select id="selectTbOrderDetailById" parameterType="Long" resultMap="TbOrderDetailResult">
  41. <include refid="selectTbOrderDetailVo"/>
  42. where id = #{id}
  43. </select>
  44. <insert id="insertTbOrderDetail" parameterType="TbOrderDetail" useGeneratedKeys="true" keyProperty="id">
  45. insert into tb_order_detail
  46. <trim prefix="(" suffix=")" suffixOverrides=",">
  47. <if test="orderNumber != null and orderNumber != ''">order_number,</if>
  48. <if test="assetNumber != null and assetNumber != ''">asset_number,</if>
  49. <if test="allocationOldResponsiblePerson != null">allocation_old_responsible_person,</if>
  50. <if test="allocationOldLocationNumber != null">allocation_old_location_number,</if>
  51. <if test="allocationNewResponsiblePerson != null">allocation_new_responsible_person,</if>
  52. <if test="allocationNewLocationNumber != null">allocation_new_location_number,</if>
  53. <if test="lendReturnDate != null">lend_return_date,</if>
  54. <if test="lendActualReturnDate != null">lend_actual_return_date,</if>
  55. <if test="lendBySponsor != null">lend_by_sponsor,</if>
  56. <if test="remark != null">remark,</if>
  57. </trim>
  58. <trim prefix="values (" suffix=")" suffixOverrides=",">
  59. <if test="orderNumber != null and orderNumber != ''">#{orderNumber},</if>
  60. <if test="assetNumber != null and assetNumber != ''">#{assetNumber},</if>
  61. <if test="allocationOldResponsiblePerson != null">#{allocationOldResponsiblePerson},</if>
  62. <if test="allocationOldLocationNumber != null">#{allocationOldLocationNumber},</if>
  63. <if test="allocationNewResponsiblePerson != null">#{allocationNewResponsiblePerson},</if>
  64. <if test="allocationNewLocationNumber != null">#{allocationNewLocationNumber},</if>
  65. <if test="lendReturnDate != null">#{lendReturnDate},</if>
  66. <if test="lendActualReturnDate != null">#{lendActualReturnDate},</if>
  67. <if test="lendBySponsor != null">#{lendBySponsor},</if>
  68. <if test="remark != null">#{remark},</if>
  69. </trim>
  70. </insert>
  71. <update id="updateTbOrderDetail" parameterType="TbOrderDetail">
  72. update tb_order_detail
  73. <trim prefix="SET" suffixOverrides=",">
  74. <if test="orderNumber != null and orderNumber != ''">order_number = #{orderNumber},</if>
  75. <if test="assetNumber != null and assetNumber != ''">asset_number = #{assetNumber},</if>
  76. <if test="allocationOldResponsiblePerson != null">allocation_old_responsible_person = #{allocationOldResponsiblePerson},</if>
  77. <if test="allocationOldLocationNumber != null">allocation_old_location_number = #{allocationOldLocationNumber},</if>
  78. <if test="allocationNewResponsiblePerson != null">allocation_new_responsible_person = #{allocationNewResponsiblePerson},</if>
  79. <if test="allocationNewLocationNumber != null">allocation_new_location_number = #{allocationNewLocationNumber},</if>
  80. <if test="lendReturnDate != null">lend_return_date = #{lendReturnDate},</if>
  81. <if test="lendActualReturnDate != null">lend_actual_return_date = #{lendActualReturnDate},</if>
  82. <if test="lendBySponsor != null">lend_by_sponsor = #{lendBySponsor},</if>
  83. <if test="remark != null">remark = #{remark},</if>
  84. </trim>
  85. where id = #{id}
  86. </update>
  87. <delete id="deleteTbOrderDetailById" parameterType="Long">
  88. delete from tb_order_detail where id = #{id}
  89. </delete>
  90. <delete id="deleteTbOrderDetailByOrderNumber" parameterType="String">
  91. delete from tb_order_detail where order_number = #{orderNumber}
  92. </delete>
  93. <delete id="deleteTbOrderDetailByIds" parameterType="String">
  94. delete from tb_order_detail where id in
  95. <foreach item="id" collection="array" open="(" separator="," close=")">
  96. #{id}
  97. </foreach>
  98. </delete>
  99. <delete id="deleteTbOrderDetailByOrderNumbers" parameterType="String">
  100. delete from tb_order_detail where order_number in
  101. <foreach item="number" collection="array" open="(" separator="," close=")">
  102. #{number}
  103. </foreach>
  104. </delete>
  105. </mapper>