|
@@ -25,8 +25,10 @@
|
|
|
<result property="createTime" column="create_time" />
|
|
|
<result property="modifyTime" column="modify_time" />
|
|
|
<result property="ownerType" column="owner_type" />
|
|
|
- <result property="lastStatus" column="last_status" />
|
|
|
+ <result property="lastStatus" column="STATUS" />
|
|
|
<result property="deviceStatus" column="device_status" />
|
|
|
+ <result property="location" column="location" />
|
|
|
+ <result property="kwh" column="kwh"/>
|
|
|
</resultMap>
|
|
|
|
|
|
<insert id="insertFocusShip" parameterType="focusShipData">
|
|
@@ -52,21 +54,27 @@
|
|
|
</delete>
|
|
|
|
|
|
<select id="selectById" parameterType="long" resultMap="focusShipDetail">
|
|
|
- select focus.user_id,focus.focus_id,focus.focus_type,focus.create_time as focus_create,st.mark as device_status,
|
|
|
- dept.pscmc as dept_name,archives.*
|
|
|
+ select focus.user_id,focus.focus_id as focus_id,focus.focus_type,focus.create_time as focus_create,
|
|
|
+ (CASE st.is_online WHEN 'ONLINE' THEN 1 WHEN 'OFFLINE' THEN 2 WHEN 'MARK' THEN 3 ELSE 1 END ) AS STATUS,
|
|
|
+ dept.pscmc as dept_name,location.kwh,location.location,archives.*
|
|
|
from ax_beidou_ship_archives archives
|
|
|
INNER JOIN ax_beidou_focus_ship focus on archives.devide_no = focus.devide_no
|
|
|
INNER JOIN ax_beidou_dept dept on archives.police_station_id = dept.pscbh
|
|
|
- INNER JOIN ax_beidou_ship_status st on st.devide_no = focus.devide_no
|
|
|
+ INNER JOIN ax_beidou_ship_status st on st.device_id = focus.devide_no
|
|
|
+ LEFT JOIN ax_beidou_ship_location location on focus.devide_no = location.device_id
|
|
|
where focus.focus_id = #{focusId}
|
|
|
</select>
|
|
|
|
|
|
<select id="selectList" parameterType="focusShipReq" resultMap="focusShipDetail">
|
|
|
- select focus.user_id,focus.focus_id,focus.focus_type,focus.create_time as focus_create,dept.pscmc as dept_name,archives.*
|
|
|
+ select focus.user_id,focus.focus_id,focus.focus_type,focus.create_time as focus_create,dept.pscmc as dept_name,
|
|
|
+ (CASE st.is_online WHEN 'ONLINE' THEN 1 WHEN 'OFFLINE' THEN 2 WHEN 'MARK' THEN 3 ELSE 1 END ) AS STATUS,
|
|
|
+ location.kwh,location.location,archives.*
|
|
|
from ax_beidou_ship_archives archives
|
|
|
- INNER JOIN ax_beidou_focus_ship focus
|
|
|
- INNER JOIN ax_beidou_dept dept
|
|
|
- where archives.devide_no = focus.devide_no and archives.police_station_id = dept.pscbh
|
|
|
+ INNER JOIN ax_beidou_focus_ship focus on archives.devide_no = focus.devide_no
|
|
|
+ INNER JOIN ax_beidou_dept dept on archives.police_station_id = dept.pscbh
|
|
|
+ LEFT JOIN ax_beidou_ship_status st on st.device_id = focus.devide_no
|
|
|
+ LEFT JOIN ax_beidou_ship_location location on focus.devide_no = location.device_id
|
|
|
+ where 1=1
|
|
|
<if test="shipId != null and shipId != ''">and (archives.ship_id like concat('%', #{shipId},'%') or archives.devide_no like concat('%', #{devideNo},'%'))</if>
|
|
|
<if test="deptId != null and deptId != ''">and dept.xw_dept_id like concat('%',#{deptId},'%')</if>
|
|
|
<if test="userId != null and userId != ''">and focus.user_id=#{userId}</if>
|