KrBLineMapper.xml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
  3. <mapper namespace="com.macro.mall.tiny.modules.business.mapper.KrBLineMapper">
  4. <select id="findById" resultMap="BaseResultMap">
  5. SELECT l.id,
  6. l.province_id,
  7. p.name province,
  8. l.city_id,
  9. c.name city,
  10. l.line_name,
  11. l.voltage,
  12. l.line_status,
  13. l.service_begintime,
  14. l.begin_tower,
  15. l.end_tower,
  16. l.creator_id,
  17. l.create_time,
  18. t.id t_id,
  19. t.line_id t_line_id,
  20. t.tower_index t_tower_index,
  21. t.tower_name t_tower_name,
  22. t.tower_number t_tower_number,
  23. t.hardware_type t_hardware_type,
  24. t.longitude t_longitude,
  25. t.latitude t_latitude,
  26. t.type t_type,
  27. t.is_station t_is_station,
  28. t.is_weather t_is_weather,
  29. t.circuit t_circuit,
  30. t.height t_height,
  31. t.practical_height t_practical_height,
  32. t.corner_direction t_corner_direction,
  33. t.corner_number t_corner_number,
  34. t.span t_span,
  35. t.service_begintime t_service_begintime,
  36. t.remark t_remark,
  37. t.has_file t_has_file,
  38. t.create_time t_create_time
  39. FROM kr_b_line l
  40. LEFT JOIN kr_b_region_province p ON l.province_id = p.province_id
  41. LEFT JOIN kr_b_region_city c ON l.city_id = c.city_id
  42. LEFT JOIN kr_b_tower t ON l.id = t.line_id
  43. WHERE l.id = #{id}
  44. ORDER BY tower_index;
  45. </select>
  46. <select id="findListMulti" resultMap="BaseResultMap">
  47. SELECT l.id,
  48. l.province_id,
  49. p.name province,
  50. l.city_id,
  51. c.name city,
  52. l.line_name,
  53. l.voltage,
  54. l.line_status,
  55. l.service_begintime,
  56. l.begin_tower,
  57. l.end_tower,
  58. l.creator_id,
  59. l.create_time,
  60. t.id t_id,
  61. t.line_id t_line_id,
  62. t.tower_index t_tower_index,
  63. t.tower_name t_tower_name,
  64. t.tower_number t_tower_number,
  65. t.hardware_type t_hardware_type,
  66. t.longitude t_longitude,
  67. t.latitude t_latitude,
  68. t.type t_type,
  69. t.is_station t_is_station,
  70. t.is_weather t_is_weather,
  71. t.circuit t_circuit,
  72. t.height t_height,
  73. t.practical_height t_practical_height,
  74. t.corner_direction t_corner_direction,
  75. t.corner_number t_corner_number,
  76. t.span t_span,
  77. t.service_begintime t_service_begintime,
  78. t.remark t_remark,
  79. t.has_file t_has_file,
  80. t.create_time t_create_time
  81. FROM kr_b_line l
  82. LEFT JOIN kr_b_region_province p ON l.province_id = p.province_id
  83. LEFT JOIN kr_b_region_city c ON l.city_id = c.city_id
  84. LEFT JOIN kr_b_tower t ON l.id = t.line_id
  85. ORDER BY tower_index;
  86. </select>
  87. <select id="findListByKey" resultMap="BaseResultMap">
  88. SELECT l.id,
  89. l.province_id,
  90. p.name province,
  91. l.city_id,
  92. c.name city,
  93. l.line_name,
  94. l.voltage,
  95. l.line_status,
  96. l.service_begintime,
  97. l.begin_tower,
  98. l.end_tower,
  99. l.creator_id,
  100. l.create_time,
  101. t.id t_id,
  102. t.line_id t_line_id,
  103. t.tower_index t_tower_index,
  104. t.tower_name t_tower_name,
  105. t.tower_number t_tower_number,
  106. t.hardware_type t_hardware_type,
  107. t.longitude t_longitude,
  108. t.latitude t_latitude,
  109. t.type t_type,
  110. t.is_station t_is_station,
  111. t.is_weather t_is_weather,
  112. t.circuit t_circuit,
  113. t.height t_height,
  114. t.practical_height t_practical_height,
  115. t.corner_direction t_corner_direction,
  116. t.corner_number t_corner_number,
  117. t.span t_span,
  118. t.service_begintime t_service_begintime,
  119. t.remark t_remark,
  120. t.has_file t_has_file,
  121. t.create_time t_create_time
  122. FROM kr_b_line l
  123. LEFT JOIN kr_b_region_province p ON l.province_id = p.province_id
  124. LEFT JOIN kr_b_region_city c ON l.city_id = c.city_id
  125. LEFT JOIN kr_b_tower t ON l.id = t.line_id
  126. WHERE l.line_name LIKE concat('%', #{key}, '%')
  127. OR p.name like concat('%', #{key}, '%')
  128. OR t.tower_number like concat('%', #{key}, '%')
  129. <if test="provinceId != null and provinceId != ''">
  130. AND l.province_id = #{provinceId}
  131. </if>
  132. <if test="cityId != null and cityId != ''">
  133. AND l.city_id = #{cityId}
  134. </if>
  135. ORDER BY tower_index;
  136. </select>
  137. <select id="findByKeySimple" resultMap="BaseResultMap">
  138. SELECT l.id,
  139. l.province_id,
  140. p.name province,
  141. l.city_id,
  142. c.name city,
  143. l.line_name,
  144. l.voltage,
  145. l.line_status,
  146. l.service_begintime,
  147. l.begin_tower,
  148. l.end_tower,
  149. l.creator_id,
  150. l.create_time
  151. FROM kr_b_line l
  152. LEFT JOIN kr_b_region_province p ON l.province_id = p.province_id
  153. LEFT JOIN kr_b_region_city c ON l.city_id = c.city_id
  154. WHERE l.line_name LIKE concat('%', #{key}, '%')
  155. OR p.name like concat('%', #{key}, '%')
  156. <if test="provinceId != null and provinceId != ''">
  157. AND l.province_id = #{provinceId}
  158. </if>
  159. <if test="cityId != null and cityId != ''">
  160. AND l.city_id = #{cityId}
  161. </if>
  162. </select>
  163. <!-- 通用查询映射结果 -->
  164. <resultMap id="BaseResultMap" type="com.macro.mall.tiny.modules.business.model.KrBLine">
  165. <id column="id" property="id"/>
  166. <result column="province_id" property="provinceId"/>
  167. <result column="province" property="province"/>
  168. <result column="city_id" property="cityId"/>
  169. <result column="city" property="city"/>
  170. <result column="line_name" property="lineName"/>
  171. <result column="voltage" property="voltage"/>
  172. <result column="line_status" property="lineStatus"/>
  173. <result column="service_begintime" property="serviceBegintime"/>
  174. <result column="begin_tower" property="beginTower"/>
  175. <result column="end_tower" property="endTower"/>
  176. <result column="creator_id" property="creatorId"/>
  177. <result column="create_time" property="createTime"/>
  178. <collection property="towerList" ofType="com.macro.mall.tiny.modules.business.model.KrBTower" column="id">
  179. <id column="t_id" property="id"/>
  180. <result column="t_line_id" property="lineId"/>
  181. <result column="t_tower_index" property="towerIndex"/>
  182. <result column="t_tower_name" property="towerName"/>
  183. <result column="t_tower_number" property="towerNumber"/>
  184. <result column="t_hardware_type" property="hardwareType"/>
  185. <result column="t_line_id" property="lineId"/>
  186. <result column="t_longitude" property="longitude"/>
  187. <result column="t_latitude" property="latitude"/>
  188. <result column="t_type" property="type"/>
  189. <result column="t_is_station" property="isStation"/>
  190. <result column="t_is_weather" property="isWeather"/>
  191. <result column="t_circuit" property="circuit"/>
  192. <result column="t_height" property="height"/>
  193. <result column="t_practical_height" property="practicalHeight"/>
  194. <result column="t_corner_direction" property="cornerDirection"/>
  195. <result column="t_corner_number" property="cornerNumber"/>
  196. <result column="t_span" property="span"/>
  197. <result column="t_service_begintime" property="serviceBegintime"/>
  198. <result column="t_remark" property="remark"/>
  199. <result column="t_has_file" property="hasFile"/>
  200. <result column="t_create_time" property="createTime"/>
  201. </collection>
  202. </resultMap>
  203. </mapper>