소스 검색

更新 地图组件

wzg 1 년 전
부모
커밋
0728842fef
4개의 변경된 파일5063개의 추가작업 그리고 224개의 파일을 삭제
  1. 216 49
      src/components/AMapContainer.vue
  2. 27 96
      src/views/index/Index.vue
  3. 4800 0
      src/views/voyage/data.js
  4. 20 79
      src/views/voyage/voyageDetail.vue

+ 216 - 49
src/components/AMapContainer.vue

@@ -1,9 +1,30 @@
 <template>
-  <div :id="mapId"></div>
+  <div>
+    <div :id="mapId" class="container"></div>
+    <el-dialog v-model="mediaModal" :title="modalTitle" destroy-on-close>
+      <el-image
+        v-if="modalType == 1"
+        style="height: 60vh; display: flex"
+        fit="contain"
+        :src="currentUrl"
+        :preview-src-list="modalPreview"
+      ></el-image>
+      <video
+        v-else
+        autoplay
+        controls
+        style="width: 100%; height: 60vh"
+        :src="currentUrl"
+      ></video>
+    </el-dialog>
+  </div>
 </template>
 <script setup>
-import { onMounted, onUnmounted, ref } from "vue";
+import { onMounted, onUnmounted, ref, nextTick } from "vue";
 import AMapLoader from "@amap/amap-jsapi-loader";
