TbLocationMapper.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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.TbLocationMapper">
  6. <resultMap type="TbLocation" id="TbLocationResult">
  7. <result property="id" column="id" />
  8. <result property="number" column="number" />
  9. <result property="name" column="name" />
  10. <result property="parentId" column="parent_id" />
  11. <result property="sequence" column="sequence" />
  12. <result property="label" column="label" />
  13. <result property="remark" column="remark" />
  14. <result property="createBy" column="create_by" />
  15. <result property="createTime" column="create_time" />
  16. <result property="updateBy" column="update_by" />
  17. <result property="updateTime" column="update_time" />
  18. </resultMap>
  19. <sql id="selectTbLocationVo">
  20. select id, number, name, parent_id, sequence, label, remark, create_by, create_time, update_by, update_time from tb_location
  21. </sql>
  22. <select id="selectTbLocationList" parameterType="TbLocation" resultMap="TbLocationResult">
  23. <include refid="selectTbLocationVo"/>
  24. <where>
  25. <if test="number != null and number != ''"> and number = #{number}</if>
  26. <if test="name != null and name != ''"> and name like concat('%', #{name}, '%')</if>
  27. <if test="parentId != null"> and parent_id = #{parentId}</if>
  28. <if test="label != null and label != ''"> and label = #{label}</if>
  29. </where>
  30. </select>
  31. <select id="selectTbLocationById" parameterType="Long" resultMap="TbLocationResult">
  32. <include refid="selectTbLocationVo"/>
  33. where id = #{id}
  34. </select>
  35. <select id="selectTbLocationByIds" parameterType="String" resultMap="TbLocationResult">
  36. <include refid="selectTbLocationVo"/>
  37. where id in
  38. <foreach item="id" collection="ids" open="(" separator="," close=")">
  39. #{id}
  40. </foreach>
  41. </select>
  42. <select id="selectTbLocationIdByNumbers" parameterType="String" resultType="Long">
  43. SELECT id FROM tb_location WHERE number in
  44. <foreach item="number" collection="numbers" open="(" separator="," close=")">
  45. #{number}
  46. </foreach>
  47. </select>
  48. <!--selectTbLocationByNumber-->
  49. <select id="selectTbLocationByNumber" parameterType="String" resultMap="TbLocationResult">
  50. <include refid="selectTbLocationVo"/>
  51. where number = #{number}
  52. </select>
  53. <select id="selectNumberByFather" parameterType="String" resultType="String">
  54. select a.number, a.id, a.name from tb_location a
  55. where a.number = #{number}
  56. or a.parent_id = (select b.id from tb_location b where b.number = #{number})
  57. </select>
  58. <select id="selectChildTbLocationById" parameterType="Long" resultType="String">
  59. SELECT number FROM `tb_location` where id = #{id} or sequence like concat(#{id}, '%');
  60. </select>
  61. <select id="selectChildTbLocationByIds" parameterType="Long" resultType="String">
  62. SELECT DISTINCT number FROM `tb_location`
  63. <where>
  64. id in
  65. <foreach item="id" collection="ids" open="(" separator="," close=")">
  66. #{id}
  67. </foreach>
  68. <foreach item="id" collection="ids">
  69. or sequence like concat('%', #{id}, '%')
  70. </foreach>
  71. </where>
  72. </select>
  73. <insert id="insertTbLocation" parameterType="TbLocation" useGeneratedKeys="true" keyProperty="id">
  74. insert into tb_location
  75. <trim prefix="(" suffix=")" suffixOverrides=",">
  76. <if test="number != null and number != ''">number,</if>
  77. <if test="name != null">name,</if>
  78. <if test="parentId != null">parent_id,</if>
  79. <if test="sequence != null and sequence != ''">sequence,</if>
  80. <if test="label != null and label != ''">label,</if>
  81. <if test="remark != null">remark,</if>
  82. <if test="createBy != null and createBy != ''">create_by,</if>
  83. <if test="createTime != null">create_time,</if>
  84. <if test="updateBy != null">update_by,</if>
  85. <if test="updateTime != null">update_time,</if>
  86. </trim>
  87. <trim prefix="values (" suffix=")" suffixOverrides=",">
  88. <if test="number != null and number != ''">#{number},</if>
  89. <if test="name != null">#{name},</if>
  90. <if test="parentId != null">#{parentId},</if>
  91. <if test="sequence != null and sequence != ''">#{sequence},</if>
  92. <if test="label != null and label != ''">#{label},</if>
  93. <if test="remark != null">#{remark},</if>
  94. <if test="createBy != null and createBy != ''">#{createBy},</if>
  95. <if test="createTime != null">#{createTime},</if>
  96. <if test="updateBy != null">#{updateBy},</if>
  97. <if test="updateTime != null">#{updateTime},</if>
  98. </trim>
  99. </insert>
  100. <update id="updateTbLocation" parameterType="TbLocation">
  101. update tb_location
  102. <trim prefix="SET" suffixOverrides=",">
  103. <if test="number != null and number != ''">number = #{number},</if>
  104. <if test="name != null">name = #{name},</if>
  105. <if test="parentId != null">parent_id = #{parentId},</if>
  106. <if test="sequence != null and sequence != ''">sequence = #{sequence},</if>
  107. <if test="label != null and label != ''">label = #{label},</if>
  108. <if test="remark != null">remark = #{remark},</if>
  109. <if test="createBy != null and createBy != ''">create_by = #{createBy},</if>
  110. <if test="createTime != null">create_time = #{createTime},</if>
  111. <if test="updateBy != null">update_by = #{updateBy},</if>
  112. <if test="updateTime != null">update_time = #{updateTime},</if>
  113. </trim>
  114. where id = #{id}
  115. </update>
  116. <delete id="deleteTbLocationById" parameterType="Long">
  117. delete from tb_location where id = #{id}
  118. </delete>
  119. <delete id="deleteTbLocationByIds" parameterType="String">
  120. delete from tb_location where id in
  121. <foreach item="id" collection="array" open="(" separator="," close=")">
  122. #{id}
  123. </foreach>
  124. </delete>
  125. <select id="selectTbLocationListByNumbers" parameterType="String" resultMap="TbLocationResult">
  126. <include refid="selectTbLocationVo"/>
  127. <where>
  128. number in
  129. <foreach item="number" collection="numbers" open="(" separator="," close=")">
  130. #{number}
  131. </foreach>
  132. </where>
  133. </select>
  134. </mapper>