32 lines
976 B
Java
32 lines
976 B
Java
package com.zcloud.service.dw;
|
|
|
|
import com.zcloud.service.dw.dto.*;
|
|
|
|
public interface DwService {
|
|
// 第一版定位接口
|
|
// 废弃
|
|
@Deprecated
|
|
Object getMapInfo(MapGet param) throws Exception;
|
|
// 废弃
|
|
@Deprecated
|
|
Object getMapList(MapGet param) throws Exception;
|
|
// 废弃
|
|
@Deprecated
|
|
Object saveOrUpdateMap(MapInfo param) throws Exception;
|
|
Object getTrace(TraceGet param) throws Exception;
|
|
Object getAlarmList(AlarmGet param) throws Exception;
|
|
Object manageAlarm(AlarmManageDto param) throws Exception;
|
|
// 废弃
|
|
@Deprecated
|
|
Object getDictionary() throws Exception;
|
|
// 废弃
|
|
@Deprecated
|
|
Object deleteMap(DeleteDto deleteDto);
|
|
// 第二版定位接口
|
|
Object getLastProp(GetLastPropDto dto) throws Exception;
|
|
Object getAllMessage() throws Exception;
|
|
Object getCameraList(GetCameraListDto dto) throws Exception;
|
|
Object getCameraInfo(GetCameraInfoDto dto) throws Exception;
|
|
|
|
}
|