ShipStatusMapper.xml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  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="cn.com.taiji.beidou.ship.status.mapper.ShipStatusMapper">
  6. <resultMap id="shipStatusResult" type="shipStatusResult">
  7. <id property="devideNo" column="devide_no"/>
  8. <result property="isOnline" column="is_online"/>
  9. <result property="isStasis" column="is_stasis"/>
  10. <result property="longitude" column="longitude"/>
  11. <result property="latitude" column="latitude"/>
  12. <result property="location" column="location"/>
  13. <result property="kwh" column="kwh"/>
  14. <result property="lastTime" column="last_time"/>
  15. <result property="shipId" column="ship_id" />
  16. <result property="shipType" column="ship_type" />
  17. <result property="jobType" column="job_type" />
  18. <result property="jobWay" column="job_way" />
  19. <result property="ownerName" column="owner_name" />
  20. <result property="ownerTelNo" column="owner_tel_no" />
  21. <result property="shipLength" column="ship_length" />
  22. <result property="shipWidth" column="ship_width" />
  23. <result property="shipMaterial" column="ship_material" />
  24. <result property="policeStationId" column="police_station_id" />
  25. <result property="deptName" column="dept_name" />
  26. <result property="ownerCompany" column="owner_company" />
  27. <result property="createTime" column="create_time" />
  28. <result property="modifyTime" column="modify_time" />
  29. <result property="ownerType" column="owner_type" />
  30. <result property="onlineChangeTime" column="online_change_time" />
  31. <result property="locationTime" column="location_time" />
  32. <result property="numberDay" column="number_day" />
  33. <result property="deviceStatus" column="device_status" />
  34. <result property="status" column="status"/>
  35. <result property="lastStatus" column="status"/>
  36. </resultMap>
  37. <select id="selectById" parameterType="string" resultMap="shipStatusResult">
  38. select archives.*,
  39. (CASE st.is_online WHEN 'ONLINE' THEN 1 WHEN 'OFFLINE' THEN 2 WHEN 'MARK' THEN 3 END) as status,
  40. st.is_inport,location.longitude,location.latitude,location.location,st.online_change_time,
  41. location.kwh as kwh,
  42. dept.pscmc as dept_name,
  43. IFNULL(dispose.dispose_type,'0') as device_status,
  44. <if test="isOnline != null and isOnline != ''">
  45. TIMESTAMPDIFF(DAY,st.online_change_time,NOW()) as number_day
  46. </if>
  47. <if test="isStasis != null and isStasis != ''">
  48. TIMESTAMPDIFF(DAY,st.anchor_change_time,NOW()) as number_day
  49. </if>
  50. from ax_beidou_ship_status st
  51. inner join ax_beidou_ship_archives archives on st.device_id = archives.devide_no
  52. inner join ax_beidou_dept dept on archives.police_station_id = dept.pscbh
  53. LEFT JOIN ax_beidou_ship_location location on archives.devide_no = location.device_id
  54. LEFT JOIN (select id,devide_no,dispose_type from ax_beidou_ship_dispose
  55. where devide_no=#{devideNo} ORDER BY id DESC limit 1) as dispose on dispose.devide_no = archives.devide_no
  56. where 1=1
  57. <if test="devideNo != null and devideNo != ''">
  58. and st.device_id = #{devideNo}
  59. </if>
  60. <if test="isOnline != null and isOnline != ''">
  61. and st.is_online = #{isOnline}
  62. </if>
  63. <if test="isStasis != null and isStasis != ''">
  64. and st.is_anchor = #{isStasis}
  65. and TIMESTAMPDIFF(MINUTE,st.anchor_change_time,NOW())>24*60*7
  66. </if>
  67. </select>
  68. <select id="selectShipStatusList" parameterType="shipStatusReq" resultMap="shipStatusResult">
  69. select archives.*,
  70. (CASE st.is_online WHEN 'ONLINE' THEN 1 WHEN 'OFFLINE' THEN 2 WHEN 'MARK' THEN 3 END) as is_online,
  71. st.is_inport,location.longitude,location.latitude,location.location,
  72. location.kwh as kwh,
  73. dept.pscmc as dept_name,
  74. <if test="isOnline != null and isOnline != ''">
  75. st.online_change_time ,
  76. TIMESTAMPDIFF(SECOND,st.online_change_time,NOW()) as order_day,
  77. IF(floor(TIMESTAMPDIFF(SECOND,st.online_change_time,NOW())/24/60/60)>0,concat( floor(TIMESTAMPDIFF(SECOND,st.online_change_time,NOW())/24/60/60),'天'),
  78. IF(floor((TIMESTAMPDIFF(SECOND,st.online_change_time,NOW())/60/60)%24)>0,concat(floor( (TIMESTAMPDIFF(SECOND,st.online_change_time,NOW())/60/60)%24),
  79. '小时'),IF(floor((TIMESTAMPDIFF(SECOND,st.online_change_time,NOW())/60)%60)>0,concat(floor( (TIMESTAMPDIFF(SECOND,st.online_change_time,NOW())/60)%60),'分钟'),"1分钟"))) as number_day
  80. </if>
  81. <if test="isStasis != null and isStasis != ''">
  82. st.anchor_change_time as online_change_time,
  83. TIMESTAMPDIFF(DAY,st.anchor_change_time,NOW()) as number_day
  84. </if>
  85. from ax_beidou_ship_status st
  86. inner join ax_beidou_ship_archives archives on st.device_id = archives.devide_no
  87. inner join ax_beidou_dept dept on archives.police_station_id = dept.pscbh
  88. LEFT JOIN ax_beidou_ship_location location on archives.devide_no = location.device_id
  89. where 1=1
  90. <if test="isOnline != null and isOnline != ''">
  91. and st.is_online = #{isOnline}
  92. </if>
  93. <if test="isStasis != null and isStasis != ''">
  94. and st.is_anchor = #{isStasis}
  95. and TIMESTAMPDIFF(MINUTE,st.anchor_change_time,NOW())>24*60*7
  96. </if>
  97. <if test="shipId != null and shipId != ''">and (archives.ship_id like concat('%', #{shipId},'%') or archives.devide_no like concat('%', #{devideNo},'%'))</if>
  98. <if test="deptId != null and deptId != ''">and dept.xw_dept_id like concat('%',#{deptId},'%')</if>
  99. <if test="stasisDay == 1">
  100. and st.anchor_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 15 DAY) AND DATE_SUB(NOW(),INTERVAL 7 DAY)
  101. </if>
  102. <if test="stasisDay == 2">
  103. and st.anchor_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 30 DAY) AND DATE_SUB(NOW(),INTERVAL 15 DAY)
  104. </if>
  105. <if test="stasisDay == 3">
  106. and st.anchor_change_time &lt; DATE_SUB(NOW(),INTERVAL 30 DAY)
  107. </if>
  108. <if test="offlineDay == 1">
  109. and st.online_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 8 DAY) AND NOW()
  110. </if>
  111. <if test="offlineDay == 2">
  112. and st.online_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 30 DAY) AND DATE_SUB(NOW(),INTERVAL 8 DAY)
  113. </if>
  114. <if test="offlineDay == 3">
  115. and st.online_change_time &lt; DATE_SUB(NOW(),INTERVAL 30 DAY)
  116. </if>
  117. <if test="sortField != null and sortField != ''">ORDER BY ${sortField} </if>
  118. <if test="sortType != null and sortType != ''">${sortType}</if>
  119. <if test="sortField == null or sortField == ''">ORDER BY st.online_change_time DESC</if>
  120. </select>
  121. <select id="stasisShipTotal" parameterType="string" resultType="stasisShipStatistics">
  122. select count(1) as shipTotal,
  123. IFNULL(SUM(CASE WHEN st.anchor_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 15 DAY) AND DATE_SUB(NOW(),INTERVAL 7 DAY) THEN 1 ELSE 0 END),'0') as smallDay,
  124. IFNULL(SUM(CASE WHEN st.anchor_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 30 DAY) AND DATE_SUB(NOW(),INTERVAL 15 DAY) THEN 1 ELSE 0 END),'0') as middleDay,
  125. IFNULL(SUM(CASE WHEN st.anchor_change_time &lt; DATE_SUB(NOW(),INTERVAL 30 DAY) THEN 1 ELSE 0 END),'0') as largeDay
  126. from ax_beidou_ship_status st
  127. inner join ax_beidou_ship_archives archives on st.device_id = archives.devide_no
  128. <if test="deptId != null and deptId != ''">
  129. inner join ax_beidou_dept dept on archives.police_station_id = dept.pscbh
  130. </if>
  131. where st.is_anchor='TRUE'
  132. and TIMESTAMPDIFF(MINUTE,st.anchor_change_time,NOW())>24*60*7
  133. <if test="shipId != null and shipId != ''">and (archives.ship_id like concat('%', #{shipId},'%') or archives.devide_no like concat('%', #{devideNo},'%'))</if>
  134. <if test="deptId != null and deptId != ''">and dept.xw_dept_id like concat('%',#{deptId},'%')</if>
  135. </select>
  136. <select id="offlineShipTotal" parameterType="string" resultType="offlineShipStatistics">
  137. select count(1) as shipTotal,
  138. IFNULL(SUM(CASE WHEN st.online_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 8 DAY) AND NOW() THEN 1 ELSE 0 END),'0') as smallDay,
  139. IFNULL(SUM(CASE WHEN st.online_change_time BETWEEN DATE_SUB(NOW(),INTERVAL 30 DAY) AND DATE_SUB(NOW(),INTERVAL 8 DAY) THEN 1 ELSE 0 END),'0') as middleDay,
  140. IFNULL(SUM(CASE WHEN st.online_change_time &lt; DATE_SUB(NOW(),INTERVAL 30 DAY) THEN 1 ELSE 0 END),'0') as largeDay
  141. from ax_beidou_ship_status st
  142. RIGHT join ax_beidou_ship_archives archives on st.device_id = archives.devide_no
  143. <if test="deptId != null and deptId != ''">
  144. inner join ax_beidou_dept dept on archives.police_station_id = dept.pscbh
  145. </if>
  146. where st.is_online='OFFLINE'
  147. <if test="shipId != null and shipId != ''">and (archives.ship_id like concat('%', #{shipId},'%') or archives.devide_no like concat('%', #{devideNo},'%'))</if>
  148. <if test="deptId != null and deptId != ''">and dept.xw_dept_id like concat('%',#{deptId},'%')</if>
  149. </select>
  150. <update id="updateMark" parameterType="string">
  151. update ax_beidou_ship_status set is_online = #{mark}, online_change_time = NOW()
  152. where device_id = #{devideNo}
  153. </update>
  154. </mapper>