17 lines
533 B
Java
17 lines
533 B
Java
package com.zcloud.service.dw;
|
|
|
|
import com.zcloud.service.dw.dto.*;
|
|
|
|
public interface DwService {
|
|
|
|
Object getMapInfo(MapGet param) throws Exception;
|
|
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;
|
|
Object getDictionary() throws Exception;
|
|
|
|
Object deleteMap(DeleteDto deleteDto);
|
|
}
|