|
@@ -401,10 +401,10 @@
|
|
|
select count(1) from ghjg_dynamic.vw_gpsinfo_realtime t
|
|
|
left join ghjg_basics.mvw_boat_info b on t.deviceid = b.mmsi
|
|
|
where 1=1
|
|
|
- <if test="mmsi != null">
|
|
|
+ <if test="mmsi != null and mmsi != ''">
|
|
|
and t.deviceid = #{mmsi}
|
|
|
</if>
|
|
|
- <if test="shipName != null">
|
|
|
+ <if test="shipName != null and shipName != ''">
|
|
|
and b.ship_name_cn = #{shipName}
|
|
|
</if>
|
|
|
and t.GPSTIME > sysdate - 30
|