吉安感知网项目-后端
xiebin
2026-01-28 74756c657109a4e48dd6c0b4d8959cdab89b33a9
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/service/IFwDeviceService.java
@@ -65,7 +65,7 @@
    * @param status 设备状态
    * @return
    */
   List<FwDeviceEntity> selectFwDeviceList(Integer isAreaSelect, Long areaId, Integer status);
   List<FwDeviceEntity> selectFwDeviceList(Integer isAreaSelect, Long areaId, Integer status, Integer isTrack);
   /**
@@ -80,7 +80,7 @@
    * 设备类型统计
    * @return
    */
   List<DeviceStatisticsVO> statisticalDeviceType();
   List<DeviceStatisticsVO> statisticalDeviceType(List<Long> deptList);
   /**
    * 设备统计 - 按类型统计
@@ -92,7 +92,7 @@
    * 设备出库去向统计
    * @return 统计数据
    */
   List<DeviceStatisticsVO> getDeviceOutStatistics();
   List<DeviceStatisticsVO> getDeviceOutStatistics(String effectiveRangeKmIsNotNull);
   /**
    * 设备生产厂商统计
@@ -104,7 +104,7 @@
    * 设备报警统计
    * @return
    */
   AlarmStatisticsVO statisticalDeviceAtt();
   AlarmStatisticsVO statisticalDeviceAtt(List<Long> deptList);
   /**
    * 驾驶舱获取设备列表
@@ -129,4 +129,20 @@
    * @return
    */
   boolean existsAreaBindByDeviceId(Long deviceId);
   /**
    * 新增或修改设备
    * @param fwDeviceEntity
    * @return
    */
   boolean saveOrUpdateDevice(FwDeviceEntity fwDeviceEntity);
   /**
    * 按设备ID更新出入库状态
    *
    * @param deviceId 设备ID
    * @param trackStatus 出入库状态
    * @return 是否更新成功
    */
   boolean updateTrackStatusByDeviceId(Long deviceId, Integer trackStatus);
}