qa-prevention-gwj/src/main/java/com/zcloud/service/dw/DwService.java

32 lines
976 B
Java
Raw Normal View History

package com.zcloud.service.dw;
import com.zcloud.service.dw.dto.*;
public interface DwService {
2024-04-23 17:58:27 +08:00
// 第一版定位接口
// 废弃
@Deprecated
Object getMapInfo(MapGet param) throws Exception;
2024-04-23 17:58:27 +08:00
// 废弃
@Deprecated
Object getMapList(MapGet param) throws Exception;
2024-04-23 17:58:27 +08:00
// 废弃
@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;
2024-04-23 17:58:27 +08:00
// 废弃
@Deprecated
2024-04-13 10:27:30 +08:00
Object getDictionary() throws Exception;
2024-04-23 17:58:27 +08:00
// 废弃
@Deprecated
2024-04-13 16:12:38 +08:00
Object deleteMap(DeleteDto deleteDto);
2024-04-23 17:58:27 +08:00
// 第二版定位接口
Object getLastProp(GetLastPropDto dto) throws Exception;
Object getAllMessage() throws Exception;
2024-04-23 18:30:39 +08:00
Object getCameraList(GetCameraListDto dto) throws Exception;
Object getCameraInfo(GetCameraInfoDto dto) throws Exception;
2024-04-23 17:58:27 +08:00
}