CZT
2023-11-27 c206acfaedc69c390fb67daa81bc686f58a212ef
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
package com.ld.igds.io;
 
import com.ld.igds.io.request.GpsMacRequest;
import com.ld.igds.io.response.ProtocolResponse;
import com.ld.igds.oa.dto.GpsData;
 
/**
 * GPS接口
 * 
 * @author:
 * @description:
 * @version:
 * @data:
 *
 */
public interface RemoteGpsMacService {
 
    /**
     * @return
     */
    String getProtocol();
 
 
 
    /**
     * 查询资产设备位置信息(即查询绑定的GPS设备位置信息)
     *
     * @param param
     * @return
     */
    ProtocolResponse<GpsData> queryLocation(GpsMacRequest param);
 
}