Browse Source

航道院AIS查询接口添加时间范围过滤(bug修改)

sbj 5 months ago
parent
commit
f2a68f0925

+ 3 - 3
ghjg-item-datashare-server/src/main/resources/mapper/CommonMapper.xml

@@ -254,7 +254,7 @@
     from (select T.MMSI                                                                mmsi,
                  T1.DIRECTION                                                          direction,
                  T1.VELOCITY                                                           velocity,
-                 T.LAST_UPDATE_DATE                                                    lastUpdateDate,
+                 T1.GPSTIME                                                            lastUpdateDate,
                  T1.LATITUDE                                                           latitude,
                  T1.LONGITUDE                                                          longtitude,
                  T.SHIP_NAME_EN                                                        shipNameEn,
@@ -275,8 +275,8 @@
           where t1.LATITUDE >= #{minLat}
             and t1.LATITUDE <= #{maxLat}
             and t1.LONGITUDE >= #{minLon}
-            and t1.LONGITUDE <= #{maxLon})
-            and t1.gpstime > sysdate - 30/24/60
+            and t1.LONGITUDE <= #{maxLon}
+            and t1.gpstime > sysdate - 30/24/60 )
     where rn = 1
   </select>