wanglizhong
2025-05-03 de26c331fc9febdc11b85ff98ad657fb12cc2b73
ruoyi-system/src/main/java/com/ruoyi/system/service/IGpsCollectService.java
@@ -1,7 +1,6 @@
package com.ruoyi.system.service;
import com.ruoyi.system.domain.GpsLoginRequest;
import com.ruoyi.system.domain.GpsLoginResponse;
import com.ruoyi.system.domain.*;
/**
 * GPS采集服务接口
@@ -13,4 +12,24 @@
     * @return 登录响应
     */
    GpsLoginResponse login(GpsLoginRequest request);
    /**
     * 获取设备列表
     * @return 设备列表响应
     */
    GpsDeviceListResponse getDeviceList();
    /**
     * 获取设备最后位置
     */
    GpsLastPositionResponse getLastPosition(GpsLastPositionRequest request);
    /**
     * 通过车牌号查询设备号
     *
     * @param plateNumber 车牌号
     * @return 设备号,如果未找到则返回null
     */
    String getDeviceIdByPlateNumber(String plateNumber);