+import router from "../router";
+import { useRoute } from "vue-router";
+const route = useRoute();
 const props = defineProps({
   longitude: {
     type: Number,
@@ -17,6 +38,22 @@ const props = defineProps({
     type: Array,
     default: [],
   },
+  medias: {
+    type: Array,
+    default: [],
+  },
+  coordinates: {
+    type: Array,
+    default: [],
+  },
+  showLabel: {
+    type: Boolean,
+    default: false,
+  },
+  handleAble: {
+    type: Boolean,
+    default: false,
+  },
   loadPorts: {
     type: Array,
     default: [],
@@ -29,6 +66,22 @@ const props = defineProps({
     type: String,
     default: "container",
   },
+  zoomEnable: {
+    type: Boolean,
+    default: true,
+  },
+  dragEnable: {
+    type: Boolean,
+    default: true,
+  },
+  ToolBar: {
+    type: Boolean,
+    default: true,
+  },
+  HawkEye: {
+    type: Boolean,
+    default: true,
+  },
 });
 const mapId = ref(props.mapId);
 const map = ref({});
@@ -42,48 +95,30 @@ function initMap() {
         zoom: 12, // 初始化地图级别
         center: [props.longitude, props.latitude], // 初始化地图中心点位置
         mapStyle: "amap://styles/f48d96805f5fa7f5aada657c5ee37017",
-        zoomEnable: true,
-        dragEnable: true,
+        zoomEnable: props.zoomEnable,
+        dragEnable: props.dragEnable,
       });
-      let markers = [];
+      if (props.ToolBar || props.HawkEye) {
+        map.value.plugin(["AMap.ToolBar", "AMap.HawkEye"], function () {
+          if (props.ToolBar) {
+            let ToolBar = new AMap.ToolBar({
+              position: {
+                top: "40px",
+                right: "40px",
+              },
+            });
+            map.value.addControl(ToolBar);
+          }
 
-      for (let i of props.ships) {
-        let marker = generateMarker({
-          longitude: i.longitude,
-          latitude: i.latitude,
-          label: i.shipName,
-        });
-        markers.push(marker);
-      }
-      for (let i of props.loadPorts) {
-        let marker = generateMarker({
-          longitude: i.longitude,
-          latitude: i.latitude,
-          iconSrc:
-            "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/port-green.png",
-          iconWidth: 30,
-          iconHeight: 30,
-          offsetY: -30,
-          label: "装货港",
-        });
-        markers.push(marker);
-      }
-      for (let i of props.dischargePorts) {
-        let marker = generateMarker({
-          longitude: i.longitude,
-          latitude: i.latitude,
-          iconSrc:
-            "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/port-red.png",
-          iconWidth: 30,
-          iconHeight: 30,
-          offsetY: -30,
-          label: "卸货港",
+          if (props.HawkEye) {
+            let HawkEye = new AMap.HawkEye({
+              opened: false,
+            });
+
+            map.value.addControl(HawkEye);
+          }
         });
-        markers.push(marker);
       }
-      let overlayGroups = new AMap.OverlayGroup(markers);
-      map.value.add(overlayGroups);
-      map.value.setFitView(markers, true, [150, 50, 100, 100], 9);
     })
     .catch((e) => {
       console.log(e);
@@ -91,20 +126,22 @@ function initMap() {
 }
 
 function generateMarker({
+  id = 0,
   longitude = 120.498409,
   latitude = 32.039665,
-  iconSrc = "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/ship-red-icon.png",
-  offsetX = -80,
-  offsetY = -20,
+  offsetX = -15,
+  offsetY = -25,
+  zIndex = 1,
   label = "",
-  iconWidth = 20,
-  iconHeight = 20,
+  handleType = "",
+  viewUrl = "",
+  content = `<div>
+          <img src='https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/ship-red-icon.png' style='display:block;width:20px;height:20px;margin:6px auto'/
+        </div>`,
 }) {
   let marker = new AMap.Marker({
-    content: `<div style='width:160px'>
-          <img src='${iconSrc}' style='display:block;width:${iconWidth}px;height:${iconHeight}px;margin:6px auto'/
-        </div>`,
-    zIndex: 5,
+    content,
+    zIndex,
     position: new AMap.LngLat(longitude, latitude),
     offset: new AMap.Pixel(offsetX, offsetY),
   });
@@ -116,14 +153,139 @@ function generateMarker({
       style: "",
     });
   }
+  if (handleType === "route") {
+    marker.on("click", () => {
+      goTo("/voyage/voyageDetail", {
+        id,
+      });
+    });
+  }
+
+  if (handleType === "media") {
+    marker.on("click", () => {
+      openMediaModal(viewUrl, 1, "航次图片");
+    });
+  }
 
   return marker;
 }
+//ship-orange-icon
+function generateMarkers(points, type) {
+  let markers = [];
+  for (let i of points) {
+    let config = {
+      longitude: i.longitude,
+      latitude: i.latitude,
+    };
+    switch (type) {
+      case "ships": {
+        config.label = i.shipName;
+        config.id = i.voyageId;
+        config.handleType = "route";
+        if (route.path === "/index") {
+          config.content = `<div>
+          <img src='https://frontend-1255802371.cos.ap-shanghai.myqcloud.com/ship-orange-icon.png' style='display:block;width:30px;height:30px;margin:6px auto'/
+        </div>`;
+        }
+        break;
+      }
+      case "loadPorts": {
+        config.content = `<div>
+          <img src='https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/port-green.png' style='display:block;width:30px;height:30px;margin:6px auto'/
+        </div>`;
+        config.label = "装货港";
+        break;
+      }
+      case "dischargePorts": {
+        config.content = `<div>
+          <img src='https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/port-red.png' style='display:block;width:30px;height:30px;margin:6px auto'/
+        </div>`;
+        config.label = "卸货港";
+        break;
+      }
+      case "medias": {
+        config.content = `<div style='width:160px'>
+        ${
+          i.audit == 1
+            ? `<img id='img${i.id}' style='width:160px;height:160px;object-fit:contain;' src='${i.viewUrl}'/>`
+            : ``
+        }
+        <img src='https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/ship-red-icon.png' style='display:block;width:20px;height:20px;margin:6px auto'/
+      </div>`;
+        config.offsetX = -80;
+        config.offsetY = i.audit == 1 ? -185 : -20;
+        config.zIndex = 15;
+        config.handleType = "media";
+        config.viewUrl = i.viewUrl;
+        break;
+      }
+      case "coordinates": {
+        config.content = `<div>
+          <img src='https://frontend-1255802371.cos.ap-shanghai.myqcloud.com/green-circle.png' style='display:block;width:20px;height:20px;margin:6px auto'/
+        </div>`;
+        config.offsetX = -10;
+        config.offsetY = -17;
+        break;
+      }
+    }
+    markers.push(generateMarker(config));
+  }
+  return markers;
+}
+
+async function drawMarkers() {
+  await nextTick();
+  let markers = [
+    ...generateMarkers(props.ships, "ships"),
+    ...generateMarkers(props.loadPorts, "loadPorts"),
+    ...generateMarkers(props.dischargePorts, "dischargePorts"),
+    ...generateMarkers(props.medias, "medias"),
+    ...generateMarkers(props.coordinates, "coordinates"),
+  ];
+
+  let overlayGroups = new AMap.OverlayGroup(markers);
+  map.value.add(overlayGroups);
+  setFitView(markers);
+}
+
+function setFitView(markers = [], zoom = 9) {
+  map.value.setFitView(markers, true, [150, 50, 100, 100], zoom);
+}
+
+function clearMap() {
+  map.value.clearMap();
+}
+
+function goTo(path = "/voyage/voyageDetail", query = {}) {
+  router.push({
+    path,
+    query,
+  });
+}
+
+let currentUrl = ref("");
+let mediaModal = ref(false);
+let modalType = ref(1);
+let modalTitle = ref("");
+let modalPreview = ref([]);
+function openMediaModal(url, type, title, item = {}) {
+  modalPreview.value = [url];
+  modalTitle.value = title;
+  modalType.value = type;
+  currentUrl.value = url;
+  mediaModal.value = true;
+}
 
 onMounted(() => {
   initMap();
 });
 
+defineExpose({
+  clearMap,
+  drawMarkers,
+  initMap,
+});
+
 onUnmounted(() => {
   map.value.destroy();
 });
@@ -133,4 +295,9 @@ onUnmounted(() => {
 #container {
   width: 100%;
 }
+
+.container {
+  width: 100%;
+  height: 100%;
+}
 </style>

+ 27 - 96
src/views/index/Index.vue

@@ -2,7 +2,13 @@
   <div v-loading="isLoading" style="height: 100%">
     <div class="df main">
       <div class="left">
-        <div id="map-container" class="map-container"></div>
+        <AMapContainer
+          ref="mapRef"
+          class="map-container"
+          :ships="ships"
+          :showLabel="true"
+          :handleAble="true"
+        ></AMapContainer>
         <div class="df aic tabs">
           <div
             @click="changeVoyageType(0)"
@@ -274,7 +280,16 @@
   </div>
 </template>
 <script setup>
-import { ref, reactive, toRefs, computed, onMounted, inject } from "vue";
+import {
+  ref,
+  reactive,
+  toRefs,
+  computed,
+  onMounted,
+  onUnmounted,
+  inject,
+  nextTick,
+} from "vue";
 import { ElNotification } from "element-plus";
 import store from "../../store";
 import router from "../../router";
@@ -284,83 +299,9 @@ import api from "../../apis/fetch";
 import downloadBlobFile from "../../utils/downloadBlobFile";
 import url from "../../apis/config";
 import AMapLoader from "@amap/amap-jsapi-loader";
-let map = ref({});
 let cargoOwnerId = localStorage.userId;
 let echarts = inject("ec");
 
-async function initMap() {
-  AMapLoader.load({
-    key: "0b84075e96d01623f704867a601139bb", // 申请好的Web端开发者Key,首次调用 load 时必填
-    version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15需要使用的的插件列表,如比例尺'AMap.Scale',支持添加多个如:['...','...']
-  }).then((AMap) => {
-    map.value = new AMap.Map("map-container", {
-      zoom: 9, //级别
-      zooms: [4, 9],
-      center: [120.563757, 31.891174], //中心点坐标
-      mapStyle: "amap://styles/f48d96805f5fa7f5aada657c5ee37017",
-      zoomEnable: true,
-      dragEnable: true,
-    });
-    map.value.plugin(["AMap.ToolBar", "AMap.HawkEye"], function () {
-      let ToolBar = new AMap.ToolBar({
-        position: {
-          top: "40px",
-          right: "40px",
-        },
-      });
-      let HawkEye = new AMap.HawkEye({
-        opened: false,
-      });
-      map.value.addControl(ToolBar);
-      map.value.addControl(HawkEye);
-    });
-    drawMarkers();
-  });
-}
-
-function drawMarkers() {
-  let markers = [];
-  for (let i of indexData.value.mapPoints) {
-    if (i.latitude && i.longitude) {
-      let content = `<div style='width:160px'>
-        <img src='https://frontend-1255802371.cos.ap-shanghai.myqcloud.com/ship-orange-icon.png' style='display:block;width:20px;height:20px;margin:6px auto'/
-      </div>`;
-
-      let marker = new AMap.Marker({
-        content,
-        position: new AMap.LngLat(i.longitude, i.latitude),
-        offset: new AMap.Pixel(-80, -20),
-      });
-      let infoWindowContent = `<div class='window-title pointer' style='font-size:12px'>${i.shipName}</div>
-      <div style='font-size:12px;margin-top:5px'>查看详情</div>
-      `;
-      let infoWindow = new AMap.InfoWindow({
-        position: new AMap.LngLat(i.longitude, i.latitude),
-        offset: new AMap.Pixel(0, -10),
-        content: infoWindowContent,
-      });
-
-      marker.on("mouseover", function () {
-        infoWindow.open(map.value);
-      });
-      marker.setLabel({
-        direction: "top",
-        offset: new AMap.Pixel(0, 0), //设置文本标注偏移量
-        content: `${i.shipName}`, //设置文本标注内容
-        style: "",
-      });
-
-      marker.on("click", () => {
-        goToVoyageDetail(i.voyageId);
-      });
-
-      markers.push(marker);
-    }
-  }
-  let overlayGroups = new AMap.OverlayGroup(markers);
-  map.value.add(overlayGroups);
-  map.value.setFitView(markers, true, [200, 50, 50, 50], 18);
-}
 let status = ref(3);
 function changeVoyageType(s) {
   status.value = s;
@@ -371,19 +312,11 @@ function changeVoyageType(s) {
     abnormalStatus: "",
     cargoId: "",
   };
+  mapRef.value.clearMap();
   getIndexSelect();
   getIndexData();
 }
 
-function goToVoyageDetail(id) {
-  router.push({
-    path: "/voyage/voyageDetail",
-    query: {
-      id,
-    },
-  });
-}
-
 let postData = ref({
   status: 0,
   loadPortId: "",
@@ -400,6 +333,8 @@ let indexData = ref({
   unfinshDiscTons: "",
 });
 let isLoading = ref(false);
+const mapRef = ref(null);
+const ships = ref([]);
 async function getIndexData(type) {
   isLoading.value = true;
   postData.value.status = status.value;
@@ -410,14 +345,13 @@ async function getIndexData(type) {
     isLoading.value = false;
     if (res.data.status == 0) {
       indexData.value = res.data.result;
+      ships.value = indexData.value.mapPoints;
       if (type == "init") {
-        initMap();
         drawPie("init");
       } else {
-        map.value.clearMap();
-        drawMarkers();
         drawPie();
       }
+      mapRef.value.drawMarkers();
     } else {
       indexData.value = {
         finshDiscTons: 0,
@@ -426,13 +360,13 @@ async function getIndexData(type) {
         totalVoyageNum: 0,
         unfinshDiscTons: 0,
       };
+      ships.value = [];
+
       if (type == "init") {
-        initMap();
         drawPie("init");
       } else {
-        map.value.clearMap();
-        drawMarkers();
         drawPie();
+        mapRef.value.drawMarkers();
       }
     }
   } catch (error) {
@@ -644,12 +578,9 @@ async function getIndexSelect() {
   }
 }
 
-router.beforeEach(() => {
-  try {
-    myChart.value.dispose();
-  } catch (error) {}
+onUnmounted(() => {
+  echarts.dispose(myChart.value); // 在组件销毁前销毁 ECharts 实例
 });
-
 onMounted(() => {
   getIndexData("init");
   getIndexSelect();

+ 4800 - 0
src/views/voyage/data.js

@@ -0,0 +1,4800 @@
+let data = {
+  result: {
+    voyage: {
+      id: 246,
+      code: "JJ11659659718-1",
+      voyageName: "嘉吉-武汉-春风999-202208",
+      cargoOwnerId: 1,
+      cargoOwnerName: "嘉吉",
+      shipId: 103,
+      shipOwnerId: 95,
+      shipOwnerPhone: "18697577673",
+      shipName: "春风999",
+      shipMmsi: "413854488",
+      cargoId: 12,
+      cargo: "粉末豆粕",
+      tons: 1500,
+      loadPortId: 40,
+      loadPort: "南通",
+      dischargePortIds: "1",
+      dischargePorts: "武汉",
+      reasonableUnloadingDays: 0,
+      transStatus: 0,
+      arrivalLoadPortTime: "2022/08/01 00:00:00",
+      loadStartTime: "2022/08/05 00:00:00",
+      loadEndTime: "2022/08/05 00:00:00",
+      abnormalStatus: 0,
+      abnormalUpdateStatus: 1,
+      startTime: "2022/08/05 08:35:18",
+      actualLoadTons: 1498.764,
+      totalDischargeTons: 6992.499999999999,
+      totalDischargePieces: 0,
+      hasInsurance: 1,
+      infoUpdateTime: "2024/04/04 20:50:35",
+      createTime: "2022/08/05 08:35:18",
+      voyageStatus: 1,
+      voyageDetails: [
+        {
+          id: 408,
+          voyageId: 246,
+          portId: 1,
+          reasonableUnloadingDays: 0,
+          setSailTime: "2022/08/03 00:00:00",
+          expectedArrivalTime: "2022/08/09 00:00:00",
+          expectedArrivalUpdateStatus: 1,
+          actualArrivalTime: "2022/08/13 00:00:00",
+          dischargeStartTime: "2023/03/15 00:00:00",
+          actualDischargeTons: 0,
+          transStatus: 2,
+          sort: 1,
+          createTime: "2022/08/05 08:35:18",
+          portName: "武汉",
+        },
+      ],
+      month: 7,
+      canComplete: false,
+      canCancel: false,
+    },
+    coordinates: [
+      {
+        id: 5622,
+        shipId: 103,
+        userId: 95,
+        longitude: "119.88021158854167",
+        latitude: "32.07409423828125",
+        source: 1,
+        createTime: "2022/08/07 12:38:28",
+      },
+      {
+        id: 5642,
+        shipId: 103,
+        userId: 95,
+        longitude: "118.99334391276042",
+        latitude: "32.16410888671875",
+        source: 1,
+        createTime: "2022/08/08 09:17:22",
+      },
+      {
+        id: 5682,
+        shipId: 103,
+        userId: 95,
+        longitude: "117.70158610026041",
+        latitude: "30.814482964409724",
+        source: 1,
+        createTime: "2022/08/09 16:10:56",
+      },
+      {
+        id: 5702,
+        shipId: 103,
+        userId: 95,
+        longitude: "116.90554280598958",
+        latitude: "30.3191357421875",
+        source: 1,
+        createTime: "2022/08/10 10:12:33",
+      },
+      {
+        id: 5711,
+        shipId: 103,
+        userId: 95,
+        longitude: "115.89505316840278",
+        latitude: "29.721959364149306",
+        source: 1,
+        createTime: "2022/08/11 09:20:15",
+      },
+      {
+        id: 5730,
+        shipId: 103,
+        userId: 95,
+        longitude: "115.26587103949653",
+        latitude: "30.15038601345486",
+        source: 1,
+        createTime: "2022/08/12 09:25:57",
+      },
+      {
+        id: 5753,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.1862122938368",
+        latitude: "30.581204427083332",
+        source: 1,
+        createTime: "2022/08/13 12:19:53",
+      },
+      {
+        id: 5763,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.14889675564235",
+        latitude: "30.59424587673611",
+        source: 1,
+        createTime: "2022/08/13 17:34:13",
+      },
+      {
+        id: 5779,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.15169243706598",
+        latitude: "30.59471164279514",
+        source: 1,
+        createTime: "2022/08/14 12:15:42",
+      },
+      {
+        id: 5791,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.15062717013889",
+        latitude: "30.594737413194444",
+        source: 1,
+        createTime: "2022/08/15 09:23:12",
+      },
+      {
+        id: 5814,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.1524685329861",
+        latitude: "30.59647216796875",
+        source: 1,
+        createTime: "2022/08/16 09:58:15",
+      },
+      {
+        id: 5829,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.1530845811632",
+        latitude: "30.591848415798612",
+        source: 1,
+        createTime: "2022/08/17 09:30:23",
+      },
+      {
+        id: 5852,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.15087863498263",
+        latitude: "30.594676920572915",
+        source: 1,
+        createTime: "2022/08/18 09:34:26",
+      },
+      {
+        id: 5886,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.15248914930555",
+        latitude: "30.59163302951389",
+        source: 1,
+        createTime: "2022/08/19 08:34:39",
+      },
+      {
+        id: 5932,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.1543142361111",
+        latitude: "30.591798231336806",
+        source: 1,
+        createTime: "2022/08/20 09:08:16",
+      },
+      {
+        id: 5952,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.1542005750868",
+        latitude: "30.591759440104166",
+        source: 1,
+        createTime: "2022/08/21 10:02:50",
+      },
+      {
+        id: 5962,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.15787841796875",
+        latitude: "30.58958713107639",
+        source: 1,
+        createTime: "2022/08/22 09:07:34",
+      },
+      {
+        id: 5975,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.15317192925347",
+        latitude: "30.58773952907986",
+        source: 1,
+        createTime: "2022/08/23 09:00:50",
+      },
+      {
+        id: 5985,
+        shipId: 103,
+        userId: 95,
+        longitude: "114.15264784071181",
+        latitude: "30.59168891059028",
+        source: 1,
+        createTime: "2022/08/24 09:10:49",
+      },
+      {
+        id: 6051,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.949144694011",
+        latitude: "30.404096679688",
+        source: 2,
+        createTime: "2022/11/29 14:09:19",
+      },
+      {
+        id: 6218,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.949094509549",
+        latitude: "30.404036458334",
+        source: 2,
+        createTime: "2022/11/30 16:40:17",
+      },
+      {
+        id: 6490,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.19712890625",
+        latitude: "30.220719943577",
+        source: 2,
+        createTime: "2022/12/01 22:47:19",
+      },
+      {
+        id: 6520,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.197099338108",
+        latitude: "30.220720214844",
+        source: 2,
+        createTime: "2022/12/02 02:56:23",
+      },
+      {
+        id: 6759,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.278318142362",
+        latitude: "30.141270345053",
+        source: 2,
+        createTime: "2022/12/03 09:23:10",
+      },
+      {
+        id: 6896,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.269801161025",
+        latitude: "30.150204535591",
+        source: 2,
+        createTime: "2022/12/03 12:09:15",
+      },
+      {
+        id: 7235,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.423619791667",
+        latitude: "29.879896918403",
+        source: 2,
+        createTime: "2022/12/05 02:21:58",
+      },
+      {
+        id: 7434,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.423619791667",
+        latitude: "29.879896918403",
+        source: 2,
+        createTime: "2022/12/05 02:21:58",
+      },
+      {
+        id: 7518,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.678232150608",
+        latitude: "32.01532904731",
+        source: 2,
+        createTime: "2022/12/07 08:06:11",
+      },
+      {
+        id: 7671,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.074671766494",
+        latitude: "31.943486056858",
+        source: 2,
+        createTime: "2022/12/08 02:21:19",
+      },
+      {
+        id: 7966,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.450031195747",
+        latitude: "31.451599934896",
+        source: 2,
+        createTime: "2022/12/09 12:07:57",
+      },
+      {
+        id: 8183,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.180399848091",
+        latitude: "31.742349717882",
+        source: 2,
+        createTime: "2022/12/10 12:30:09",
+      },
+      {
+        id: 8326,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.174902615018",
+        latitude: "31.759258355035",
+        source: 2,
+        createTime: "2022/12/11 07:57:13",
+      },
+      {
+        id: 8665,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.667319878473",
+        latitude: "31.926754014757",
+        source: 2,
+        createTime: "2022/12/12 20:41:18",
+      },
+      {
+        id: 8740,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.78630452474",
+        latitude: "32.015774739584",
+        source: 2,
+        createTime: "2022/12/13 12:53:33",
+      },
+      {
+        id: 8963,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.786154785157",
+        latitude: "32.015814887153",
+        source: 2,
+        createTime: "2022/12/14 16:24:10",
+      },
+      {
+        id: 9092,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.786174587674",
+        latitude: "32.015754937066",
+        source: 2,
+        createTime: "2022/12/15 03:25:24",
+      },
+      {
+        id: 9488,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.542097981771",
+        latitude: "32.229909125435",
+        source: 2,
+        createTime: "2022/12/17 03:57:22",
+      },
+      {
+        id: 9762,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.962740342882",
+        latitude: "31.080805392796",
+        source: 2,
+        createTime: "2022/12/18 14:28:07",
+      },
+      {
+        id: 9876,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.283908962674",
+        latitude: "30.664310709636",
+        source: 2,
+        createTime: "2022/12/19 05:07:02",
+      },
+      {
+        id: 10336,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.631766221789",
+        latitude: "30.562132161459",
+        source: 2,
+        createTime: "2022/12/21 21:03:53",
+      },
+      {
+        id: 10648,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.579373372396",
+        latitude: "30.589717610678",
+        source: 2,
+        createTime: "2022/12/23 17:51:24",
+      },
+      {
+        id: 10861,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.579363335504",
+        latitude: "30.589697536893",
+        source: 2,
+        createTime: "2022/12/24 13:27:57",
+      },
+      {
+        id: 10977,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.579363335504",
+        latitude: "30.589697536893",
+        source: 2,
+        createTime: "2022/12/25 02:40:23",
+      },
+      {
+        id: 11165,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.579393174914",
+        latitude: "30.589677463108",
+        source: 2,
+        createTime: "2022/12/26 02:09:47",
+      },
+      {
+        id: 11445,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550072970921",
+        latitude: "30.65349310981",
+        source: 2,
+        createTime: "2022/12/27 11:19:08",
+      },
+      {
+        id: 11652,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550272352431",
+        latitude: "30.652872721355",
+        source: 2,
+        createTime: "2022/12/28 10:09:56",
+      },
+      {
+        id: 11938,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550441894532",
+        latitude: "30.652862141928",
+        source: 2,
+        createTime: "2022/12/29 17:31:15",
+      },
+      {
+        id: 12022,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.55040201823",
+        latitude: "30.652812228733",
+        source: 2,
+        createTime: "2022/12/30 07:42:11",
+      },
+      {
+        id: 12323,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550412055122",
+        latitude: "30.652832302518",
+        source: 2,
+        createTime: "2022/12/31 17:57:53",
+      },
+      {
+        id: 12451,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550412055122",
+        latitude: "30.652812228733",
+        source: 2,
+        createTime: "2023/01/01 08:59:02",
+      },
+      {
+        id: 12650,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550312228733",
+        latitude: "30.652752278646",
+        source: 2,
+        createTime: "2023/01/02 06:58:14",
+      },
+      {
+        id: 12818,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550432128907",
+        latitude: "30.65283203125",
+        source: 2,
+        createTime: "2023/01/03 05:57:35",
+      },
+      {
+        id: 13177,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550322265625",
+        latitude: "30.652832302518",
+        source: 2,
+        createTime: "2023/01/04 20:37:33",
+      },
+      {
+        id: 13306,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.550272352431",
+        latitude: "30.652872721355",
+        source: 2,
+        createTime: "2023/01/05 12:48:31",
+      },
+      {
+        id: 13518,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.549993489584",
+        latitude: "30.653663465712",
+        source: 2,
+        createTime: "2023/01/06 19:01:24",
+      },
+      {
+        id: 13692,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.55040201823",
+        latitude: "30.652862413195",
+        source: 2,
+        createTime: "2023/01/07 13:07:12",
+      },
+      {
+        id: 13915,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.488725314671",
+        latitude: "30.686340874566",
+        source: 2,
+        createTime: "2023/01/08 12:51:56",
+      },
+      {
+        id: 14120,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.575588107639",
+        latitude: "30.578147243924",
+        source: 2,
+        createTime: "2023/01/09 12:29:43",
+      },
+      {
+        id: 14346,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.575607910157",
+        latitude: "30.578127170139",
+        source: 2,
+        createTime: "2023/01/10 12:08:22",
+      },
+      {
+        id: 14603,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.155520562066",
+        latitude: "30.220246582032",
+        source: 2,
+        createTime: "2023/01/11 19:59:08",
+      },
+      {
+        id: 14633,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.514895562066",
+        latitude: "29.847008463542",
+        source: 2,
+        createTime: "2023/01/12 01:08:56",
+      },
+      {
+        id: 14893,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.474357638889",
+        latitude: "30.722734917535",
+        source: 2,
+        createTime: "2023/01/13 07:28:53",
+      },
+      {
+        id: 15055,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.633670789931",
+        latitude: "31.950489095053",
+        source: 2,
+        createTime: "2023/01/14 11:13:57",
+      },
+      {
+        id: 15400,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.833935275608",
+        latitude: "32.282558051216",
+        source: 2,
+        createTime: "2023/01/15 17:13:19",
+      },
+      {
+        id: 15459,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.478269585504",
+        latitude: "32.024363606771",
+        source: 2,
+        createTime: "2023/01/16 02:22:37",
+      },
+      {
+        id: 15767,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.45545030382",
+        latitude: "31.35984483507",
+        source: 2,
+        createTime: "2023/01/17 14:11:11",
+      },
+      {
+        id: 15889,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.454781901042",
+        latitude: "31.359626193577",
+        source: 2,
+        createTime: "2023/01/18 03:47:54",
+      },
+      {
+        id: 16011,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.454812011719",
+        latitude: "31.359616156685",
+        source: 2,
+        createTime: "2023/01/19 01:55:44",
+      },
+      {
+        id: 16217,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.454812011719",
+        latitude: "31.359616156685",
+        source: 2,
+        createTime: "2023/01/20 21:57:11",
+      },
+      {
+        id: 16392,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.454812011719",
+        latitude: "31.359616156685",
+        source: 2,
+        createTime: "2023/01/22 05:00:28",
+      },
+      {
+        id: 16530,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.454791937935",
+        latitude: "31.359606119792",
+        source: 2,
+        createTime: "2023/01/23 16:51:02",
+      },
+      {
+        id: 16617,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.454822048612",
+        latitude: "31.359616156685",
+        source: 2,
+        createTime: "2023/01/24 17:24:01",
+      },
+      {
+        id: 16850,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.454851888021",
+        latitude: "31.359615885417",
+        source: 2,
+        createTime: "2023/01/27 21:45:53",
+      },
+      {
+        id: 16889,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.231159939237",
+        latitude: "31.646571180556",
+        source: 2,
+        createTime: "2023/01/28 16:08:58",
+      },
+      {
+        id: 17143,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.822255045573",
+        latitude: "31.96290093316",
+        source: 2,
+        createTime: "2023/01/31 16:58:40",
+      },
+      {
+        id: 17276,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.823332519532",
+        latitude: "31.960369466146",
+        source: 2,
+        createTime: "2023/02/02 16:51:57",
+      },
+      {
+        id: 17563,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.824749891494",
+        latitude: "31.962256673178",
+        source: 2,
+        createTime: "2023/02/03 17:01:34",
+      },
+      {
+        id: 17715,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.061641167535",
+        latitude: "31.956163194445",
+        source: 2,
+        createTime: "2023/02/04 06:46:30",
+      },
+      {
+        id: 18043,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.994530436198",
+        latitude: "31.144235839844",
+        source: 2,
+        createTime: "2023/02/05 22:10:29",
+      },
+      {
+        id: 18108,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.651292046441",
+        latitude: "30.785998535157",
+        source: 2,
+        createTime: "2023/02/06 06:52:01",
+      },
+      {
+        id: 18424,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.696550292969",
+        latitude: "29.854191894532",
+        source: 2,
+        createTime: "2023/02/07 19:01:53",
+      },
+      {
+        id: 18601,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.753048231337",
+        latitude: "30.613792317709",
+        source: 2,
+        createTime: "2023/02/08 17:02:05",
+      },
+      {
+        id: 18769,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.264477267796",
+        latitude: "30.529755588108",
+        source: 2,
+        createTime: "2023/02/09 13:04:45",
+      },
+      {
+        id: 18898,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152902560764",
+        latitude: "30.381126030816",
+        source: 2,
+        createTime: "2023/02/10 05:27:35",
+      },
+      {
+        id: 19259,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152762858073",
+        latitude: "30.381046278212",
+        source: 2,
+        createTime: "2023/02/11 21:17:10",
+      },
+      {
+        id: 19435,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152752821181",
+        latitude: "30.381126302084",
+        source: 2,
+        createTime: "2023/02/12 18:57:47",
+      },
+      {
+        id: 19886,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152743055556",
+        latitude: "30.381166178386",
+        source: 2,
+        createTime: "2023/02/14 22:56:20",
+      },
+      {
+        id: 20040,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.151665581598",
+        latitude: "30.380207790799",
+        source: 2,
+        createTime: "2023/02/15 20:12:56",
+      },
+      {
+        id: 20116,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.151665581598",
+        latitude: "30.38010796441",
+        source: 2,
+        createTime: "2023/02/16 03:10:24",
+      },
+      {
+        id: 20331,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152792697483",
+        latitude: "30.38125623915",
+        source: 2,
+        createTime: "2023/02/17 06:17:48",
+      },
+      {
+        id: 20501,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152673068577",
+        latitude: "30.381186523438",
+        source: 2,
+        createTime: "2023/02/18 02:21:41",
+      },
+      {
+        id: 20871,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152743055556",
+        latitude: "30.381266276042",
+        source: 2,
+        createTime: "2023/02/19 21:49:06",
+      },
+      {
+        id: 20989,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152692871094",
+        latitude: "30.381236436632",
+        source: 2,
+        createTime: "2023/02/20 13:26:44",
+      },
+      {
+        id: 21211,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.15288248698",
+        latitude: "30.381105957032",
+        source: 2,
+        createTime: "2023/02/21 16:40:05",
+      },
+      {
+        id: 21420,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152673068577",
+        latitude: "30.381176486546",
+        source: 2,
+        createTime: "2023/02/22 01:09:03",
+      },
+      {
+        id: 21686,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.151715494792",
+        latitude: "30.380317925348",
+        source: 2,
+        createTime: "2023/02/23 11:19:21",
+      },
+      {
+        id: 21714,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.15167561849",
+        latitude: "30.38032796224",
+        source: 2,
+        createTime: "2023/02/23 23:52:29",
+      },
+      {
+        id: 21916,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.154189181858",
+        latitude: "30.382464192709",
+        source: 2,
+        createTime: "2023/02/25 03:57:16",
+      },
+      {
+        id: 22184,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.15422905816",
+        latitude: "30.382464192709",
+        source: 2,
+        createTime: "2023/02/26 12:52:24",
+      },
+      {
+        id: 22458,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.726829698351",
+        latitude: "30.600241427952",
+        source: 2,
+        createTime: "2023/02/27 18:30:35",
+      },
+      {
+        id: 22648,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.151737196181",
+        latitude: "30.217112358941",
+        source: 2,
+        createTime: "2023/02/28 19:34:59",
+      },
+      {
+        id: 22741,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.153713378907",
+        latitude: "30.214559190539",
+        source: 2,
+        createTime: "2023/03/01 05:56:22",
+      },
+      {
+        id: 23049,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.152954644098",
+        latitude: "30.214170193143",
+        source: 2,
+        createTime: "2023/03/02 17:28:50",
+      },
+      {
+        id: 23267,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.144478624132",
+        latitude: "30.212103678386",
+        source: 2,
+        createTime: "2023/03/03 20:11:55",
+      },
+      {
+        id: 23398,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.14533718533",
+        latitude: "30.212132161459",
+        source: 2,
+        createTime: "2023/03/04 18:17:45",
+      },
+      {
+        id: 23714,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.813717719185",
+        latitude: "31.137224392362",
+        source: 2,
+        createTime: "2023/03/07 09:12:57",
+      },
+      {
+        id: 23835,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.291839192709",
+        latitude: "32.179291720921",
+        source: 2,
+        createTime: "2023/03/08 08:03:08",
+      },
+      {
+        id: 24164,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.185050998264",
+        latitude: "31.748830295139",
+        source: 2,
+        createTime: "2023/03/10 12:44:10",
+      },
+      {
+        id: 24257,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.185170627171",
+        latitude: "31.748920084636",
+        source: 2,
+        createTime: "2023/03/11 06:04:37",
+      },
+      {
+        id: 24402,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.452836642796",
+        latitude: "31.358499620226",
+        source: 2,
+        createTime: "2023/03/12 08:58:11",
+      },
+      {
+        id: 24663,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.18206732856",
+        latitude: "31.752005479601",
+        source: 2,
+        createTime: "2023/03/13 20:19:52",
+      },
+      {
+        id: 24741,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.181828070747",
+        latitude: "31.752045898438",
+        source: 2,
+        createTime: "2023/03/14 14:33:34",
+      },
+      {
+        id: 25062,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.181767849393",
+        latitude: "31.751786024306",
+        source: 2,
+        createTime: "2023/03/16 18:16:46",
+      },
+      {
+        id: 25226,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.181828070747",
+        latitude: "31.751746148004",
+        source: 2,
+        createTime: "2023/03/17 22:24:44",
+      },
+      {
+        id: 25369,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.181967502171",
+        latitude: "31.751665852865",
+        source: 2,
+        createTime: "2023/03/18 14:41:42",
+      },
+      {
+        id: 25478,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.182027452257",
+        latitude: "31.751705729167",
+        source: 2,
+        createTime: "2023/03/19 04:00:23",
+      },
+      {
+        id: 25770,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.91155951606",
+        latitude: "32.120502658421",
+        source: 2,
+        createTime: "2023/03/20 16:24:36",
+      },
+      {
+        id: 25886,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.678495008681",
+        latitude: "32.234474555122",
+        source: 2,
+        createTime: "2023/03/21 04:31:38",
+      },
+      {
+        id: 26079,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.388229709202",
+        latitude: "31.548302408855",
+        source: 2,
+        createTime: "2023/03/22 04:28:17",
+      },
+      {
+        id: 26380,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.937789713542",
+        latitude: "30.458002387153",
+        source: 2,
+        createTime: "2023/03/23 11:53:41",
+      },
+      {
+        id: 26498,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.333848198785",
+        latitude: "29.83174858941",
+        source: 2,
+        createTime: "2023/03/24 03:35:39",
+      },
+      {
+        id: 26805,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.540738389757",
+        latitude: "29.846866319445",
+        source: 2,
+        createTime: "2023/03/24 17:03:38",
+      },
+      {
+        id: 26962,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.960110134549",
+        latitude: "30.409447699653",
+        source: 2,
+        createTime: "2023/03/26 09:04:40",
+      },
+      {
+        id: 27115,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.960110134549",
+        latitude: "30.409457736546",
+        source: 2,
+        createTime: "2023/03/27 04:17:09",
+      },
+      {
+        id: 27455,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.974523925782",
+        latitude: "30.418264973959",
+        source: 2,
+        createTime: "2023/03/28 19:06:00",
+      },
+      {
+        id: 27685,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.974162868924",
+        latitude: "30.418184136285",
+        source: 2,
+        createTime: "2023/03/29 20:11:09",
+      },
+      {
+        id: 27792,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.97390218099",
+        latitude: "30.418123372396",
+        source: 2,
+        createTime: "2023/03/30 10:53:57",
+      },
+      {
+        id: 28067,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.974463704428",
+        latitude: "30.418234863282",
+        source: 2,
+        createTime: "2023/03/31 19:26:12",
+      },
+      {
+        id: 28164,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.974523925782",
+        latitude: "30.418244900174",
+        source: 2,
+        createTime: "2023/04/01 05:56:23",
+      },
+      {
+        id: 28423,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.974634331598",
+        latitude: "30.418265516494",
+        source: 2,
+        createTime: "2023/04/02 13:23:30",
+      },
+      {
+        id: 28723,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.975677897136",
+        latitude: "30.41820827908",
+        source: 2,
+        createTime: "2023/04/03 22:33:57",
+      },
+      {
+        id: 28736,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.975687662761",
+        latitude: "30.418188205296",
+        source: 2,
+        createTime: "2023/04/04 02:38:57",
+      },
+      {
+        id: 29032,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.95669108073",
+        latitude: "30.410530327691",
+        source: 2,
+        createTime: "2023/04/05 13:45:17",
+      },
+      {
+        id: 29204,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.954936523438",
+        latitude: "30.408926595053",
+        source: 2,
+        createTime: "2023/04/06 08:57:48",
+      },
+      {
+        id: 29476,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.978978678386",
+        latitude: "30.418157009549",
+        source: 2,
+        createTime: "2023/04/07 18:42:28",
+      },
+      {
+        id: 29687,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.955540635851",
+        latitude: "30.408079969619",
+        source: 2,
+        createTime: "2023/04/08 19:07:30",
+      },
+      {
+        id: 29898,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.955590549046",
+        latitude: "30.408109809028",
+        source: 2,
+        createTime: "2023/04/09 20:35:01",
+      },
+      {
+        id: 29973,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.955570475261",
+        latitude: "30.408049858941",
+        source: 2,
+        createTime: "2023/04/10 05:54:37",
+      },
+      {
+        id: 30167,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.208608669705",
+        latitude: "30.215451117622",
+        source: 2,
+        createTime: "2023/04/11 04:05:14",
+      },
+      {
+        id: 30469,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.273003472223",
+        latitude: "30.146736653646",
+        source: 2,
+        createTime: "2023/04/12 13:39:40",
+      },
+      {
+        id: 30616,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.285326605903",
+        latitude: "30.144387478299",
+        source: 2,
+        createTime: "2023/04/13 08:01:27",
+      },
+      {
+        id: 30930,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.293575846355",
+        latitude: "30.667443305122",
+        source: 2,
+        createTime: "2023/04/14 22:20:47",
+      },
+      {
+        id: 30986,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.767084147136",
+        latitude: "31.104020996094",
+        source: 2,
+        createTime: "2023/04/15 05:15:18",
+      },
+      {
+        id: 31307,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.879420030382",
+        latitude: "31.86824734158",
+        source: 2,
+        createTime: "2023/04/16 20:42:59",
+      },
+      {
+        id: 31401,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.266591525608",
+        latitude: "31.595174153646",
+        source: 2,
+        createTime: "2023/04/17 18:29:02",
+      },
+      {
+        id: 31459,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.269217664931",
+        latitude: "31.646835666233",
+        source: 2,
+        createTime: "2023/04/17 23:51:38",
+      },
+      {
+        id: 31669,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.628318142362",
+        latitude: "31.994264865452",
+        source: 2,
+        createTime: "2023/04/20 14:50:41",
+      },
+      {
+        id: 31870,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.427275390625",
+        latitude: "31.970164116754",
+        source: 2,
+        createTime: "2023/04/21 16:48:31",
+      },
+      {
+        id: 31941,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.427674424914",
+        latitude: "31.970323621962",
+        source: 2,
+        createTime: "2023/04/22 00:37:23",
+      },
+      {
+        id: 32437,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.427674424914",
+        latitude: "31.970323621962",
+        source: 2,
+        createTime: "2023/04/22 00:37:23",
+      },
+      {
+        id: 32639,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.427674424914",
+        latitude: "31.970323621962",
+        source: 2,
+        createTime: "2023/04/22 00:37:23",
+      },
+      {
+        id: 32789,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.427674424914",
+        latitude: "31.970323621962",
+        source: 2,
+        createTime: "2023/04/22 00:37:23",
+      },
+      {
+        id: 32989,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.427674424914",
+        latitude: "31.970323621962",
+        source: 2,
+        createTime: "2023/04/22 00:37:23",
+      },
+      {
+        id: 33350,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.574771321615",
+        latitude: "31.921603461372",
+        source: 2,
+        createTime: "2023/04/28 21:33:36",
+      },
+      {
+        id: 33451,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.317790256077",
+        latitude: "31.300979546441",
+        source: 2,
+        createTime: "2023/04/29 11:06:14",
+      },
+      {
+        id: 33667,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.380062934028",
+        latitude: "30.715530870226",
+        source: 2,
+        createTime: "2023/04/30 10:13:15",
+      },
+      {
+        id: 33900,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.541325412327",
+        latitude: "29.915157606337",
+        source: 2,
+        createTime: "2023/05/01 11:35:21",
+      },
+      {
+        id: 34054,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.406168077257",
+        latitude: "29.945975477431",
+        source: 2,
+        createTime: "2023/05/02 08:11:36",
+      },
+      {
+        id: 34223,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.961403537327",
+        latitude: "30.409160698785",
+        source: 2,
+        createTime: "2023/05/02 23:42:36",
+      },
+      {
+        id: 34451,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.547420247396",
+        latitude: "30.648566894532",
+        source: 2,
+        createTime: "2023/05/04 05:24:15",
+      },
+      {
+        id: 34666,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.156991644966",
+        latitude: "30.384379611546",
+        source: 2,
+        createTime: "2023/05/05 06:53:43",
+      },
+      {
+        id: 34956,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.155645345053",
+        latitude: "30.383541937935",
+        source: 2,
+        createTime: "2023/05/06 16:49:59",
+      },
+      {
+        id: 35145,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.154209255643",
+        latitude: "30.382504069011",
+        source: 2,
+        createTime: "2023/05/07 15:30:12",
+      },
+      {
+        id: 35366,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.15425889757",
+        latitude: "30.382364095053",
+        source: 2,
+        createTime: "2023/05/08 19:23:30",
+      },
+      {
+        id: 35471,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152433810764",
+        latitude: "30.381146647136",
+        source: 2,
+        createTime: "2023/05/09 07:37:14",
+      },
+      {
+        id: 35774,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.154248860678",
+        latitude: "30.382444118924",
+        source: 2,
+        createTime: "2023/05/10 16:06:22",
+      },
+      {
+        id: 36036,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.154209255643",
+        latitude: "30.38257405599",
+        source: 2,
+        createTime: "2023/05/11 17:57:28",
+      },
+      {
+        id: 36077,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.154179144966",
+        latitude: "30.382514105903",
+        source: 2,
+        createTime: "2023/05/12 02:26:34",
+      },
+      {
+        id: 36341,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.154268934462",
+        latitude: "30.382333984375",
+        source: 2,
+        createTime: "2023/05/13 08:21:26",
+      },
+      {
+        id: 36506,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.15422905816",
+        latitude: "30.382364095053",
+        source: 2,
+        createTime: "2023/05/14 03:33:21",
+      },
+      {
+        id: 36866,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.152563205296",
+        latitude: "30.380896538629",
+        source: 2,
+        createTime: "2023/05/15 18:52:12",
+      },
+      {
+        id: 37034,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.47829264323",
+        latitude: "30.680597601997",
+        source: 2,
+        createTime: "2023/05/16 17:34:57",
+      },
+      {
+        id: 37157,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.478302680122",
+        latitude: "30.680587565105",
+        source: 2,
+        createTime: "2023/05/17 05:13:46",
+      },
+      {
+        id: 37393,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.77676920573",
+        latitude: "30.616835123698",
+        source: 2,
+        createTime: "2023/05/18 07:27:58",
+      },
+      {
+        id: 37710,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.230638292101",
+        latitude: "30.610412868924",
+        source: 2,
+        createTime: "2023/05/19 20:08:27",
+      },
+      {
+        id: 37944,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.268267144098",
+        latitude: "32.185429144966",
+        source: 2,
+        createTime: "2023/05/20 22:46:16",
+      },
+      {
+        id: 37971,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.72375515408",
+        latitude: "32.298883463542",
+        source: 2,
+        createTime: "2023/05/21 03:24:28",
+      },
+      {
+        id: 38250,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.825448133681",
+        latitude: "31.962225206164",
+        source: 2,
+        createTime: "2023/05/22 08:36:10",
+      },
+      {
+        id: 38528,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.460407443577",
+        latitude: "31.360634494358",
+        source: 2,
+        createTime: "2023/05/23 17:33:31",
+      },
+      {
+        id: 38745,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.460407443577",
+        latitude: "31.360634494358",
+        source: 2,
+        createTime: "2023/05/23 17:33:31",
+      },
+      {
+        id: 38875,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.809202473959",
+        latitude: "31.969362521702",
+        source: 2,
+        createTime: "2023/05/25 12:36:30",
+      },
+      {
+        id: 39063,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.786234809028",
+        latitude: "32.01586452908",
+        source: 2,
+        createTime: "2023/05/26 11:23:13",
+      },
+      {
+        id: 39320,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.786254611546",
+        latitude: "32.015954589844",
+        source: 2,
+        createTime: "2023/05/27 13:24:33",
+      },
+      {
+        id: 39549,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.805381944445",
+        latitude: "31.994003092448",
+        source: 2,
+        createTime: "2023/05/28 11:58:04",
+      },
+      {
+        id: 39657,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.818084038629",
+        latitude: "31.963148600261",
+        source: 2,
+        createTime: "2023/05/29 15:05:03",
+      },
+      {
+        id: 39886,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.043902994792",
+        latitude: "31.959744466146",
+        source: 2,
+        createTime: "2023/05/30 15:36:14",
+      },
+      {
+        id: 40025,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.459836154514",
+        latitude: "32.262244737414",
+        source: 2,
+        createTime: "2023/05/31 07:53:43",
+      },
+      {
+        id: 40237,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.436611328125",
+        latitude: "31.745177137587",
+        source: 2,
+        createTime: "2023/06/01 07:02:19",
+      },
+      {
+        id: 40569,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.189332682292",
+        latitude: "30.538385687935",
+        source: 2,
+        createTime: "2023/06/02 21:06:49",
+      },
+      {
+        id: 40647,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.923442111546",
+        latitude: "30.313809407553",
+        source: 2,
+        createTime: "2023/06/03 05:24:14",
+      },
+      {
+        id: 40839,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.333357747396",
+        latitude: "29.839598253039",
+        source: 2,
+        createTime: "2023/06/04 01:01:02",
+      },
+      {
+        id: 41214,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.896180013021",
+        latitude: "30.41988796658",
+        source: 2,
+        createTime: "2023/06/05 14:08:51",
+      },
+      {
+        id: 41360,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.214847005209",
+        latitude: "30.46962483724",
+        source: 2,
+        createTime: "2023/06/06 13:59:48",
+      },
+      {
+        id: 41571,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.881356879341",
+        latitude: "30.246564941407",
+        source: 2,
+        createTime: "2023/06/07 16:30:15",
+      },
+      {
+        id: 41617,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.881317274306",
+        latitude: "30.246564941407",
+        source: 2,
+        createTime: "2023/06/08 01:49:31",
+      },
+      {
+        id: 41897,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.871476508247",
+        latitude: "30.231885579428",
+        source: 2,
+        createTime: "2023/06/09 17:59:34",
+      },
+      {
+        id: 42020,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.871476508247",
+        latitude: "30.231865505643",
+        source: 2,
+        createTime: "2023/06/10 11:47:13",
+      },
+      {
+        id: 42312,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.87145670573",
+        latitude: "30.231875542535",
+        source: 2,
+        createTime: "2023/06/11 17:16:39",
+      },
+      {
+        id: 42411,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.874041069879",
+        latitude: "30.23494249132",
+        source: 2,
+        createTime: "2023/06/12 07:48:48",
+      },
+      {
+        id: 42755,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.474615342882",
+        latitude: "30.680417209202",
+        source: 2,
+        createTime: "2023/06/13 21:15:42",
+      },
+      {
+        id: 42924,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.474764811198",
+        latitude: "30.680447048612",
+        source: 2,
+        createTime: "2023/06/14 18:41:12",
+      },
+      {
+        id: 43075,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.474784884983",
+        latitude: "30.680437011719",
+        source: 2,
+        createTime: "2023/06/15 10:33:59",
+      },
+      {
+        id: 43197,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.474764811198",
+        latitude: "30.680416937935",
+        source: 2,
+        createTime: "2023/06/16 01:35:28",
+      },
+      {
+        id: 43500,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.474774848091",
+        latitude: "30.680426974827",
+        source: 2,
+        createTime: "2023/06/17 12:19:31",
+      },
+      {
+        id: 43805,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.957234971789",
+        latitude: "30.406743164063",
+        source: 2,
+        createTime: "2023/06/18 22:07:46",
+      },
+      {
+        id: 43994,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.957245008681",
+        latitude: "30.406793077257",
+        source: 2,
+        createTime: "2023/06/19 18:49:22",
+      },
+      {
+        id: 44152,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.153473849827",
+        latitude: "30.214539388021",
+        source: 2,
+        createTime: "2023/06/20 14:39:19",
+      },
+      {
+        id: 44437,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.152845052084",
+        latitude: "30.214070638021",
+        source: 2,
+        createTime: "2023/06/21 22:52:02",
+      },
+      {
+        id: 44601,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.268430175782",
+        latitude: "30.151713867188",
+        source: 2,
+        createTime: "2023/06/22 17:02:59",
+      },
+      {
+        id: 44807,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.245116373698",
+        latitude: "30.642997504341",
+        source: 2,
+        createTime: "2023/06/23 18:12:36",
+      },
+      {
+        id: 44865,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.726882324219",
+        latitude: "31.008423665365",
+        source: 2,
+        createTime: "2023/06/23 23:48:08",
+      },
+      {
+        id: 45160,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.294551595053",
+        latitude: "31.946390245226",
+        source: 2,
+        createTime: "2023/06/25 07:54:48",
+      },
+      {
+        id: 45377,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.459330512153",
+        latitude: "31.359646267362",
+        source: 2,
+        createTime: "2023/06/26 13:22:52",
+      },
+      {
+        id: 45588,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.816098361546",
+        latitude: "31.965041775174",
+        source: 2,
+        createTime: "2023/06/27 11:16:08",
+      },
+      {
+        id: 45822,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.511793348525",
+        latitude: "32.068525119358",
+        source: 2,
+        createTime: "2023/06/28 05:57:56",
+      },
+      {
+        id: 46005,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.140392795139",
+        latitude: "31.942437065973",
+        source: 2,
+        createTime: "2023/06/29 12:30:06",
+      },
+      {
+        id: 46264,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.035017903646",
+        latitude: "32.185158148872",
+        source: 2,
+        createTime: "2023/06/30 16:59:17",
+      },
+      {
+        id: 46380,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.591173231337",
+        latitude: "31.929557291667",
+        source: 2,
+        createTime: "2023/07/01 08:33:43",
+      },
+      {
+        id: 46645,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.950625813803",
+        latitude: "31.074806315105",
+        source: 2,
+        createTime: "2023/07/02 08:15:41",
+      },
+      {
+        id: 46870,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.911831325955",
+        latitude: "30.451959906685",
+        source: 2,
+        createTime: "2023/07/03 13:34:56",
+      },
+      {
+        id: 47118,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.826620822483",
+        latitude: "30.144874131945",
+        source: 2,
+        createTime: "2023/07/04 18:55:01",
+      },
+      {
+        id: 47273,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.285094943577",
+        latitude: "29.807986924914",
+        source: 2,
+        createTime: "2023/07/05 12:49:41",
+      },
+      {
+        id: 47508,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.088017578125",
+        latitude: "30.298567708334",
+        source: 2,
+        createTime: "2023/07/06 16:01:39",
+      },
+      {
+        id: 47677,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.830858832466",
+        latitude: "30.510795355903",
+        source: 2,
+        createTime: "2023/07/07 08:06:09",
+      },
+      {
+        id: 47840,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.548706325955",
+        latitude: "30.64640326606",
+        source: 2,
+        createTime: "2023/07/08 05:22:53",
+      },
+      {
+        id: 48162,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.145697970921",
+        latitude: "30.596317274306",
+        source: 2,
+        createTime: "2023/07/09 17:44:20",
+      },
+      {
+        id: 48327,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.14579779731",
+        latitude: "30.596267361112",
+        source: 2,
+        createTime: "2023/07/10 14:43:19",
+      },
+      {
+        id: 48552,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.145837673612",
+        latitude: "30.596297200521",
+        source: 2,
+        createTime: "2023/07/11 13:48:22",
+      },
+      {
+        id: 48688,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.145837673612",
+        latitude: "30.596357421875",
+        source: 2,
+        createTime: "2023/07/12 08:19:58",
+      },
+      {
+        id: 49090,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.145847710504",
+        latitude: "30.596347384983",
+        source: 2,
+        createTime: "2023/07/13 18:47:07",
+      },
+      {
+        id: 49318,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.145807834202",
+        latitude: "30.596357421875",
+        source: 2,
+        createTime: "2023/07/14 16:51:38",
+      },
+      {
+        id: 49358,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.145837673612",
+        latitude: "30.596347384983",
+        source: 2,
+        createTime: "2023/07/15 00:12:31",
+      },
+      {
+        id: 49581,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.14905951606",
+        latitude: "30.597532823351",
+        source: 2,
+        createTime: "2023/07/16 03:18:30",
+      },
+      {
+        id: 49959,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.149508463542",
+        latitude: "30.597291937935",
+        source: 2,
+        createTime: "2023/07/17 18:19:18",
+      },
+      {
+        id: 50106,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.149528537327",
+        latitude: "30.597301974827",
+        source: 2,
+        createTime: "2023/07/18 14:01:15",
+      },
+      {
+        id: 50404,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.149578179254",
+        latitude: "30.597361924914",
+        source: 2,
+        createTime: "2023/07/19 19:46:50",
+      },
+      {
+        id: 50467,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.149528537327",
+        latitude: "30.597331814237",
+        source: 2,
+        createTime: "2023/07/20 07:45:56",
+      },
+      {
+        id: 50676,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.149548611112",
+        latitude: "30.597321777344",
+        source: 2,
+        createTime: "2023/07/21 05:59:24",
+      },
+      {
+        id: 50864,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.149478624132",
+        latitude: "30.597392035591",
+        source: 2,
+        createTime: "2023/07/22 04:25:03",
+      },
+      {
+        id: 51234,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.147593315973",
+        latitude: "30.596875",
+        source: 2,
+        createTime: "2023/07/23 18:10:00",
+      },
+      {
+        id: 51362,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.147633192275",
+        latitude: "30.596854654948",
+        source: 2,
+        createTime: "2023/07/24 12:13:50",
+      },
+      {
+        id: 51490,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.170969509549",
+        latitude: "30.603386501737",
+        source: 2,
+        createTime: "2023/07/25 05:23:48",
+      },
+      {
+        id: 51821,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.327610405816",
+        latitude: "30.075423448351",
+        source: 2,
+        createTime: "2023/07/26 18:42:15",
+      },
+      {
+        id: 51996,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.160440538195",
+        latitude: "30.53058702257",
+        source: 2,
+        createTime: "2023/07/27 14:40:17",
+      },
+      {
+        id: 52194,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.76087076823",
+        latitude: "32.115999620226",
+        source: 2,
+        createTime: "2023/07/28 13:28:02",
+      },
+      {
+        id: 52414,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.482030707466",
+        latitude: "32.253979492188",
+        source: 2,
+        createTime: "2023/07/29 13:32:22",
+      },
+      {
+        id: 52532,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.729011501737",
+        latitude: "32.229304741754",
+        source: 2,
+        createTime: "2023/07/30 02:24:24",
+      },
+      {
+        id: 52825,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.506608886719",
+        latitude: "31.412681749132",
+        source: 2,
+        createTime: "2023/07/31 11:03:46",
+      },
+      {
+        id: 53043,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.459579806858",
+        latitude: "31.36040608724",
+        source: 2,
+        createTime: "2023/08/01 13:49:03",
+      },
+      {
+        id: 53272,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.053422309028",
+        latitude: "31.76987982856",
+        source: 2,
+        createTime: "2023/08/02 15:09:50",
+      },
+      {
+        id: 53473,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.785385742188",
+        latitude: "32.016015625",
+        source: 2,
+        createTime: "2023/08/03 14:06:48",
+      },
+      {
+        id: 53748,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.756778971355",
+        latitude: "32.042976616754",
+        source: 2,
+        createTime: "2023/08/03 19:44:07",
+      },
+      {
+        id: 53937,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.756778971355",
+        latitude: "32.042976616754",
+        source: 2,
+        createTime: "2023/08/03 19:44:07",
+      },
+      {
+        id: 54091,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.890563693577",
+        latitude: "31.915017903646",
+        source: 2,
+        createTime: "2023/08/06 05:50:47",
+      },
+      {
+        id: 54374,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.890563693577",
+        latitude: "31.915017903646",
+        source: 2,
+        createTime: "2023/08/06 05:50:47",
+      },
+      {
+        id: 54582,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.817866210938",
+        latitude: "32.305217013889",
+        source: 2,
+        createTime: "2023/08/08 19:55:22",
+      },
+      {
+        id: 54720,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.817642415365",
+        latitude: "32.152069227431",
+        source: 2,
+        createTime: "2023/08/09 13:16:25",
+      },
+      {
+        id: 55061,
+        shipId: 103,
+        userId: 0,
+        longitude: "117.006273328994",
+        latitude: "30.496041124132",
+        source: 2,
+        createTime: "2023/08/11 15:16:37",
+      },
+      {
+        id: 55158,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.73445827908",
+        latitude: "30.062475857205",
+        source: 2,
+        createTime: "2023/08/12 12:55:08",
+      },
+      {
+        id: 55238,
+        shipId: 103,
+        userId: 0,
+        longitude: "116.191215549046",
+        latitude: "29.773122287327",
+        source: 2,
+        createTime: "2023/08/13 00:41:29",
+      },
+      {
+        id: 55529,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.001567925348",
+        latitude: "30.411061469185",
+        source: 2,
+        createTime: "2023/08/14 06:59:45",
+      },
+      {
+        id: 55644,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.860551757813",
+        latitude: "30.431569281685",
+        source: 2,
+        createTime: "2023/08/15 00:55:43",
+      },
+      {
+        id: 55855,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.860551757813",
+        latitude: "30.431569281685",
+        source: 2,
+        createTime: "2023/08/15 00:55:43",
+      },
+      {
+        id: 56118,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.860551757813",
+        latitude: "30.431569281685",
+        source: 2,
+        createTime: "2023/08/15 00:55:43",
+      },
+      {
+        id: 56149,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.860551757813",
+        latitude: "30.431569281685",
+        source: 2,
+        createTime: "2023/08/15 00:55:43",
+      },
+      {
+        id: 56415,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.916829427084",
+        latitude: "30.276125759549",
+        source: 2,
+        createTime: "2023/08/20 11:30:34",
+      },
+      {
+        id: 56683,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.871516384549",
+        latitude: "30.231885579428",
+        source: 2,
+        createTime: "2023/08/22 07:42:13",
+      },
+      {
+        id: 56955,
+        shipId: 103,
+        userId: 0,
+        longitude: "113.877074924046",
+        latitude: "30.238159179688",
+        source: 2,
+        createTime: "2023/08/23 15:26:06",
+      },
+      {
+        id: 57114,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.773062065973",
+        latitude: "30.61597764757",
+        source: 2,
+        createTime: "2023/08/24 21:27:30",
+      },
+      {
+        id: 57358,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.773062065973",
+        latitude: "30.61597764757",
+        source: 2,
+        createTime: "2023/08/24 21:27:30",
+      },
+      {
+        id: 57674,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.773062065973",
+        latitude: "30.61597764757",
+        source: 2,
+        createTime: "2023/08/24 21:27:30",
+      },
+      {
+        id: 57867,
+        shipId: 103,
+        userId: 0,
+        longitude: "114.773062065973",
+        latitude: "30.61597764757",
+        source: 2,
+        createTime: "2023/08/24 21:27:30",
+      },
+      {
+        id: 58006,
+        shipId: 103,
+        userId: 0,
+        longitude: "115.692082519532",
+        latitude: "29.854243977865",
+        source: 2,
+        createTime: "2023/08/29 04:56:43",
+      },
+      {
+        id: 58169,
+        shipId: 103,
+        userId: 0,
+        longitude: "118.008113335504",
+        latitude: "31.167338324653",
+        source: 2,
+        createTime: "2023/08/30 06:52:14",
+      },
+      {
+        id: 58401,
+        shipId: 103,
+        userId: 0,
+        longitude: "119.903923882379",
+        latitude: "32.097866482205",
+        source: 2,
+        createTime: "2023/08/31 07:35:53",
+      },
+      {
+        id: 58530,
+        shipId: 103,
+        userId: 0,
+        longitude: "120.875006510417",
+        latitude: "31.8816796875",
+        source: 2,
+        createTime: "2023/08/31 18:30:16",
+      },
+      {
+        id: 58753,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.463269856771",
+        latitude: "31.3615882704",
+        source: 2,
+        createTime: "2023/09/02 02:51:34",
+      },
+      {
+        id: 59007,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.456248372396",
+        latitude: "31.360513509115",
+        source: 2,
+        createTime: "2023/09/03 08:15:29",
+      },
+      {
+        id: 59166,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.456228298612",
+        latitude: "31.360503472223",
+        source: 2,
+        createTime: "2023/09/04 02:48:28",
+      },
+      {
+        id: 59402,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.456248372396",
+        latitude: "31.360473361546",
+        source: 2,
+        createTime: "2023/09/05 05:06:30",
+      },
+      {
+        id: 59574,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.456228298612",
+        latitude: "31.36049343533",
+        source: 2,
+        createTime: "2023/09/05 22:06:29",
+      },
+      {
+        id: 59989,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.459220920139",
+        latitude: "31.360506998698",
+        source: 2,
+        createTime: "2023/09/07 22:06:30",
+      },
+      {
+        id: 60178,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.459230685764",
+        latitude: "31.360516764323",
+        source: 2,
+        createTime: "2023/09/08 20:06:31",
+      },
+      {
+        id: 60216,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.459230685764",
+        latitude: "31.360526801216",
+        source: 2,
+        createTime: "2023/09/09 01:33:30",
+      },
+      {
+        id: 60539,
+        shipId: 103,
+        userId: 0,
+        longitude: "121.459200846355",
+        latitude: "31.360526801216",
+        source: 2,
+        createTime: "2023/09/10 13:45:31",
+      },
+    ],
+    shipownerUploadFiles: [
+      {
+        id: 1044,
+        shipOwnerId: 95,
+        shipId: 103,
+        fileKey:
+          "voyage/bill/a143d1f4-7484-46c5-ae5d-a936a489a8fd1666673583185.png",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/voyage/bill/a143d1f4-7484-46c5-ae5d-a936a489a8fd1666673583185.png?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1666673583%3B93158697600%26q-key-time%3D1666673583%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D2bec5557bc2327dd264f7958e0536ce81f14c140",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/voyage/bill/a143d1f4-7484-46c5-ae5d-a936a489a8fd1666673583185.png?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1666673583%3B93156019200%26q-key-time%3D1666673583%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D1ae0030241b97b3eaf4b18bbf708846f526e55a2&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_c8b70c5745b7994270984dc0f4aa77980cd14fa4dc588dcd.png%22&response-content-language=zh-CN&response-expires=Wed%2C%2026%20Oct%202022%2004%3A53%3A03%20GMT&response-content-type=application%2Foctet-stream",
+        createTime: "2022/10/25 12:53:04",
+      },
+    ],
+    medias: [
+      {
+        id: 5622,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1659847107049.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201659847107049.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1659847107%3B93158697600%26q-key-time%3D1659847107%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D3f3bb9c22c7cae1fcc0419ae8aa51916acb1cbfb",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201659847107049.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1659847107%3B93156019200%26q-key-time%3D1659847107%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D11779e91dc2ca9023f286226e9bd67b8524598b7&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_f3de247f6b8c7696bfed90ca8ad109b7b9fd428833a6a421.jpg%22&response-content-language=zh-CN&response-expires=Mon%2C%2008%20Aug%202022%2004%3A38%3A27%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "119.88021158854167",
+        latitude: "32.07409423828125",
+        province: "江苏省",
+        city: "镇江市",
+        district: "丹阳市",
+        street: "",
+        createTime: "2022/08/07 12:38:27",
+        audit: 1,
+        status: 1,
+        weather: {
+          id: 5622,
+          mediaId: 5622,
+          province: "江苏",
+          city: "丹阳市",
+          adcode: "321181",
+          weather: "多云",
+          temperature: "36",
+          winddirection: "南",
+          windpower: "≤3",
+          humidity: "51",
+          reporttime: "2022/08/07 12:38:28",
+        },
+      },
+      {
+        id: 5642,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1659921441560.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201659921441560.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1659921441%3B93158697600%26q-key-time%3D1659921441%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D01fae0da98240462a522e3548c49f6221327b409",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201659921441560.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1659921441%3B93156019200%26q-key-time%3D1659921441%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dc95607b82995bc0aa4e51bc06cc782b288e5d070&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_0f3bb084403f8e26562fdf2daa2a52cff64baa8e3c1e4064.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2009%20Aug%202022%2001%3A17%3A21%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "118.99334391276042",
+        latitude: "32.16410888671875",
+        province: "江苏省",
+        city: "南京市",
+        district: "栖霞区",
+        street: "欢乐谷北路",
+        createTime: "2022/08/08 09:17:21",
+        audit: 1,
+        status: 1,
+        weather: {
+          id: 5642,
+          mediaId: 5642,
+          province: "江苏",
+          city: "栖霞区",
+          adcode: "320113",
+          weather: "多云",
+          temperature: "33",
+          winddirection: "西南",
+          windpower: "4",
+          humidity: "55",
+          reporttime: "2022/08/08 09:17:22",
+        },
+      },
+      {
+        id: 5682,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660032654989.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660032654989.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660032655%3B93158697600%26q-key-time%3D1660032655%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Deebaff399d1e052a86405f20a7acb7ba626c30ee",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660032654989.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660032655%3B93156019200%26q-key-time%3D1660032655%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D7d20e8fb316c6d94ee960d347428948aec370977&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_1d977a8302daeec2ff97d62f42a242e38e2fff029eaa0c97.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2010%20Aug%202022%2008%3A10%3A55%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "117.70158610026041",
+        latitude: "30.814482964409724",
+        province: "安徽省",
+        city: "铜陵市",
+        district: "郊区",
+        street: "",
+        createTime: "2022/08/09 16:10:55",
+        audit: 1,
+        status: 1,
+        weather: {
+          id: 5682,
+          mediaId: 5682,
+          province: "安徽",
+          city: "郊区",
+          adcode: "340711",
+          weather: "晴",
+          temperature: "37",
+          winddirection: "西南",
+          windpower: "4",
+          humidity: "44",
+          reporttime: "2022/08/09 16:10:56",
+        },
+      },
+      {
+        id: 5702,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660097552576.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660097552576.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660097553%3B93158697600%26q-key-time%3D1660097553%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dbe708323df3abcf85a776f58d3c81f25dc268e28",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660097552576.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660097553%3B93156019200%26q-key-time%3D1660097553%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D8b03c28d0b6f25ac4831662b92668a4f6559fc5b&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_67cb25f4e60f8788557df1b1bba56438a57dddbb50817165.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2011%20Aug%202022%2002%3A12%3A33%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "116.90554280598958",
+        latitude: "30.3191357421875",
+        province: "安徽省",
+        city: "安庆市",
+        district: "望江县",
+        street: "",
+        createTime: "2022/08/10 10:12:32",
+        audit: 1,
+        status: 1,
+        weather: {
+          id: 5702,
+          mediaId: 5702,
+          province: "安徽",
+          city: "望江县",
+          adcode: "340827",
+          weather: "阴",
+          temperature: "33",
+          winddirection: "南",
+          windpower: "≤3",
+          humidity: "61",
+          reporttime: "2022/08/10 10:12:33",
+        },
+      },
+      {
+        id: 5711,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660180814690.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660180814690.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660180815%3B93158697600%26q-key-time%3D1660180815%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dd068acfdc01b61e7a786530df73eee61f630396c",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660180814690.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660180815%3B93156019200%26q-key-time%3D1660180815%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D8789fafdda42986adbd8e551f969bd7dd607c7ea&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_3e1234cbd6d1a1a139f29bd74fa68507117f0bfe84e850bb.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2012%20Aug%202022%2001%3A20%3A15%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "115.89505316840278",
+        latitude: "29.721959364149306",
+        province: "江西省",
+        city: "九江市",
+        district: "柴桑区",
+        street: "港城大道",
+        createTime: "2022/08/11 09:20:14",
+        audit: 1,
+        status: 1,
+        weather: {
+          id: 5711,
+          mediaId: 5711,
+          province: "江西",
+          city: "柴桑区",
+          adcode: "360404",
+          weather: "晴",
+          temperature: "33",
+          winddirection: "西",
+          windpower: "≤3",
+          humidity: "56",
+          reporttime: "2022/08/11 09:20:15",
+        },
+      },
+      {
+        id: 5730,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660267556537.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660267556537.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660267557%3B93158697600%26q-key-time%3D1660267557%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dbad8d41d776f37e00f381e59a5b0e90465b77839",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660267556537.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660267557%3B93156019200%26q-key-time%3D1660267557%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D39c91c7e1ecf819aee9161946d76c8d7bd1f9670&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_cd4a32bcf0fa49c263d6c7ca9f9f084e3a9aa4816da27626.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2013%20Aug%202022%2001%3A25%3A57%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "115.26587103949653",
+        latitude: "30.15038601345486",
+        province: "湖北省",
+        city: "黄石市",
+        district: "阳新县",
+        street: "",
+        createTime: "2022/08/12 09:25:56",
+        audit: 1,
+        status: 1,
+        weather: {
+          id: 5730,
+          mediaId: 5730,
+          province: "湖北",
+          city: "阳新县",
+          adcode: "420222",
+          weather: "晴",
+          temperature: "33",
+          winddirection: "东南",
+          windpower: "≤3",
+          humidity: "64",
+          reporttime: "2022/08/12 09:25:57",
+        },
+      },
+      {
+        id: 5753,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660364392154.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660364392154.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660364392%3B93158697600%26q-key-time%3D1660364392%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dbb9ccf309445e2eb9144a772946af13896e358b2",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660364392154.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660364392%3B93156019200%26q-key-time%3D1660364392%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3De3f8d70584b5c7eb57aeb6b8f0800a7030005e7c&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_ba5aeb52dea74150602f4418099bcd4aa252f09df5d0ad97.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2014%20Aug%202022%2004%3A19%3A52%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.1862122938368",
+        latitude: "30.581204427083332",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "琴台大道",
+        createTime: "2022/08/13 12:19:52",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5753,
+          mediaId: 5753,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "晴",
+          temperature: "36",
+          winddirection: "西南",
+          windpower: "≤3",
+          humidity: "46",
+          reporttime: "2022/08/13 12:19:53",
+        },
+      },
+      {
+        id: 5763,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660383252312.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660383252312.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660383252%3B93158697600%26q-key-time%3D1660383252%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Da7f0cc27bae842f51f12c2073826646042dacdfd",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660383252312.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660383252%3B93156019200%26q-key-time%3D1660383252%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D43a0b24a52d41a87edbb762a32917260b40d7709&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_27373a80cd278d9d01916f90dd5bac28fdb321b2a5644610.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2014%20Aug%202022%2009%3A34%3A12%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.14889675564235",
+        latitude: "30.59424587673611",
+        province: "湖北省",
+        city: "武汉市",
+        district: "东西湖区",
+        street: "朝阳街",
+        createTime: "2022/08/13 17:34:12",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5763,
+          mediaId: 5763,
+          province: "湖北",
+          city: "东西湖区",
+          adcode: "420112",
+          weather: "晴",
+          temperature: "37",
+          winddirection: "西",
+          windpower: "≤3",
+          humidity: "46",
+          reporttime: "2022/08/13 17:34:13",
+        },
+      },
+      {
+        id: 5779,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660450541202.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660450541202.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660450541%3B93158697600%26q-key-time%3D1660450541%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D744dfea1b52a4bcb841380d3e924d8fd8c84ebde",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660450541202.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660450541%3B93156019200%26q-key-time%3D1660450541%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D322c848c24f71f8cb989f9fb42d28b8cb37bf486&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_07faca49c270d075c49a34085bbfaf1a6a712677a8f80eea.jpg%22&response-content-language=zh-CN&response-expires=Mon%2C%2015%20Aug%202022%2004%3A15%3A41%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15169243706598",
+        latitude: "30.59471164279514",
+        province: "湖北省",
+        city: "武汉市",
+        district: "东西湖区",
+        street: "朝阳街",
+        createTime: "2022/08/14 12:15:41",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5779,
+          mediaId: 5779,
+          province: "湖北",
+          city: "东西湖区",
+          adcode: "420112",
+          weather: "晴",
+          temperature: "36",
+          winddirection: "西南",
+          windpower: "≤3",
+          humidity: "46",
+          reporttime: "2022/08/14 12:15:42",
+        },
+      },
+      {
+        id: 5791,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660526591340.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660526591340.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660526591%3B93158697600%26q-key-time%3D1660526591%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D6b33721dc732edc27cdce26ac6bf1148519df92a",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660526591340.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660526591%3B93156019200%26q-key-time%3D1660526591%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D5053c69be839a947db6b9dee03d85413c71a544a&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_fd72c239ba4069f419277c26d4b235d1e2085b5e2e23e0db.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2016%20Aug%202022%2001%3A23%3A11%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15062717013889",
+        latitude: "30.594737413194444",
+        province: "湖北省",
+        city: "武汉市",
+        district: "东西湖区",
+        street: "朝阳街",
+        createTime: "2022/08/15 09:23:11",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5791,
+          mediaId: 5791,
+          province: "湖北",
+          city: "东西湖区",
+          adcode: "420112",
+          weather: "多云",
+          temperature: "34",
+          winddirection: "西南",
+          windpower: "≤3",
+          humidity: "54",
+          reporttime: "2022/08/15 09:23:12",
+        },
+      },
+      {
+        id: 5814,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660615094359.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660615094359.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660615094%3B93158697600%26q-key-time%3D1660615094%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D91069afe2983b5042881dbf745afc961968a79d6",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660615094359.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660615094%3B93156019200%26q-key-time%3D1660615094%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dcfb320520663c174332801c5f6cf7ccc22812ca7&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_9872c92af8643eb9b1393f9a96fca5b72bf8974a8dfc64ff.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2017%20Aug%202022%2001%3A58%3A14%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.1524685329861",
+        latitude: "30.59647216796875",
+        province: "湖北省",
+        city: "武汉市",
+        district: "东西湖区",
+        street: "朝阳街",
+        createTime: "2022/08/16 09:58:14",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5814,
+          mediaId: 5814,
+          province: "湖北",
+          city: "东西湖区",
+          adcode: "420112",
+          weather: "多云",
+          temperature: "36",
+          winddirection: "东南",
+          windpower: "≤3",
+          humidity: "52",
+          reporttime: "2022/08/16 09:58:15",
+        },
+      },
+      {
+        id: 5829,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660699823030.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660699823030.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660699823%3B93158697600%26q-key-time%3D1660699823%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D38933bc90793ee5f0e99fc5e158f14575ec9ab85",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660699823030.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660699823%3B93156019200%26q-key-time%3D1660699823%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D9e2a3cd43a68e7cde28d079bf3cfd6faa62e5000&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_348d3585e0efc872547e64257ec39c9f73a5b1de86ecff5f.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2018%20Aug%202022%2001%3A30%3A23%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.1530845811632",
+        latitude: "30.591848415798612",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/17 09:30:23",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5829,
+          mediaId: 5829,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "多云",
+          temperature: "33",
+          winddirection: "东",
+          windpower: "≤3",
+          humidity: "65",
+          reporttime: "2022/08/17 09:30:23",
+        },
+      },
+      {
+        id: 5852,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660786465543.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660786465543.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660786466%3B93158697600%26q-key-time%3D1660786466%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D30969ab2f84bbd8678f70b5c6877a64175e790cc",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660786465543.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660786466%3B93156019200%26q-key-time%3D1660786466%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dd2faf5fb26ae4a522ffe1c17d347aa38b26f1d91&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_e0f56603b2e93180951fb4b981a2ce2cb45bc73a189f65c8.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2019%20Aug%202022%2001%3A34%3A26%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15087863498263",
+        latitude: "30.594676920572915",
+        province: "湖北省",
+        city: "武汉市",
+        district: "东西湖区",
+        street: "朝阳街",
+        createTime: "2022/08/18 09:34:25",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5852,
+          mediaId: 5852,
+          province: "湖北",
+          city: "东西湖区",
+          adcode: "420112",
+          weather: "晴",
+          temperature: "34",
+          winddirection: "东南",
+          windpower: "≤3",
+          humidity: "61",
+          reporttime: "2022/08/18 09:34:26",
+        },
+      },
+      {
+        id: 5886,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660869278908.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660869278908.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660869279%3B93158697600%26q-key-time%3D1660869279%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dff41cb0531b27249c29eba3d5ecbcc5c30bc00bb",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660869278908.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660869279%3B93156019200%26q-key-time%3D1660869279%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dcd837e12f608be99393c8d101820ff50b2a2198e&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_058c237af58cb1a0e6a925b35afa10db0dc1a37555d1c377.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2020%20Aug%202022%2000%3A34%3A39%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15248914930555",
+        latitude: "30.59163302951389",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/19 08:34:39",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5886,
+          mediaId: 5886,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "多云",
+          temperature: "34",
+          winddirection: "南",
+          windpower: "≤3",
+          humidity: "60",
+          reporttime: "2022/08/19 08:34:39",
+        },
+      },
+      {
+        id: 5932,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1660957695597.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660957695597.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660957695%3B93158697600%26q-key-time%3D1660957695%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Da4a3f61028e681217a49f38a953fed99a0d9baf9",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201660957695597.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1660957695%3B93156019200%26q-key-time%3D1660957695%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D53c2f5602f6185265fab0506c34fe2341c9a839e&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_8c8d8cd5f10edef92d74068bebeb1b6c8bba409039959f8d.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2021%20Aug%202022%2001%3A08%3A15%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.1543142361111",
+        latitude: "30.591798231336806",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/20 09:08:15",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5932,
+          mediaId: 5932,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "多云",
+          temperature: "36",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "57",
+          reporttime: "2022/08/20 09:08:16",
+        },
+      },
+      {
+        id: 5952,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1661047369379.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661047369379.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661047369%3B93158697600%26q-key-time%3D1661047369%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D2f2f67d67017b3a80dcad6b2d211ee71cc0bd2de",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661047369379.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661047369%3B93156019200%26q-key-time%3D1661047369%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dda056f1097d4268943c445b77939887519f11bf0&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_49040f4ff2adb8f65601349d51084b0bf6caa3584287c31f.jpg%22&response-content-language=zh-CN&response-expires=Mon%2C%2022%20Aug%202022%2002%3A02%3A49%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.1542005750868",
+        latitude: "30.591759440104166",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/21 10:02:49",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5952,
+          mediaId: 5952,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "阴",
+          temperature: "35",
+          winddirection: "南",
+          windpower: "4",
+          humidity: "49",
+          reporttime: "2022/08/21 10:02:50",
+        },
+      },
+      {
+        id: 5962,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1661130453684.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661130453684.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661130453%3B93158697600%26q-key-time%3D1661130453%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D45e0eb33cf266f545e9e7410e12f307d62d8f24b",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661130453684.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661130453%3B93156019200%26q-key-time%3D1661130453%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D38ce021b88d530860239d1cad01cad46eb0dd37d&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_06811b7f95d051ae04e282d58fd4b477a0a4b163b2c5b234.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2023%20Aug%202022%2001%3A07%3A33%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15787841796875",
+        latitude: "30.58958713107639",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/22 09:07:33",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5962,
+          mediaId: 5962,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "多云",
+          temperature: "33",
+          winddirection: "西南",
+          windpower: "5",
+          humidity: "55",
+          reporttime: "2022/08/22 09:07:34",
+        },
+      },
+      {
+        id: 5975,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1661216449904.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661216449904.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661216450%3B93158697600%26q-key-time%3D1661216450%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D11784ee83aee29a7fed9631d95847e22080e30ab",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661216449904.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661216450%3B93156019200%26q-key-time%3D1661216450%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D433ae4f05a33acfe72c2ef190d357182d0893cbc&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_7261cc44e32a76b454657a2b3581feb2e98bc0abf23e9717.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2024%20Aug%202022%2001%3A00%3A50%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15317192925347",
+        latitude: "30.58773952907986",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/23 09:00:50",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5975,
+          mediaId: 5975,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "多云",
+          temperature: "30",
+          winddirection: "东北",
+          windpower: "4",
+          humidity: "76",
+          reporttime: "2022/08/23 09:00:50",
+        },
+      },
+      {
+        id: 5985,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1661303448578.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661303448578.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661303448%3B93158697600%26q-key-time%3D1661303448%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D3c714b24216198aa7dbd965326bb64b18c4b6e51",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661303448578.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661303448%3B93156019200%26q-key-time%3D1661303448%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Da49f6155ae1bd813cc6a37b84769e5acf7c378fc&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_213b97e8dd63dc49f736a2f52f9d015d7d8d482af4f6dbcc.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2025%20Aug%202022%2001%3A10%3A48%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15264784071181",
+        latitude: "30.59168891059028",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/24 09:10:48",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 5985,
+          mediaId: 5985,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "阴",
+          temperature: "25",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "81",
+          reporttime: "2022/08/24 09:10:49",
+        },
+      },
+      {
+        id: 6002,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1661389613896.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661389613896.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661389614%3B93158697600%26q-key-time%3D1661389614%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D12e23b4e140c58519d973f473a05019e815a5032",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661389613896.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661389614%3B93156019200%26q-key-time%3D1661389614%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dff457a33690a91d190d905d8cac14421bb62f089&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_8465927433c1bff98a1bb8ebe50df2b09acd4a7eaecea3be.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2026%20Aug%202022%2001%3A06%3A54%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15236843532986",
+        latitude: "30.59155734592014",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉阳区",
+        street: "淘金路",
+        createTime: "2022/08/25 09:06:54",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6002,
+          mediaId: 6002,
+          province: "湖北",
+          city: "汉阳区",
+          adcode: "420105",
+          weather: "多云",
+          temperature: "29",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "63",
+          reporttime: "2022/08/25 09:06:54",
+        },
+      },
+      {
+        id: 6014,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1661474088752.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661474088752.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661474089%3B93158697600%26q-key-time%3D1661474089%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dd27ee2ea8daeefc2df86da1d3bcf91b3fbcc5db3",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201661474088752.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1661474089%3B93156019200%26q-key-time%3D1661474089%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dcc6f621f2595a338ff5deec1d0cad633656ffeed&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_9624ff2e9227eceb27512a7203668e383a59a77cd46f8eec.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2027%20Aug%202022%2000%3A34%3A49%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.15112277560763",
+        latitude: "30.59452853732639",
+        province: "湖北省",
+        city: "武汉市",
+        district: "东西湖区",
+        street: "朝阳街",
+        createTime: "2022/08/26 08:34:48",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6014,
+          mediaId: 6014,
+          province: "湖北",
+          city: "东西湖区",
+          adcode: "420112",
+          weather: "多云",
+          temperature: "29",
+          winddirection: "东",
+          windpower: "≤3",
+          humidity: "67",
+          reporttime: "2022/08/26 08:34:49",
+        },
+      },
+      {
+        id: 6481,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663476039258.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663476039258.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663476039%3B93158697600%26q-key-time%3D1663476039%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D23c59eef31484ce1d39581125da2eb359fd9bea3",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663476039258.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663476039%3B93156019200%26q-key-time%3D1663476039%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D3e7e9afbffa16b29756d8741eb57954281a75207&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_253f81e7bb9c4bfc8b9e358a84df3463dddbc76279501e75.jpg%22&response-content-language=zh-CN&response-expires=Mon%2C%2019%20Sep%202022%2004%3A40%3A39%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "119.76976372612847",
+        latitude: "32.19677571614584",
+        province: "江苏省",
+        city: "镇江市",
+        district: "京口区",
+        street: "",
+        createTime: "2022/09/18 12:40:39",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6481,
+          mediaId: 6481,
+          province: "江苏",
+          city: "京口区",
+          adcode: "321102",
+          weather: "晴",
+          temperature: "26",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "64",
+          reporttime: "2022/09/18 12:40:40",
+        },
+      },
+      {
+        id: 6494,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663551549327.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663551549327.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663551549%3B93158697600%26q-key-time%3D1663551549%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D61b8dbd4b7c48c1e728f857e8126e5e47fdc0551",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663551549327.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663551549%3B93156019200%26q-key-time%3D1663551549%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D776cef0a30bdf712a342fb665b3daced1a717c12&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_ead5ca1a8441f19351622ac6a63a9098a16c39c6648b566e.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2020%20Sep%202022%2001%3A39%3A09%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "118.49082194010417",
+        latitude: "31.851993815104166",
+        province: "江苏省",
+        city: "南京市",
+        district: "浦口区",
+        street: "",
+        createTime: "2022/09/19 09:39:09",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6494,
+          mediaId: 6494,
+          province: "江苏",
+          city: "浦口区",
+          adcode: "320111",
+          weather: "晴",
+          temperature: "24",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "48",
+          reporttime: "2022/09/19 09:39:10",
+        },
+      },
+      {
+        id: 6497,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663555930392.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663555930392.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663555930%3B93158697600%26q-key-time%3D1663555930%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D71a80aef84db4b2e6c0b52961169b1198f40b0d8",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663555930392.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663555930%3B93156019200%26q-key-time%3D1663555930%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dfefef38fcb09bd21e538619f6497a081b170191f&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_3e624c3fe31fa05edf69758f78b1f1115e91cd423d117253.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2020%20Sep%202022%2002%3A52%3A10%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "118.57559895833333",
+        latitude: "31.923811306423612",
+        province: "江苏省",
+        city: "南京市",
+        district: "浦口区",
+        street: "",
+        createTime: "2022/09/19 10:52:10",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6497,
+          mediaId: 6497,
+          province: "江苏",
+          city: "浦口区",
+          adcode: "320111",
+          weather: "晴",
+          temperature: "25",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "45",
+          reporttime: "2022/09/19 10:52:11",
+        },
+      },
+      {
+        id: 6548,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663640958938.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663640958938.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663640959%3B93158697600%26q-key-time%3D1663640959%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dcc29119a19bc14c7d4e3570700feb4ecce0c3ef4",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663640958938.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663640959%3B93156019200%26q-key-time%3D1663640959%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D29a12fb4b477f35f4c0cde9627c449134a067dd6&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_c786a8db8623c37221de58b5692605f50f1d3b2acff23428.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2021%20Sep%202022%2002%3A29%3A19%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "117.48325954861112",
+        latitude: "30.74234347873264",
+        province: "安徽省",
+        city: "铜陵市",
+        district: "枞阳县",
+        street: "",
+        createTime: "2022/09/20 10:29:19",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6548,
+          mediaId: 6548,
+          province: "安徽",
+          city: "枞阳县",
+          adcode: "340722",
+          weather: "多云",
+          temperature: "23",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "57",
+          reporttime: "2022/09/20 10:29:19",
+        },
+      },
+      {
+        id: 6582,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663721396080.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663721396080.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663721396%3B93158697600%26q-key-time%3D1663721396%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dd9118916956ec251189fd8863219de1184f595c3",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663721396080.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663721396%3B93156019200%26q-key-time%3D1663721396%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D22480171552efbb84c03b33fc68eef9d5e2d7f79&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_7639a15a0af8ebf89b8663aff67ca3eb0525a16a0015109a.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2022%20Sep%202022%2000%3A49%3A56%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "116.52653401692709",
+        latitude: "29.873819444444443",
+        province: "江西省",
+        city: "九江市",
+        district: "彭泽县",
+        street: "龙城大道",
+        createTime: "2022/09/21 08:49:56",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6582,
+          mediaId: 6582,
+          province: "江西",
+          city: "彭泽县",
+          adcode: "360430",
+          weather: "阴",
+          temperature: "20",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "73",
+          reporttime: "2022/09/21 08:49:56",
+        },
+      },
+      {
+        id: 6608,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663810185702.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663810185702.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663810186%3B93158697600%26q-key-time%3D1663810186%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D33bd0e59b79da88f62460dccdf027f2dd1d7e734",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663810185702.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663810186%3B93156019200%26q-key-time%3D1663810186%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dcf1e282d415c151b1e116d7aecdab0e68f0e7d51&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_08b735fb5a5b7109dd969d04e1c79652225d5d737e762129.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2023%20Sep%202022%2001%3A29%3A46%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "115.13027153862848",
+        latitude: "30.216365831163195",
+        province: "湖北省",
+        city: "黄冈市",
+        district: "浠水县",
+        street: "灵官路",
+        createTime: "2022/09/22 09:29:45",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6608,
+          mediaId: 6608,
+          province: "湖北",
+          city: "浠水县",
+          adcode: "421125",
+          weather: "多云",
+          temperature: "20",
+          winddirection: "西北",
+          windpower: "≤3",
+          humidity: "66",
+          reporttime: "2022/09/22 09:29:46",
+        },
+      },
+      {
+        id: 6638,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663898034111.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663898034111.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663898034%3B93158697600%26q-key-time%3D1663898034%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dab68bbf59e3bedae3194ea878aacb6876d5c6edd",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663898034111.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663898034%3B93156019200%26q-key-time%3D1663898034%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Df1b617bbfca59f3b5a3edc6e998dfd66006d4d84&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_bcc5eb4f93aab278745009a2bc2eafdd12efead688c670ad.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2024%20Sep%202022%2001%3A53%3A54%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.14805365668403",
+        latitude: "30.378991970486112",
+        province: "湖北省",
+        city: "武汉市",
+        district: "蔡甸区",
+        street: "经开大道",
+        createTime: "2022/09/23 09:53:54",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6638,
+          mediaId: 6638,
+          province: "湖北",
+          city: "蔡甸区",
+          adcode: "420114",
+          weather: "多云",
+          temperature: "22",
+          winddirection: "西北",
+          windpower: "≤3",
+          humidity: "82",
+          reporttime: "2022/09/23 09:53:55",
+        },
+      },
+      {
+        id: 6645,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1663916686600.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663916686600.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663916687%3B93158697600%26q-key-time%3D1663916687%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Db92634388ac19c88319022939518d76c959ebfad",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201663916686600.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1663916687%3B93156019200%26q-key-time%3D1663916687%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Df6a73f89535813f2b544d4101d5935f512954992&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_0e913c407aca4769ccc170fc34f07ef7f46a3522f7efce63.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2024%20Sep%202022%2007%3A04%3A47%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "113.92172173394097",
+        latitude: "30.304678276909723",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉南区",
+        street: "",
+        createTime: "2022/09/23 15:04:46",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6645,
+          mediaId: 6645,
+          province: "湖北",
+          city: "汉南区",
+          adcode: "420113",
+          weather: "多云",
+          temperature: "26",
+          winddirection: "北",
+          windpower: "5",
+          humidity: "36",
+          reporttime: "2022/09/23 15:04:47",
+        },
+      },
+      {
+        id: 6665,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1664016475669.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664016475669.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664016476%3B93158697600%26q-key-time%3D1664016476%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3De4720f762a30639516c39b381c294afae36f4d09",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664016475669.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664016476%3B93156019200%26q-key-time%3D1664016476%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D8c10c13e1bfede7f0c5efdc9a9643e70c15dce79&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_b59eff2ea24848f5f79ea04e2685ad204c0077ae9d6ddf4c.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2025%20Sep%202022%2010%3A47%3A56%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "113.87504611545138",
+        latitude: "30.231309950086807",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉南区",
+        street: "",
+        createTime: "2022/09/24 18:47:55",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6665,
+          mediaId: 6665,
+          province: "湖北",
+          city: "汉南区",
+          adcode: "420113",
+          weather: "阴",
+          temperature: "20",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "53",
+          reporttime: "2022/09/24 18:47:56",
+        },
+      },
+      {
+        id: 6685,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1664082270342.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664082270342.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664082270%3B93158697600%26q-key-time%3D1664082270%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dccd831bacc037bca9fd5a17dc031fa460fde3635",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664082270342.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664082270%3B93156019200%26q-key-time%3D1664082270%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Db06915ff6886257cd2de6462909e2ad41df69702&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_fddb0243d0d8aae45d93fd063b60a7e45fdc2675db148b2c.jpg%22&response-content-language=zh-CN&response-expires=Mon%2C%2026%20Sep%202022%2005%3A04%3A30%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "113.91247395833334",
+        latitude: "30.245770670572917",
+        province: "湖北省",
+        city: "咸宁市",
+        district: "嘉鱼县",
+        street: "",
+        createTime: "2022/09/25 13:04:30",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6685,
+          mediaId: 6685,
+          province: "湖北",
+          city: "嘉鱼县",
+          adcode: "421221",
+          weather: "阴",
+          temperature: "23",
+          winddirection: "西",
+          windpower: "≤3",
+          humidity: "41",
+          reporttime: "2022/09/25 13:04:31",
+        },
+      },
+      {
+        id: 6701,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1664153910137.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664153910137.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664153910%3B93158697600%26q-key-time%3D1664153910%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D144a590f212a03bf644103308f9c0eecb69ba637",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664153910137.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664153910%3B93156019200%26q-key-time%3D1664153910%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D0da6bb20785eff3d8ec844c4a351701e74d75fa5&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_a16c13965abe879699842fd763540d1789142ed275109190.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2027%20Sep%202022%2000%3A58%3A30%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "113.91247395833334",
+        latitude: "30.245770670572917",
+        province: "湖北省",
+        city: "咸宁市",
+        district: "嘉鱼县",
+        street: "",
+        createTime: "2022/09/26 08:58:30",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6701,
+          mediaId: 6701,
+          province: "湖北",
+          city: "嘉鱼县",
+          adcode: "421221",
+          weather: "晴",
+          temperature: "21",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "69",
+          reporttime: "2022/09/26 08:58:31",
+        },
+      },
+      {
+        id: 6727,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1664241532226.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664241532226.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664241532%3B93158697600%26q-key-time%3D1664241532%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D8d864add61aeac4a386dc64fa2f6d57f7582def0",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664241532226.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664241532%3B93156019200%26q-key-time%3D1664241532%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D37198bb9a7f1a96e5dcf8bb498fd02f21255c070&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_5bdfdf5ea6cf27f43434f98a7ec233dcd809446fe65dbf3b.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2028%20Sep%202022%2001%3A18%3A52%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "113.91247395833334",
+        latitude: "30.245770670572917",
+        province: "湖北省",
+        city: "咸宁市",
+        district: "嘉鱼县",
+        street: "",
+        createTime: "2022/09/27 09:18:52",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6727,
+          mediaId: 6727,
+          province: "湖北",
+          city: "嘉鱼县",
+          adcode: "421221",
+          weather: "晴",
+          temperature: "24",
+          winddirection: "东",
+          windpower: "≤3",
+          humidity: "62",
+          reporttime: "2022/09/27 09:18:53",
+        },
+      },
+      {
+        id: 6731,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1664267880210.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664267880210.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664267880%3B93158697600%26q-key-time%3D1664267880%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D4c0de19fc20e0a42ed8fac698ad361db62aca2aa",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201664267880210.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1664267880%3B93156019200%26q-key-time%3D1664267880%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D00633442cc782088105c67fc6fcc0fa1dfde4281&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_905fb7fd408995432cdf91237c5798ca08e128cb671b1392.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2028%20Sep%202022%2008%3A38%3A00%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "113.87789089626736",
+        latitude: "30.23088351779514",
+        province: "湖北省",
+        city: "武汉市",
+        district: "汉南区",
+        street: "",
+        createTime: "2022/09/27 16:38:00",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 6731,
+          mediaId: 6731,
+          province: "湖北",
+          city: "汉南区",
+          adcode: "420113",
+          weather: "多云",
+          temperature: "30",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "40",
+          reporttime: "2022/09/27 16:38:01",
+        },
+      },
+      {
+        id: 7080,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1666184018314.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201666184018314.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1666184018%3B93158697600%26q-key-time%3D1666184018%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D5c37aa52d46a45242d998a91f29d1d24c15c81bb",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201666184018314.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1666184018%3B93156019200%26q-key-time%3D1666184018%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dc506e1cc13750a9c20a92af0e280c356b4087a86&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_855a2824b2648c16a634e4de3d0508e9059f0a4524d468ab.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2020%20Oct%202022%2012%3A53%3A38%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "115.46336615668403",
+        latitude: "29.842596299913193",
+        province: "湖北省",
+        city: "黄石市",
+        district: "阳新县",
+        street: "",
+        createTime: "2022/10/19 20:53:38",
+        audit: 2,
+        status: 0,
+        weather: {
+          id: 7080,
+          mediaId: 7080,
+          province: "湖北",
+          city: "阳新县",
+          adcode: "420222",
+          weather: "晴",
+          temperature: "16",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "46",
+          reporttime: "2022/10/19 20:53:39",
+        },
+      },
+      {
+        id: 7952,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671414513470.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671414513470.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671414513%3B93158697600%26q-key-time%3D1671414513%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Da06fb1c4fda273909fba83892114618d1550e912",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671414513470.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671414513%3B93156019200%26q-key-time%3D1671414513%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dd52f49dc3a054cdf05ebe2b437a2f8900db21e31&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_870d3d956293b8ad66058166d638704fa201643f185f16f3.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2020%20Dec%202022%2001%3A48%3A33%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "117.06556722005209",
+        latitude: "30.500555013020833",
+        province: "安徽省",
+        city: "安庆市",
+        district: "迎江区",
+        street: "沿江东路",
+        createTime: "2022/12/19 09:48:33",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 7952,
+          mediaId: 7952,
+          province: "安徽",
+          city: "迎江区",
+          adcode: "340802",
+          weather: "晴",
+          temperature: "4",
+          winddirection: "西南",
+          windpower: "≤3",
+          humidity: "39",
+          reporttime: "2022/12/19 09:48:34",
+        },
+      },
+      {
+        id: 7969,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671510018808.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671510018808.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671510019%3B93158697600%26q-key-time%3D1671510019%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D8940f8463335627b9554bc8e7180b32c0451f50f",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671510018808.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671510019%3B93156019200%26q-key-time%3D1671510019%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D6139b518db1302bc3b0f371b54bc4a44ad18cbf7&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_706dc1a64a0d80e46aebb694e3fdcd31bc5475a47ab2f3ae.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2021%20Dec%202022%2004%3A20%3A19%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "115.84699381510417",
+        latitude: "29.734091796875",
+        province: "江西省",
+        city: "九江市",
+        district: "柴桑区",
+        street: "春江路",
+        createTime: "2022/12/20 12:20:19",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 7969,
+          mediaId: 7969,
+          province: "江西",
+          city: "柴桑区",
+          adcode: "360404",
+          weather: "晴",
+          temperature: "8",
+          winddirection: "南",
+          windpower: "≤3",
+          humidity: "37",
+          reporttime: "2022/12/20 12:20:19",
+        },
+      },
+      {
+        id: 7983,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671610937560.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671610937560.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671610937%3B93158697600%26q-key-time%3D1671610937%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D7774ef9429b0309064edda5dcbb2cfbae4f757b3",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671610937560.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671610937%3B93156019200%26q-key-time%3D1671610937%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D943664ae8d619f48d14f1d66525e79eb0351d403&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_07f21fda1c81b1d04d4980560136f44337af9b58480278eb.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2022%20Dec%202022%2008%3A22%3A17%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.84650472005208",
+        latitude: "30.531665581597224",
+        province: "湖北省",
+        city: "黄冈市",
+        district: "黄州区",
+        street: "沿江大道",
+        createTime: "2022/12/21 16:22:17",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 7983,
+          mediaId: 7983,
+          province: "湖北",
+          city: "黄州区",
+          adcode: "421102",
+          weather: "晴",
+          temperature: "14",
+          winddirection: "西南",
+          windpower: "≤3",
+          humidity: "40",
+          reporttime: "2022/12/21 16:22:18",
+        },
+      },
+      {
+        id: 7991,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671632452213.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671632452213.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671632452%3B93158697600%26q-key-time%3D1671632452%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D7c3e568703a81b1a11f77497dd705522ab488bee",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671632452213.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671632452%3B93156019200%26q-key-time%3D1671632452%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D21f8e8bbce46d5b81366b859f13834e2befa747f&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_6655ae6bda5fdbb15956e5aa31324fec92fa7998b3e01f7e.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2022%20Dec%202022%2014%3A20%3A52%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.56940728081597",
+        latitude: "30.58417263454861",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "",
+        createTime: "2022/12/21 22:20:52",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 7991,
+          mediaId: 7991,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "晴",
+          temperature: "10",
+          winddirection: "西南",
+          windpower: "≤3",
+          humidity: "47",
+          reporttime: "2022/12/21 22:20:53",
+        },
+      },
+      {
+        id: 7998,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671668139446.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671668139446.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671668139%3B93158697600%26q-key-time%3D1671668139%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D26f6a9a4d3f544e9f77322c83e6e8a559bc66d2b",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671668139446.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671668139%3B93156019200%26q-key-time%3D1671668139%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dde1ee3712d135f09dfce7a9041fec9afa1e42bf8&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_8124c2b672aee898b3d2ea2e0d01430eb747f2b95c904134.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2023%20Dec%202022%2000%3A15%3A39%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.57727430555556",
+        latitude: "30.569718967013888",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "",
+        createTime: "2022/12/22 08:15:39",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 7998,
+          mediaId: 7998,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "晴",
+          temperature: "5",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "43",
+          reporttime: "2022/12/22 08:15:40",
+        },
+      },
+      {
+        id: 8015,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671762863506.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671762863506.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671762863%3B93158697600%26q-key-time%3D1671762863%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D7569f85d9c29c74c5f6aea4154291422eafee8d0",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671762863506.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671762863%3B93156019200%26q-key-time%3D1671762863%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D01ba91b3e511fe6af6ea04e186e15b7928f59737&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_ca068d0436a01dac1b79617b8e6324621b9b493c9823f287.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2024%20Dec%202022%2002%3A34%3A23%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.58262451171875",
+        latitude: "30.616331651475694",
+        province: "湖北省",
+        city: "武汉市",
+        district: "新洲区",
+        street: "",
+        createTime: "2022/12/23 10:34:23",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8015,
+          mediaId: 8015,
+          province: "湖北",
+          city: "新洲区",
+          adcode: "420117",
+          weather: "晴",
+          temperature: "5",
+          winddirection: "东南",
+          windpower: "≤3",
+          humidity: "39",
+          reporttime: "2022/12/23 10:34:24",
+        },
+      },
+      {
+        id: 8016,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671762891991.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671762891991.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671762892%3B93158697600%26q-key-time%3D1671762892%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D281b01011f95c7d5c3c3e00a357e3b0f52ccbc09",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671762891991.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671762892%3B93156019200%26q-key-time%3D1671762892%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D9f81014f42e75a40f397dc96f86fd3c44215d31b&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_0abdccb7393b36afe17cf59d3c9e9657aa94d9aa4d661464.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2024%20Dec%202022%2002%3A34%3A52%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.57594807942708",
+        latitude: "30.589251844618055",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "",
+        createTime: "2022/12/23 10:34:52",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8016,
+          mediaId: 8016,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "晴",
+          temperature: "6",
+          winddirection: "东南",
+          windpower: "≤3",
+          humidity: "45",
+          reporttime: "2022/12/23 10:34:52",
+        },
+      },
+      {
+        id: 8034,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671849816938.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849816938.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849817%3B93158697600%26q-key-time%3D1671849817%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D8df56fdc66c95c638a602908c1011dc13f601a72",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849816938.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849817%3B93156019200%26q-key-time%3D1671849817%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D9550a752f501f76bc46658f6b805b832f8ec9db9&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_2aae65ac7037ba91d553dd33daa6c0157b4f2dc83e920b33.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2025%20Dec%202022%2002%3A43%3A37%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.63480631510417",
+        latitude: "30.543369140625",
+        province: "湖北省",
+        city: "鄂州市",
+        district: "华容区",
+        street: "",
+        createTime: "2022/12/24 10:43:37",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8034,
+          mediaId: 8034,
+          province: "湖北",
+          city: "华容区",
+          adcode: "420703",
+          weather: "晴",
+          temperature: "8",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "44",
+          reporttime: "2022/12/24 10:43:37",
+        },
+      },
+      {
+        id: 8035,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671849864969.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849864969.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849865%3B93158697600%26q-key-time%3D1671849865%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D28f0b2b274178a71946839cb74ffeafa4d78a63c",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849864969.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849865%3B93156019200%26q-key-time%3D1671849865%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3De1be7149d13de4821d4d9252bd0319787bb961e0&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_e6d97094422af1fe19631e806319b7c44e507f40a2788a3e.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2025%20Dec%202022%2002%3A44%3A25%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.63480631510417",
+        latitude: "30.543369140625",
+        province: "湖北省",
+        city: "鄂州市",
+        district: "华容区",
+        street: "",
+        createTime: "2022/12/24 10:44:25",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8035,
+          mediaId: 8035,
+          province: "湖北",
+          city: "华容区",
+          adcode: "420703",
+          weather: "晴",
+          temperature: "8",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "44",
+          reporttime: "2022/12/24 10:44:26",
+        },
+      },
+      {
+        id: 8036,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671849936001.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849936001.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849936%3B93158697600%26q-key-time%3D1671849936%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D9adfdb3bbbd52d3ea79e46aba80376bf87cdbfe6",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849936001.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849936%3B93156019200%26q-key-time%3D1671849936%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D309a66e5b37f84e76b36e72691159aaaca164c66&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_35801b278c0482d31339684a56a03c93745d5e24ed9bdbee.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2025%20Dec%202022%2002%3A45%3A36%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.63480631510417",
+        latitude: "30.543369140625",
+        province: "湖北省",
+        city: "鄂州市",
+        district: "华容区",
+        street: "",
+        createTime: "2022/12/24 10:45:36",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8036,
+          mediaId: 8036,
+          province: "湖北",
+          city: "华容区",
+          adcode: "420703",
+          weather: "晴",
+          temperature: "8",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "44",
+          reporttime: "2022/12/24 10:45:36",
+        },
+      },
+      {
+        id: 8037,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671849988949.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849988949.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849989%3B93158697600%26q-key-time%3D1671849989%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D4ff7b04b08094b801d0fbbfbb2f7451ff1c34ff6",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671849988949.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671849989%3B93156019200%26q-key-time%3D1671849989%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dd225c708d1d8b34a40610fc2cd63dbb1f3fcf2fb&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_01b4b7f39d73280e968838011e1c5d9bf3fc2db9efad0047.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2025%20Dec%202022%2002%3A46%3A29%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.63480631510417",
+        latitude: "30.543369140625",
+        province: "湖北省",
+        city: "鄂州市",
+        district: "华容区",
+        street: "",
+        createTime: "2022/12/24 10:46:29",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8037,
+          mediaId: 8037,
+          province: "湖北",
+          city: "华容区",
+          adcode: "420703",
+          weather: "晴",
+          temperature: "8",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "44",
+          reporttime: "2022/12/24 10:46:29",
+        },
+      },
+      {
+        id: 8040,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671850197631.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671850197631.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671850198%3B93158697600%26q-key-time%3D1671850198%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D7790b0c74af48395a1132692aeac6786834b75aa",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671850197631.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671850198%3B93156019200%26q-key-time%3D1671850198%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dbf4f38ec4d267e6d0811e164030167ef3a1efd0a&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_d482636fe70878b7593222d16a298998d58d5d677e1889ea.jpg%22&response-content-language=zh-CN&response-expires=Sun%2C%2025%20Dec%202022%2002%3A49%3A58%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.5773659939236",
+        latitude: "30.56967990451389",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "",
+        createTime: "2022/12/24 10:49:57",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8040,
+          mediaId: 8040,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "晴",
+          temperature: "7",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "38",
+          reporttime: "2022/12/24 10:49:58",
+        },
+      },
+      {
+        id: 8057,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671934055972.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671934055972.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671934056%3B93158697600%26q-key-time%3D1671934056%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D2daf8e37dc25fd468baa1eb7840cdc8868678391",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671934055972.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671934056%3B93156019200%26q-key-time%3D1671934056%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dbe8ee789c90ef940e3fab7eafdcdca664d90a739&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_b15e745c5989e738643e7e65f902c51f249d41ddfd82248d.jpg%22&response-content-language=zh-CN&response-expires=Mon%2C%2026%20Dec%202022%2002%3A07%3A36%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.5773659939236",
+        latitude: "30.56967990451389",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "",
+        createTime: "2022/12/25 10:07:36",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8057,
+          mediaId: 8057,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "晴",
+          temperature: "5",
+          winddirection: "东",
+          windpower: "≤3",
+          humidity: "40",
+          reporttime: "2022/12/25 10:07:36",
+        },
+      },
+      {
+        id: 8058,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1671934245345.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671934245345.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671934245%3B93158697600%26q-key-time%3D1671934245%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Df42feb7f5be3f0ff871cc01b71023a8ddca49940",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201671934245345.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1671934245%3B93156019200%26q-key-time%3D1671934245%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D13410fe62af465d30b7a58c0edd0b9220d611877&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_90919a958a386a03a5d8817a0e02b3899d9f3726bcfe0b14.jpg%22&response-content-language=zh-CN&response-expires=Mon%2C%2026%20Dec%202022%2002%3A10%3A45%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.58066786024305",
+        latitude: "30.577633463541666",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "",
+        createTime: "2022/12/25 10:10:45",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8058,
+          mediaId: 8058,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "晴",
+          temperature: "5",
+          winddirection: "东",
+          windpower: "≤3",
+          humidity: "40",
+          reporttime: "2022/12/25 10:10:46",
+        },
+      },
+      {
+        id: 8073,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1672026771516.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672026771516.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672026771%3B93158697600%26q-key-time%3D1672026771%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D1a53d4ebcc70977772db2803e1806b8ce0ee0940",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672026771516.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672026771%3B93156019200%26q-key-time%3D1672026771%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Df25da15cd4684875f93890ff551cafe07f2315a8&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_d0e9a199e99ea0dcf0b1fc30d9aedca952a204858cb32444.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2027%20Dec%202022%2003%3A52%3A51%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.56992106119792",
+        latitude: "30.583297526041665",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "",
+        createTime: "2022/12/26 11:52:51",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8073,
+          mediaId: 8073,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "阴",
+          temperature: "4",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "57",
+          reporttime: "2022/12/26 11:52:52",
+        },
+      },
+      {
+        id: 8080,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1672104478075.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672104478075.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672104478%3B93158697600%26q-key-time%3D1672104478%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D8a1fcde280e1c5537ad93ef9030e65ac0721d772",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672104478075.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672104478%3B93156019200%26q-key-time%3D1672104478%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dea97c018baabd1a8e1d4e78d077f822f77862555&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_57ebec3d15ad9cf69b05abb28358b2799b7f19379a08102b.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2028%20Dec%202022%2001%3A27%3A58%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.55391411675348",
+        latitude: "30.618359917534722",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "化工二路",
+        createTime: "2022/12/27 09:27:58",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8080,
+          mediaId: 8080,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "阴",
+          temperature: "4",
+          winddirection: "东北",
+          windpower: "≤3",
+          humidity: "71",
+          reporttime: "2022/12/27 09:27:59",
+        },
+      },
+      {
+        id: 8100,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1672196299870.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672196299870.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672196300%3B93158697600%26q-key-time%3D1672196300%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D3e868086229fbabf39ae1635fb93b8dd9e989c41",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672196299870.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672196300%3B93156019200%26q-key-time%3D1672196300%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dbff0ee2c388b05b2f32e263a9d3391b0e9528292&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_acde0cde9574d76fe7c3cb03dc2f8237e10ad67dc90d6435.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2029%20Dec%202022%2002%3A58%3A20%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.5572691514757",
+        latitude: "30.651500379774305",
+        province: "湖北省",
+        city: "武汉市",
+        district: "新洲区",
+        street: "沿江路",
+        createTime: "2022/12/28 10:58:20",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8100,
+          mediaId: 8100,
+          province: "湖北",
+          city: "新洲区",
+          adcode: "420117",
+          weather: "晴",
+          temperature: "3",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "75",
+          reporttime: "2022/12/28 10:58:20",
+        },
+      },
+      {
+        id: 8101,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1672196375670.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672196375670.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672196376%3B93158697600%26q-key-time%3D1672196376%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Df4fc2ef5047522cb35fd1974a8c15cc668b48943",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672196375670.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672196376%3B93156019200%26q-key-time%3D1672196376%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D89de50e1fdd1e4893fc84dfc750ae60859582fd1&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_e5a0bc73f6c2e97ce28788eb5b6e8cbb8dc463636cb2ee98.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2029%20Dec%202022%2002%3A59%3A36%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.55760308159722",
+        latitude: "30.650569390190974",
+        province: "湖北省",
+        city: "武汉市",
+        district: "新洲区",
+        street: "沿江路",
+        createTime: "2022/12/28 10:59:35",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8101,
+          mediaId: 8101,
+          province: "湖北",
+          city: "新洲区",
+          adcode: "420117",
+          weather: "晴",
+          temperature: "3",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "75",
+          reporttime: "2022/12/28 10:59:36",
+        },
+      },
+      {
+        id: 8118,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1672290081088.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672290081088.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672290081%3B93158697600%26q-key-time%3D1672290081%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D4d09dab23b4b6582ab17cbcb4f4875124e3332be",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672290081088.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672290081%3B93156019200%26q-key-time%3D1672290081%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D70289e6d268c0692f97abbcba337c4b7c9179b9a&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_6b6806f8f996eb1ab89d66f341bddaef2d41846d6647c305.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2030%20Dec%202022%2005%3A01%3A21%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.5588609483507",
+        latitude: "30.648039008246528",
+        province: "湖北省",
+        city: "武汉市",
+        district: "新洲区",
+        street: "永平街",
+        createTime: "2022/12/29 13:01:21",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8118,
+          mediaId: 8118,
+          province: "湖北",
+          city: "新洲区",
+          adcode: "420117",
+          weather: "晴",
+          temperature: "7",
+          winddirection: "北",
+          windpower: "≤3",
+          humidity: "45",
+          reporttime: "2022/12/29 13:01:21",
+        },
+      },
+      {
+        id: 8128,
+        shipId: 103,
+        shipName: "春风999",
+        mmsi: "413854488",
+        fileKey: "pat/images/陈兴亚 1672365893227.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672365893227.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672365893%3B93158697600%26q-key-time%3D1672365893%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D5bf41bd07ab991b766383fdae5eb0758b7834162",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/pat/images/%E9%99%88%E5%85%B4%E4%BA%9A%201672365893227.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1672365893%3B93156019200%26q-key-time%3D1672365893%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D27e850ee91cba86d184068999bfeb2ac4af59c24&response-cache-control=no-cache&response-content-disposition=filename%3D%22tmp_5cb2d74c93a30f050072dc3578a6482f2caa794aeb9422ce.jpg%22&response-content-language=zh-CN&response-expires=Sat%2C%2031%20Dec%202022%2002%3A04%3A53%20GMT&response-content-type=application%2Foctet-stream",
+        mediaType: 1,
+        type: 0,
+        longitude: "114.55650851779514",
+        latitude: "30.632586805555555",
+        province: "湖北省",
+        city: "武汉市",
+        district: "洪山区",
+        street: "临江大道",
+        createTime: "2022/12/30 10:04:53",
+        audit: 1,
+        status: 0,
+        weather: {
+          id: 8128,
+          mediaId: 8128,
+          province: "湖北",
+          city: "洪山区",
+          adcode: "420111",
+          weather: "晴",
+          temperature: "4",
+          winddirection: "东",
+          windpower: "≤3",
+          humidity: "82",
+          reporttime: "2022/12/30 10:04:54",
+        },
+      },
+    ],
+    waybills: [
+      {
+        id: 1750,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey:
+          "waybill/9efb424e-e4b7-4cba-85af-26029c6435fb1712053798792.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/waybill/9efb424e-e4b7-4cba-85af-26029c6435fb1712053798792.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712053798%3B93158697600%26q-key-time%3D1712053798%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D9ba5fbb349f391d056d269a1f39611d35a305736",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/waybill/9efb424e-e4b7-4cba-85af-26029c6435fb1712053798792.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712053798%3B93156019200%26q-key-time%3D1712053798%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Decde56c8f1937675506fc80f6e47c66f6db0c2f3&response-cache-control=no-cache&response-content-disposition=filename%3D%22tsxb.jpg%22&response-content-language=zh-CN&response-expires=Wed%2C%2003%20Apr%202024%2010%3A29%3A58%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 1,
+        mediaType: 1,
+        createTime: "2024/04/02 18:29:59",
+      },
+      {
+        id: 1741,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey:
+          "waybill/e503dd9b-d186-49a8-aa4e-49ae57692d8b1679457931346.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/waybill/e503dd9b-d186-49a8-aa4e-49ae57692d8b1679457931346.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1679457931%3B93158697600%26q-key-time%3D1679457931%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D401bdb4e064a1bac9f40c2becd235988c1b866e5",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/waybill/e503dd9b-d186-49a8-aa4e-49ae57692d8b1679457931346.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1679457931%3B93156019200%26q-key-time%3D1679457931%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D3e9c7598a6903c0714754691e7880ed29243c0d2&response-cache-control=no-cache&response-content-disposition=filename%3D%22demo3.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2023%20Mar%202023%2004%3A05%3A31%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 1,
+        mediaType: 1,
+        createTime: "2023/03/22 12:05:32",
+      },
+    ],
+    policys: [
+      {
+        id: 1760,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/6ca48886-877f-4138-bca8-06c08cfb2e111712224519738.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/6ca48886-877f-4138-bca8-06c08cfb2e111712224519738.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712224519%3B93158697600%26q-key-time%3D1712224519%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D726a0742ccd3db46367b916a2d8aaafd9d3e45b8",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/6ca48886-877f-4138-bca8-06c08cfb2e111712224519738.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712224519%3B93156019200%26q-key-time%3D1712224519%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D37b3895527cebaef59afaae04e043a1692497478&response-cache-control=no-cache&response-content-disposition=filename%3D%22xxb.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2005%20Apr%202024%2009%3A55%3A19%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/04 17:55:20",
+      },
+      {
+        id: 1759,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/ad6ea35f-7bc7-48f5-8c81-aad8b3452ee21712221511191.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/ad6ea35f-7bc7-48f5-8c81-aad8b3452ee21712221511191.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712221511%3B93158697600%26q-key-time%3D1712221511%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Da6b316d55fa6e63cb0d2e1b28e2bd6af0f8cd083",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/ad6ea35f-7bc7-48f5-8c81-aad8b3452ee21712221511191.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712221511%3B93156019200%26q-key-time%3D1712221511%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D426c82c4c6089b9a32c7302fda1fe6c6337378a5&response-cache-control=no-cache&response-content-disposition=filename%3D%22xxb.jpg%22&response-content-language=zh-CN&response-expires=Fri%2C%2005%20Apr%202024%2009%3A05%3A11%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/04 17:05:11",
+      },
+      {
+        id: 1758,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/e40ce97b-378f-4439-82aa-d5dcc4f6973b1712221506755.pdf",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/e40ce97b-378f-4439-82aa-d5dcc4f6973b1712221506755.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712221506%3B93158697600%26q-key-time%3D1712221506%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dbec8ee61244f02274bb1f933a4249a74c06d76eb",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/e40ce97b-378f-4439-82aa-d5dcc4f6973b1712221506755.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712221506%3B93156019200%26q-key-time%3D1712221506%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D4cef4be9cd2320e8c80fa520a08159093c35415e&response-cache-control=no-cache&response-content-disposition=filename%3D%22%E6%B5%8B%E8%AF%95pdf.pdf%22&response-content-language=zh-CN&response-expires=Fri%2C%2005%20Apr%202024%2009%3A05%3A06%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/04 17:05:07",
+      },
+      {
+        id: 1756,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/d27d1403-3cb1-403b-82ec-448b899996201712221325520.pdf",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/d27d1403-3cb1-403b-82ec-448b899996201712221325520.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712221325%3B93158697600%26q-key-time%3D1712221325%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dc13b9e161ea6a9f0fffe38cb5a42f23afbcbdad6",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/d27d1403-3cb1-403b-82ec-448b899996201712221325520.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712221325%3B93156019200%26q-key-time%3D1712221325%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Dc8c68a3677020a34a88c73868d5e6c08f5eb5df0&response-cache-control=no-cache&response-content-disposition=filename%3D%22%E6%B5%8B%E8%AF%95pdf.pdf%22&response-content-language=zh-CN&response-expires=Fri%2C%2005%20Apr%202024%2009%3A02%3A05%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/04 17:02:06",
+      },
+      {
+        id: 1755,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/ea231553-da08-4951-8c44-a2026fee2f4a1712219645269.pdf",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/ea231553-da08-4951-8c44-a2026fee2f4a1712219645269.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712219645%3B93158697600%26q-key-time%3D1712219645%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D52149cac9a2100561a9e76408474a7c4e5bf22a3",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/ea231553-da08-4951-8c44-a2026fee2f4a1712219645269.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712219645%3B93156019200%26q-key-time%3D1712219645%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3De4ace123505a24e19f891022b3b1bcdad15ccd7a&response-cache-control=no-cache&response-content-disposition=filename%3D%22%E6%B5%8B%E8%AF%95pdf.pdf%22&response-content-language=zh-CN&response-expires=Fri%2C%2005%20Apr%202024%2008%3A34%3A05%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/04 16:34:06",
+      },
+      {
+        id: 1754,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/f01a99ed-dfa1-4266-a11b-050c72e4e8491712218624193.pdf",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/f01a99ed-dfa1-4266-a11b-050c72e4e8491712218624193.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712218625%3B93158697600%26q-key-time%3D1712218625%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Dd2b93f46b6983f6c057363bb5986beda8963e857",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/f01a99ed-dfa1-4266-a11b-050c72e4e8491712218624193.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712218625%3B93156019200%26q-key-time%3D1712218625%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D02cc0e636e3cee8700b937ee82c55e4ecf090d17&response-cache-control=no-cache&response-content-disposition=filename%3D%22%E6%B5%8B%E8%AF%95pdf.pdf%22&response-content-language=zh-CN&response-expires=Fri%2C%2005%20Apr%202024%2008%3A17%3A05%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/04 16:17:06",
+      },
+      {
+        id: 1752,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/d039ea4c-c379-4242-b71a-d0203ce142d41712071744046.pdf",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/d039ea4c-c379-4242-b71a-d0203ce142d41712071744046.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712071744%3B93158697600%26q-key-time%3D1712071744%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Da494202f9efa039594034d9b7b59bbed69fa8d86",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/d039ea4c-c379-4242-b71a-d0203ce142d41712071744046.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712071744%3B93156019200%26q-key-time%3D1712071744%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D28672bece9786e1aa3238a7feee5edb56e6ae572&response-cache-control=no-cache&response-content-disposition=filename%3D%22%E6%B5%8B%E8%AF%95pdf%E5%88%86%E9%A1%B5.pdf%22&response-content-language=zh-CN&response-expires=Wed%2C%2003%20Apr%202024%2015%3A29%3A04%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/02 23:29:04",
+      },
+      {
+        id: 1751,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/e100da9d-6682-4761-bd1c-89f3e415509e1712053805495.pdf",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/e100da9d-6682-4761-bd1c-89f3e415509e1712053805495.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712053805%3B93158697600%26q-key-time%3D1712053805%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Df08341425dd16c716e4c390ed846032269b58bda",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/e100da9d-6682-4761-bd1c-89f3e415509e1712053805495.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1712053805%3B93156019200%26q-key-time%3D1712053805%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Df762c37c7c463ef62c04c0f019692e396ed79a0f&response-cache-control=no-cache&response-content-disposition=filename%3D%22%E6%B5%8B%E8%AF%95pdf.pdf%22&response-content-language=zh-CN&response-expires=Wed%2C%2003%20Apr%202024%2010%3A30%3A05%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/02 18:30:06",
+      },
+      {
+        id: 1744,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/82b19a32-95a3-49e2-b8a0-4da13c80fc7e1711983309456.pdf",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/82b19a32-95a3-49e2-b8a0-4da13c80fc7e1711983309456.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1711983309%3B93158697600%26q-key-time%3D1711983309%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D8dc744a1deb338bd767ddb1c09e45ba4167e0587",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/82b19a32-95a3-49e2-b8a0-4da13c80fc7e1711983309456.pdf?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1711983309%3B93156019200%26q-key-time%3D1711983309%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D1a900e6d41119444c4c704b7bb963de823844bbc&response-cache-control=no-cache&response-content-disposition=filename%3D%22%E6%B5%8B%E8%AF%95pdf.pdf%22&response-content-language=zh-CN&response-expires=Tue%2C%2002%20Apr%202024%2014%3A55%3A09%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2024/04/01 22:55:10",
+      },
+      {
+        id: 1740,
+        voyageId: 246,
+        voyageDetailId: 0,
+        fileKey: "policy/76af0be9-8621-40a2-aee7-696b159be4f91679457925270.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/76af0be9-8621-40a2-aee7-696b159be4f91679457925270.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1679457925%3B93158697600%26q-key-time%3D1679457925%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3Da22d477827595c97bebc9e64830a45a5b0d3d692",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/policy/76af0be9-8621-40a2-aee7-696b159be4f91679457925270.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1679457925%3B93156019200%26q-key-time%3D1679457925%3B93156019200%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3Da8aef5854f0589a140d3f4f89579223a6a72c296&response-cache-control=no-cache&response-content-disposition=filename%3D%22demo2.jpg%22&response-content-language=zh-CN&response-expires=Thu%2C%2023%20Mar%202023%2004%3A05%3A25%20GMT&response-content-type=application%2Foctet-stream",
+        fileType: 3,
+        mediaType: 1,
+        createTime: "2023/03/22 12:05:26",
+      },
+    ],
+    shipAudits: [
+      {
+        id: 539,
+        shipId: 103,
+        fileKey:
+          "ship/audit/7362d1b4-3cd4-4555-ba97-9a8b45a5e0101646614964793.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/audit/7362d1b4-3cd4-4555-ba97-9a8b45a5e0101646614964793.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646614964%3B93158697600%26q-key-time%3D1646614964%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D53b19f84774d7c7a2f9bfebb4d53fac4e8bd8139",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/audit/7362d1b4-3cd4-4555-ba97-9a8b45a5e0101646614964793.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646614964%3B93158697600%26q-key-time%3D1646614964%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D14fad9ea3ec26c820cfce1fed783623599ee6a6b&response-cache-control=no-cache&response-content-disposition=filename%3D%22544cdc33de3005dc3b1c0c1027880d9.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2008%20Mar%202022%2001%3A02%3A44%20GMT&response-content-type=application%2Foctet-stream",
+        type: 5,
+        status: 0,
+        createTime: "2022/03/07 09:03:29",
+      },
+      {
+        id: 540,
+        shipId: 103,
+        fileKey:
+          "ship/nationality/758a014d-a644-459b-b583-0818f11c841a1646615000284.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/nationality/758a014d-a644-459b-b583-0818f11c841a1646615000284.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646615000%3B93158697600%26q-key-time%3D1646615000%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D9e8b638e7a74ea1b0735c2326668a8da5a4fb94a",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/nationality/758a014d-a644-459b-b583-0818f11c841a1646615000284.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646615000%3B93158697600%26q-key-time%3D1646615000%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D99708249c8b6a8c69c215ff247292f5892bd9769&response-cache-control=no-cache&response-content-disposition=filename%3D%2277c938b3559867113c95df06a470146.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2008%20Mar%202022%2001%3A03%3A20%20GMT&response-content-type=application%2Foctet-stream",
+        type: 6,
+        status: 0,
+        createTime: "2022/03/07 09:03:29",
+      },
+      {
+        id: 541,
+        shipId: 103,
+        fileKey:
+          "ship/operating/8d868666-36db-4ce2-8c19-c5a545f89b051646614971616.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/operating/8d868666-36db-4ce2-8c19-c5a545f89b051646614971616.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646614971%3B93158697600%26q-key-time%3D1646614971%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D853e42d70025a5e19fb7e5c9756f23dff8791fb7",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/operating/8d868666-36db-4ce2-8c19-c5a545f89b051646614971616.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646614971%3B93158697600%26q-key-time%3D1646614971%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D3dc73beef8399186e653ccf8888dc0d71fe2f445&response-cache-control=no-cache&response-content-disposition=filename%3D%2267e7b179392e259a6953b3080c62c6b.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2008%20Mar%202022%2001%3A02%3A51%20GMT&response-content-type=application%2Foctet-stream",
+        type: 7,
+        status: 0,
+        createTime: "2022/03/07 09:03:29",
+      },
+      {
+        id: 542,
+        shipId: 103,
+        fileKey:
+          "ship/operating/2098455f-b483-45b6-b6a4-03833ad07b751646614986440.jpg",
+        viewUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/operating/2098455f-b483-45b6-b6a4-03833ad07b751646614986440.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646614986%3B93158697600%26q-key-time%3D1646614986%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3D%26q-signature%3D091e8353e51810292e493b69aa56880fa60de2da",
+        downloadUrl:
+          "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/ship/operating/2098455f-b483-45b6-b6a4-03833ad07b751646614986440.jpg?sign=q-sign-algorithm%3Dsha1%26q-ak%3DAKID4xb091cy4tRikV0EBrGOGsCF1WkhMlum%26q-sign-time%3D1646614986%3B93158697600%26q-key-time%3D1646614986%3B93158697600%26q-header-list%3Dhost%26q-url-param-list%3Dresponse-cache-control%3Bresponse-content-disposition%3Bresponse-content-language%3Bresponse-content-type%3Bresponse-expires%26q-signature%3D89163eacf9ca2af14dd8f47b0e3c720fe3d4efdb&response-cache-control=no-cache&response-content-disposition=filename%3D%2228e13771de007f29714ee265d3c0425.jpg%22&response-content-language=zh-CN&response-expires=Tue%2C%2008%20Mar%202022%2001%3A03%3A06%20GMT&response-content-type=application%2Foctet-stream",
+        type: 7,
+        status: 0,
+        createTime: "2022/03/07 09:03:29",
+      },
+    ],
+    blockChain: {
+      id: "641a7dccaa8c0e0767654485",
+      hash: "0000889380b00685db34786c0dc82764d000d478d24474bec1808e3040c2e687",
+      voyageId: 246,
+      voyageName: "嘉吉-武汉-春风999-202208",
+      shipName: "春风999",
+      shipMmsi: "413854488",
+      cargoOwner: "嘉吉",
+      cargo: "粉末豆粕",
+      loadPort: "南通",
+      dischargeProt: "武汉",
+      loadTons: 1498.764,
+      createTime: "2022/08/05 08:35:18",
+    },
+  },
+  status: 0,
+  msg: "查询成功",
+};
+export default data;

