吉安感知网项目-后端
rain
2026-01-29 5b23a8cb9294506d88330f0750f39b9a2cbabbdc
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/service/impl/FwDeviceServiceImpl.java
@@ -21,6 +21,7 @@
import org.sxkj.fw.cockpit.vo.DeviceStatisticsVO;
import org.sxkj.fw.common.GenericConverter;
import org.sxkj.fw.device.dto.FwDeviceDTO;
import org.sxkj.fw.device.dto.FwDevicePolygonQueryDTO;
import org.sxkj.fw.device.entity.FwDeviceEntity;
import org.sxkj.fw.device.param.FwDevicePageParam;
import org.sxkj.fw.device.vo.CockpitFwDeviceVO;
@@ -90,6 +91,11 @@
      return baseMapper.selectFwDeviceList(isAreaSelect, areaId, status, isTrack);
   }
   @Override
   public List<FwDeviceEntity> selectFwDeviceListByPolygons(FwDevicePolygonQueryDTO query) {
      return baseMapper.selectFwDeviceListByPolygons(query);
   }
   @Override
   public List<FwDeviceExcel> exportFwDevice(Wrapper<FwDeviceEntity> queryWrapper) {
@@ -118,8 +124,8 @@
    * @return
    */
   @Override
   public List<DeviceStatisticsVO> statisticalDeviceType(List<Long> deptList) {
      return baseMapper.statisticalDeviceType(deptList);
   public List<DeviceStatisticsVO> statisticalDeviceType(List<Long> deptList,String currentDeptId) {
      return baseMapper.statisticalDeviceType(deptList,currentDeptId);
   }
   /**
@@ -151,8 +157,8 @@
    * @return
    */
   @Override
   public AlarmStatisticsVO statisticalDeviceAtt(List<Long> deptList) {
      return baseMapper.statisticalDeviceAtt(deptList);
   public AlarmStatisticsVO statisticalDeviceAtt(List<Long> deptList, String currentDeptId) {
      return baseMapper.statisticalDeviceAtt(deptList, currentDeptId);
   }
   @Override