ShipArchivesMapper.xml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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.archives.mapper.ShipArchivesMapper">
  6. <resultMap type="shipArchivesData" id="ShipResult">
  7. <id property="shipId" column="ship_id" />
  8. <result property="devideNo" column="devide_no" />
  9. <result property="shipType" column="ship_type" />
  10. <result property="jobType" column="job_type" />
  11. <result property="jobWay" column="job_way" />
  12. <result property="ownerName" column="owner_name" />
  13. <result property="ownerTelNo" column="owner_tel_no" />
  14. <result property="shipLength" column="ship_length" />
  15. <result property="shipWidth" column="ship_width" />
  16. <result property="shipMaterial" column="ship_material" />
  17. <result property="policeStationId" column="police_station_id" />
  18. <result property="deptName" column="dept_name" />
  19. <result property="ownerCompany" column="owner_company" />
  20. <result property="createTime" column="create_time" />
  21. <result property="modifyTime" column="modify_time" />
  22. <result property="ownerType" column="owner_type" />
  23. <result property="lastStatus" column="status" />
  24. <result property="deviceStatus" column="device_status" />
  25. <result property="longitude" column="longitude" />
  26. <result property="latitude" column="latitude" />
  27. <result property="location" column="location" />
  28. <result property="kwh" column="kwh"/>
  29. </resultMap>
  30. <resultMap id="disposeResult" type="ShipDisposeResult">
  31. <id property="id" column="id"></id>
  32. <result property="warningId" column="warning_id"/>
  33. <result property="warningTime" column="warning_time"/>
  34. <result property="disposeType" column="dispose_type"/>
  35. <result property="disposeSuggestion" column="dispose_suggestion"/>
  36. <result property="disposePicture" column="dispose_picture"/>
  37. <result property="disposeUserId" column="dispose_user_id"/>
  38. <result property="disposeTime" column="dispose_time"/>
  39. </resultMap>
  40. <select id="selectByDevideNo" parameterType="string" resultMap="ShipResult">
  41. select * from ax_bd_ship_archives where devide_no=#{devideNo}
  42. </select>
  43. <update id="updateById" parameterType="shipArchivesData" >
  44. update ax_beidou_ship_archives
  45. <set>
  46. <if test="shipId != null and shipId != ''">ship_id = #{shipId},</if>
  47. <if test="shipType != null and shipType != ''">ship_type = #{shipType},</if>
  48. <if test="jobType != null and jobType != ''">job_type = #{jobType},</if>
  49. <if test="jobWay != null and jobWay != ''">job_way = #{jobWay},</if>
  50. <if test="ownerName != null and ownerName != ''">owner_name = #{ownerName},</if>
  51. <if test="ownerTelNo != null and ownerTelNo != ''">owner_tel_no = #{ownerTelNo},</if>
  52. <if test="shipLength != null">ship_length = #{shipLength},</if>
  53. <if test="shipWidth != null">ship_width = #{shipWidth},</if>
  54. <if test="shipMaterial != null">ship_material = #{shipMaterial},</if>
  55. <if test="policeStationId != null and policeStationId != ''">police_station_id = #{policeStationId},</if>
  56. <if test="ownerCompany != null and ownerCompany != ''">owner_company = #{ownerCompany},</if>
  57. <if test="createTime != null">create_time = #{createTime},</if>
  58. <if test="modifyTime != null">modify_time = #{modifyTime},</if>
  59. location_time = now(),
  60. <if test="ownerType != null and ownerType != ''">owner_type = #{ownerType}</if>
  61. </set>
  62. where devide_no = #{devideNo}
  63. </update>
  64. <insert id="insertShip" parameterType="shipArchivesData">
  65. insert into ax_beidou_ship_archives (
  66. <if test="shipId != null and shipId != ''">ship_id,</if>
  67. <if test="devideNo != null and devideNo != ''">devide_no,</if>
  68. <if test="shipType != null and shipType != ''">ship_type,</if>
  69. <if test="jobType != null and jobType != ''">job_type,</if>
  70. <if test="jobWay != null and jobWay != ''">job_way,</if>
  71. <if test="ownerName != null and ownerName != ''">owner_name,</if>
  72. <if test="ownerTelNo != null and ownerTelNo != ''">owner_tel_no,</if>
  73. <if test="shipLength != null">ship_length,</if>
  74. <if test="shipWidth != null">ship_width,</if>
  75. <if test="shipMaterial != null">ship_material,</if>
  76. <if test="policeStationId != null and policeStationId != ''">police_station_id,</if>
  77. <if test="ownerCompany != null and ownerCompany != ''">owner_company,</if>
  78. <if test="createTime != null">create_time,</if>
  79. <if test="modifyTime != null">modify_time,</if>
  80. location_time,
  81. <if test="ownerType != null and ownerType != ''">owner_type</if>
  82. )values(
  83. <if test="shipId != null and shipId != ''">#{shipId},</if>
  84. <if test="devideNo != null and devideNo != ''">#{devideNo},</if>
  85. <if test="shipType != null and shipType != ''">#{shipType},</if>
  86. <if test="jobType != null and jobType != ''">#{jobType},</if>
  87. <if test="jobWay != null and jobWay != ''">#{jobWay},</if>
  88. <if test="ownerName != null and ownerName != ''">#{ownerName},</if>
  89. <if test="ownerTelNo != null and ownerTelNo != ''">#{ownerTelNo},</if>
  90. <if test="shipLength != null">#{shipLength},</if>
  91. <if test="shipWidth != null">#{shipWidth},</if>
  92. <if test="shipMaterial != null">#{shipMaterial},</if>
  93. <if test="policeStationId != null and policeStationId != ''">#{policeStationId},</if>
  94. <if test="ownerCompany != null and ownerCompany != ''">#{ownerCompany},</if>
  95. <if test="createTime != null">#{createTime},</if>
  96. <if test="modifyTime != null">#{modifyTime},</if>
  97. now(),
  98. <if test="ownerType != null and ownerType != ''">#{ownerType}</if>
  99. )
  100. </insert>
  101. <select id="selectShipArchivesList" parameterType="shipArchivesREQ" resultMap="ShipResult">
  102. SELECT
  103. archives.*,
  104. ( CASE sta.is_online WHEN 'ONLINE' THEN 1 WHEN 'OFFLINE' THEN 2 WHEN 'MARK' THEN dispose_temp.dispose_type ELSE 2 END ) AS STATUS,
  105. IFNULL(dispose_temp.dispose_type,'0') as device_status,
  106. dept.pscmc AS dept_name,
  107. location.longitude,
  108. location.latitude,
  109. location.location,
  110. location.kwh
  111. FROM
  112. ax_beidou_ship_archives archives
  113. LEFT JOIN ax_beidou_ship_status sta ON archives.devide_no = sta.device_id
  114. INNER JOIN ax_beidou_dept dept ON archives.police_station_id = dept.pscbh
  115. LEFT JOIN ax_beidou_ship_location location ON archives.devide_no = location.device_id
  116. LEFT JOIN (select devide_no,max(id) as id from ax_beidou_ship_dispose GROUP BY devide_no) as dispose on dispose.devide_no = archives.devide_no
  117. LEFT JOIN ax_beidou_ship_dispose dispose_temp on dispose.id = dispose_temp.id
  118. where
  119. 1=1
  120. <if test="shipId != null and shipId != ''">and (archives.ship_id like concat('%', #{shipId},'%') or archives.devide_no like concat('%', #{devideNo},'%'))</if>
  121. <if test="deptId != null and deptId != ''">and dept.xw_dept_id like concat('%',#{deptId},'%')</if>
  122. <if test="shipType != null and shipType != ''">and archives.ship_type = #{shipType}</if>
  123. <if test="online != null and online != ''">and sta.is_online = #{online}</if>
  124. <if test="inPort != null and inPort != ''">and sta.is_inport = #{inPort}</if>
  125. </select>
  126. <select id="selectById" parameterType="string" resultMap="ShipResult">
  127. select archives.*,
  128. (CASE sta.is_online WHEN 'ONLINE' THEN 1 WHEN 'OFFLINE' THEN 2 WHEN 'MARK' THEN 3 END) as status,
  129. IFNULL(dispose.dispose_type,'0') as device_status,location.kwh as kwh,focus.focus_id as focusId,
  130. dept.pscmc as dept_name
  131. from ax_beidou_ship_archives archives
  132. LEFT JOIN ax_beidou_ship_status sta ON archives.devide_no = sta.device_id
  133. INNER JOIN ax_beidou_dept dept on archives.police_station_id = dept.pscbh
  134. LEFT JOIN (select id,devide_no,dispose_type from ax_beidou_ship_dispose
  135. where devide_no=#{devideNo} ORDER BY id DESC limit 1) as dispose on dispose.devide_no = archives.devide_no
  136. LEFT JOIN ax_beidou_ship_location location on archives.devide_no = location.device_id
  137. LEFT JOIN ax_beidou_focus_ship focus on archives.devide_no = focus.devide_no and focus.user_id=#{userId}
  138. where archives.devide_no=#{devideNo}
  139. </select>
  140. <select id="getShipTotal" parameterType="string" resultType="shipArchivesTotal">
  141. select COUNT(*) as shipTotal,
  142. SUM(CASE sta.is_online WHEN 'MARK' THEN 1 ELSE 0 END ) as mark,
  143. SUM(CASE sta.is_online WHEN 'ONLINE' THEN 1 ELSE 0 END ) as onlineTotal,
  144. SUM(CASE sta.is_online WHEN 'OFFLINE' THEN 1 ELSE 0 END ) as offlineTotal,
  145. SUM(CASE sta.is_inport WHEN 'TRUE' THEN 1 ELSE 0 END) as inport,
  146. SUM(CASE sta.is_inport WHEN 'FALSE' THEN 1 ELSE 0 END) as offport
  147. from ax_beidou_ship_archives archives
  148. INNER JOIN ax_beidou_dept dept ON archives.police_station_id = dept.pscbh
  149. LEFT JOIN ax_beidou_ship_status sta ON archives.devide_no = sta.device_id
  150. where 1=1
  151. <if test="deptId != null and deptId != ''">and dept.xw_dept_id like concat('%',#{deptId},'%')</if>
  152. </select>
  153. <select id="selectDisposeById" parameterType="string" resultMap="disposeResult">
  154. select dis.id,dis.warning_id,dis.dispose_type,dis.dispose_suggestion,dis.dispose_picture,
  155. dis.dispose_user_id,dis.dispose_time,record.warning_time from ax_beidou_ship_dispose dis
  156. inner join ax_beidou_warning_record record on dis.warning_id = record.id
  157. where (record.`start` is null or record.`start` != 'false')
  158. <if test="warningId != null and warningId != ''">and dis.warning_id = #{warningId}</if>
  159. <if test="devideNo != null and devideNo != ''">and record.device_id = #{devideNo}</if>
  160. ORDER BY dispose_time DESC
  161. limit 1
  162. </select>
  163. </mapper>