|
@@ -397,9 +397,16 @@
|
|
|
where t.reportTime >= sysdate-2 and t.reportTime <= sysdate
|
|
|
</select>
|
|
|
|
|
|
- <select id="getPdShipCountByMmsi" resultType="java.lang.Integer">
|
|
|
+ <select id="getPdShipCountByMmsiAndShipName" resultType="java.lang.Integer">
|
|
|
select count(1) from ghjg_dynamic.vw_gpsinfo_realtime t
|
|
|
- where t.deviceid = #{mmsi}
|
|
|
+ left join ghjg_basics.mvw_boat_info b on t.deviceid = b.mmsi
|
|
|
+ where 1=1
|
|
|
+ <if test="mmsi != null">
|
|
|
+ and t.deviceid = #{mmsi}
|
|
|
+ </if>
|
|
|
+ <if test="shipName != null">
|
|
|
+ and b.ship_name_cn = #{shipName}
|
|
|
+ </if>
|
|
|
and t.GPSTIME > sysdate - 30
|
|
|
and t.MAPX > -2000 and t.MAPX < 48000
|
|
|
and t.MAPY > -48000 and t.MAPY < 18000
|
|
@@ -408,7 +415,13 @@
|
|
|
<select id="getPdShipCountByShipId" resultType="java.lang.Integer">
|
|
|
select count(1) from ghjg_dynamic.vw_gpsinfo_realtime t
|
|
|
left join ghjg_basics.mvw_boat_info b on t.deviceid = b.mmsi
|
|
|
- where b.ship_id = #{shipId}
|
|
|
+ where 1=1
|
|
|
+ <if test="shipId != null">
|
|
|
+ and b.ship_id = #{shipId}
|
|
|
+ </if>
|
|
|
+ <if test="shipName != null">
|
|
|
+ and b.ship_name_cn = #{shipName}
|
|
|
+ </if>
|
|
|
and t.GPSTIME > sysdate - 1/24
|
|
|
and t.MAPX > -2000 and t.MAPX < 48000
|
|
|
and t.MAPY > -48000 and t.MAPY < 18000
|