wlzboy
2025-09-21 b5b16a26de0d84d7b5fb69b584377bdc3582e3ab
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.ruoyi.system.service;
 
import com.ruoyi.system.domain.*;
 
/**
 * GPS采集服务接口
 */
public interface IGpsCollectService {
    /**
     * GPS登录
     * @param request 登录请求
     * @return 登录响应
     */
    GpsLoginResponse login(GpsLoginRequest request);
 
    /**
     * 获取设备列表
 
     * @return 设备列表响应
     */
    GpsDeviceListResponse getDeviceList();
 
    /**
     * 获取设备最后位置
     */
    GpsLastPositionResponse getLastPosition(GpsLastPositionRequest request);
 
    /**
     * 通过车牌号查询设备号
     * 
     * @param plateNumber 车牌号
     * @return 设备号,如果未找到则返回null
     */
    String getDeviceIdByPlateNumber(String plateNumber);
 
    /**
     * 按时间查询历史轨迹
     *
     * @param request 查询请求
     * @return 轨迹查询响应
     */
    GpsTrackQueryResponse queryTracks(GpsTrackQueryRequest request);