吉安感知网项目-后端
linwei
2026-01-09 0abcc981f5c8e674c17baf7160ee8e6446d87b3a
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/mapper/FwDeviceMapper.java
@@ -16,6 +16,9 @@
 */
package org.sxkj.fw.device.mapper;
import org.sxkj.fw.cockpit.vo.AlarmStatisticsVO;
import org.sxkj.fw.cockpit.vo.DeviceStatisticsVO;
import org.sxkj.fw.device.dto.FwDeviceDTO;
import org.sxkj.fw.device.entity.FwDeviceEntity;
import org.sxkj.fw.device.vo.FwDeviceVO;
import org.sxkj.fw.device.excel.FwDeviceExcel;
@@ -26,10 +29,10 @@
import java.util.List;
/**
 * 反无设备表 Mapper 接口
 * 设备表 Mapper 接口
 *
 * @author AIX
 * @since 2026-01-06
 * @author aix
 * @since 2026-01-08
 */
public interface FwDeviceMapper extends BaseMapper<FwDeviceEntity> {
@@ -40,7 +43,7 @@
    * @param fwDevice
    * @return
    */
   List<FwDeviceVO> selectFwDevicePage(IPage page, FwDeviceVO fwDevice);
   List<FwDeviceEntity> selectFwDevicePage(IPage page, FwDeviceDTO fwDevice);
   /**
@@ -51,4 +54,15 @@
    */
   List<FwDeviceExcel> exportFwDevice(@Param("ew") Wrapper<FwDeviceEntity> queryWrapper);
   /**
    * 设备统计
    * @return
    */
   List<DeviceStatisticsVO> statisticalDeviceType();
   /**
    *
    * @return
    */
   AlarmStatisticsVO statisticalDeviceAtt();
}