+ 20 - 79
src/views/voyage/voyageDetail.vue

@@ -171,7 +171,20 @@
             </el-button>
           </div>
         </div>
-        <div id="map-container" class="map-container"></div>
+        <AMapContainer
+          ref="mapRef"
+          class="map-container"
+          :medias="medias"
+          :longitude="
+            Number(
+              medias[Math.floor(medias.length / 2)]?.longitude || 120.498409
+            )
+          "
+          :latitude="
+            Number(medias[Math.floor(medias.length / 2)]?.latitude || 32.039665)
+          "
+          :coordinates="coordinates"
+        ></AMapContainer>
         <div class="line" style="margin-top: 30px">
           <div class="info-line">
             <div class="info-line-title">开始时间</div>
@@ -1321,7 +1334,7 @@
   </div>
 </template>
 <script setup>
-import { onMounted, reactive, ref, toRefs } from "vue";
+import { onMounted, reactive, ref, toRefs, nextTick } from "vue";
 import api from "../../apis/fetch";
 import { useRoute } from "vue-router";
 import _ from "lodash";
@@ -1337,9 +1350,9 @@ import downloadBlobFile from "../../utils/downloadBlobFile";
 import url from "../../apis/config";
 import { subTimeStr } from "utils/utils";
 import AMapLoader from "@amap/amap-jsapi-loader";
