2024-04-13 08:51:23 +08:00
|
|
|
package com.zcloud.service.dw;
|
|
|
|
|
|
|
|
import com.zcloud.service.dw.dto.*;
|
|
|
|
|
|
|
|
public interface DwService {
|
|
|
|
|
2024-04-16 17:22:44 +08:00
|
|
|
Object getMapInfo(MapGet param) throws Exception;
|
2024-04-13 08:51:23 +08:00
|
|
|
Object getMapList(MapGet param) throws Exception;
|
|
|
|
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-13 10:27:30 +08:00
|
|
|
Object getDictionary() throws Exception;
|
2024-04-13 16:12:38 +08:00
|
|
|
|
|
|
|
Object deleteMap(DeleteDto deleteDto);
|
2024-04-13 08:51:23 +08:00
|
|
|
}
|