|
@@ -2,6 +2,49 @@
|
|
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
|
|
<mapper namespace="com.macro.mall.tiny.modules.business.mapper.KrBLineMapper">
|
|
|
|
|
|
+ <select id="findById" resultMap="BaseResultMap">
|
|
|
+ SELECT l.id,
|
|
|
+ l.province_id,
|
|
|
+ p.name province,
|
|
|
+ l.city_id,
|
|
|
+ c.name city,
|
|
|
+ l.line_name,
|
|
|
+ l.voltage,
|
|
|
+ l.line_status,
|
|
|
+ l.service_begintime,
|
|
|
+ l.begin_tower,
|
|
|
+ l.end_tower,
|
|
|
+ l.creator_id,
|
|
|
+ l.create_time,
|
|
|
+ t.id t_id,
|
|
|
+ t.line_id t_line_id,
|
|
|
+ t.tower_index t_tower_index,
|
|
|
+ t.tower_name t_tower_name,
|
|
|
+ t.tower_number t_tower_number,
|
|
|
+ t.hardware_type t_hardware_type,
|
|
|
+ t.longitude t_longitude,
|
|
|
+ t.latitude t_latitude,
|
|
|
+ t.type t_type,
|
|
|
+ t.is_station t_is_station,
|
|
|
+ t.is_weather t_is_weather,
|
|
|
+ t.circuit t_circuit,
|
|
|
+ t.height t_height,
|
|
|
+ t.practical_height t_practical_height,
|
|
|
+ t.corner_direction t_corner_direction,
|
|
|
+ t.corner_number t_corner_number,
|
|
|
+ t.span t_span,
|
|
|
+ t.service_begintime t_service_begintime,
|
|
|
+ t.remark t_remark,
|
|
|
+ t.has_file t_has_file,
|
|
|
+ t.create_time t_create_time
|
|
|
+ FROM kr_b_line l
|
|
|
+ LEFT JOIN kr_b_region_province p ON l.province_id = p.province_id
|
|
|
+ LEFT JOIN kr_b_region_city c ON l.city_id = c.city_id
|
|
|
+ LEFT JOIN kr_b_tower t ON l.id = t.line_id
|
|
|
+ WHERE l.id = #{id}
|
|
|
+ ORDER BY tower_index;
|
|
|
+ </select>
|
|
|
+
|
|
|
<select id="findListMulti" resultMap="BaseResultMap">
|
|
|
SELECT l.id,
|
|
|
l.province_id,
|
|
@@ -96,6 +139,34 @@
|
|
|
|
|
|
</select>
|
|
|
|
|
|
+ <select id="findByKeySimple" resultMap="BaseResultMap">
|
|
|
+ SELECT l.id,
|
|
|
+ l.province_id,
|
|
|
+ p.name province,
|
|
|
+ l.city_id,
|
|
|
+ c.name city,
|
|
|
+ l.line_name,
|
|
|
+ l.voltage,
|
|
|
+ l.line_status,
|
|
|
+ l.service_begintime,
|
|
|
+ l.begin_tower,
|
|
|
+ l.end_tower,
|
|
|
+ l.creator_id,
|
|
|
+ l.create_time,
|
|
|
+ FROM kr_b_line l
|
|
|
+ LEFT JOIN kr_b_region_province p ON l.province_id = p.province_id
|
|
|
+ LEFT JOIN kr_b_region_city c ON l.city_id = c.city_id
|
|
|
+ WHERE l.line_name LIKE concat('%', #{key}, '%')
|
|
|
+ OR p.name like concat('%', #{key}, '%')
|
|
|
+ <if test="provinceId != null and provinceId != ''">
|
|
|
+ AND l.province_id = #{provinceId}
|
|
|
+ </if>
|
|
|
+ <if test="cityId != null and cityId != ''">
|
|
|
+ AND l.city_id = #{cityId}
|
|
|
+ </if>
|
|
|
+
|
|
|
+ </select>
|
|
|
+
|
|
|
<!-- 通用查询映射结果 -->
|
|
|
<resultMap id="BaseResultMap" type="com.macro.mall.tiny.modules.business.model.KrBLine">
|
|
|
<id column="id" property="id"/>
|