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 queryLocation(GpsMacRequest param); }