| | |
| | | import org.sxkj.fw.area.entity.FwAreaDivideEntity; |
| | | import org.sxkj.fw.area.vo.FwAreaDivideVO; |
| | | import org.sxkj.fw.area.vo.FwAreaDivideStatisticsVO; |
| | | import org.sxkj.fw.area.vo.FwDefenseSceneVO; |
| | | import org.sxkj.fw.area.excel.FwAreaDivideExcel; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.baomidou.mybatisplus.core.conditions.Wrapper; |
| | |
| | | * @param sceneId |
| | | * @return |
| | | */ |
| | | List<FwAreaDivideVO> selectFwAreaDivideList(@Param("filterSelected") Integer filterSelected, @Param("sceneId") Long sceneId); |
| | | List<FwAreaDivideVO> selectFwAreaDivideList(@Param("filterSelected") Integer filterSelected, |
| | | @Param("sceneId") Long sceneId, |
| | | @Param("areaTypeKeyList") List<String> areaTypeKeyList, |
| | | @Param("isSetSceneManage") Integer isSetSceneManage, |
| | | @Param("flyTime") java.time.LocalDateTime flyTime); |
| | | |
| | | /** |
| | | * 根据设备ID获取区域 |
| | | * |
| | | * @param deviceIds |
| | | * @return |
| | | */ |
| | | List<FwAreaDivideVO> selectFwAreaDivideListByDeviceIds(@Param("deviceIds") List<Long> deviceIds); |
| | | |
| | | /** |
| | | * 根据区域ID获取场景 |
| | | * |
| | | * @param areaIds |
| | | * @return |
| | | */ |
| | | List<FwDefenseSceneVO> selectFwDefenseSceneListByAreaIds(@Param("areaIds") List<Long> areaIds); |
| | | |
| | | /** |
| | | * 根据设备ID统计关联区域数量 |
| | | * |
| | | * @param deviceId |
| | | * @return |
| | | */ |
| | | Integer selectAreaCountByDeviceId(@Param("deviceId") Long deviceId); |
| | | |
| | | /** |
| | | * 统计分页 |