| | |
| | | package org.sxkj.fw.cockpit.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.sxkj.fw.area.vo.FwAreaDivideVO; |
| | | import org.sxkj.fw.area.vo.FwDefenseSceneManageVO; |
| | | import org.sxkj.fw.cockpit.vo.AlarmStatisticsVO; |
| | | import org.sxkj.fw.cockpit.vo.DeviceStatisticsVO; |
| | | import org.sxkj.fw.detection.param.FwEffectEvalParam; |
| | |
| | | import org.sxkj.fw.record.dto.FwDroneAlarmRecordDTO; |
| | | import org.sxkj.fw.record.vo.FwDroneAlarmRecordVO; |
| | | |
| | | import java.time.LocalDateTime; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public interface ICockpitService { |
| | |
| | | * @return |
| | | */ |
| | | List<DeviceStatisticsVO> getDeviceOutStatistics(String effectiveRangeKmIsNotNull); |
| | | |
| | | /** |
| | | * |
| | | * @param filterSelected |
| | | * @param sceneId |
| | | * @param areaTypeKeys |
| | | * @param isSetSceneManage |
| | | * @param flyTime |
| | | * @return |
| | | */ |
| | | List<FwAreaDivideVO> selectFwAreaDivideList(Integer filterSelected, Long sceneId, String areaTypeKeys, Integer isSetSceneManage, LocalDateTime flyTime); |
| | | |
| | | /** |
| | | * |
| | | * @param filterTime |
| | | * @return |
| | | */ |
| | | List<FwDefenseSceneManageVO> selectFwDefenseSceneManageList(Date filterTime); |
| | | } |