+import data from "./data.js";
 
 const route = useRoute();
-let map = ref();
 let voyage = ref({
   wuchanVoyageInfo: {},
 });
@@ -1358,6 +1371,7 @@ function showCerts() {
     certs.value.initCerts(shipAudits.value);
   });
 }
+const mapRef = ref(null);
 
 async function getVoyageDetail(isInit) {
   policyFileList.value = [];
@@ -1374,6 +1388,7 @@ async function getVoyageDetail(isInit) {
     voyageId: route.query.id,
     loginAccountId: localStorage.loginAccountId,
   });
+
   loading.close();
   if (res.data.status == 0) {
     ElNotification({
@@ -1427,10 +1442,9 @@ async function getVoyageDetail(isInit) {
       getLabList();
       getPortWeatherList();
       getAccidentList();
-      try {
-        initMap();
-      } catch (error) {}
     }
+    await nextTick();
+    mapRef.value.drawMarkers();
   } else {
     console.log(res);
     ElNotification({
@@ -1540,79 +1554,6 @@ function cancelUpdateDischarge() {
   updateForm.value = {};
   currentUpdateIndex.value = -1;
 }
-function initMap() {
-  AMapLoader.load({
-    key: "0b84075e96d01623f704867a601139bb", // 申请好的Web端开发者Key,首次调用 load 时必填
-    version: "2.0", // 指定要加载的 JSAPI 的版本,缺省时默认为 1.4.15需要使用的的插件列表,如比例尺'AMap.Scale',支持添加多个如:['...','...']
-  }).then((AMap) => {
-    console.log(1);
-    map.value = new AMap.Map("map-container", {
-      zoom: 11, //级别
-      center: [120.563757, 31.891174], //中心点坐标
-      mapStyle: "amap://styles/f48d96805f5fa7f5aada657c5ee37017",
-      zoomEnable: false,
-      dragEnable: false,
-    });
-    map.value.plugin(["AMap.ToolBar", "AMap.HawkEye"], function () {
-      let ToolBar = new AMap.ToolBar({
-        position: {
-          top: "40px",
-          right: "40px",
-        },
-      });
-      let HawkEye = new AMap.HawkEye({
-        opened: false,
-      });
-      // map.value.addControl(ToolBar);
-      map.value.addControl(HawkEye);
-    });
-    let markers = [];
-    for (let i of medias.value) {
-      let content = `<div style='width:160px'>
-        ${
-          i.audit == 1
-            ? `<img id='img${i.id}' style='width:160px;height:160px;object-fit:contain;' src='${i.viewUrl}'/>`
-            : ``
-        }
-        <img src='https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/ship-red-icon.png' style='display:block;width:20px;height:20px;margin:6px auto'/
-      </div>`;
-
-      let marker = new AMap.Marker({
-        content,
-        position: new AMap.LngLat(i.longitude, i.latitude),
-        offset: new AMap.Pixel(-75, i.audit == 1 ? -195 : -30),
-      });
-      if (i.audit == 1) {
-        marker.on("click", () => {
-          openMediaModal(i.viewUrl, 1, "航次图片", i);
-        });
-      }
-
-      markers.push(marker);
-    }
-
-    let overlayGroups = new AMap.OverlayGroup(markers);
-    map.value.on("complete", function () {
-      let t = setTimeout(() => {
-        map.value.add(overlayGroups);
-        map.value.setFitView(markers, true, [200, 50, 0, 0], 18);
-        clearTimeout(t);
-      }, 2000);
-    });
-  });
-}
-
-function setShipMarker(longitude = 121.524761, latitude = 31.228721) {
-  map.value.setCenter([longitude, latitude]);
-  var marker = new AMap.Marker({
-    position: new AMap.LngLat(longitude, latitude),
-    offset: new AMap.Pixel(-20, -20),
-    size: new AMap.Size(80, 80),
-    icon: "https://hhd-pat-1255802371.cos.ap-shanghai.myqcloud.com/frontend/ship-red-icon.png", // 添加 Icon 图标 URL
-    title: "",
-  });
-  map.value.add(marker);
-}
 
 let disabledStatus = ref(true);
 let updateCache = {};