吉安感知网项目-后端
xiebin
2026-01-08 b70eb5ee9ad3bb6209830a35d703439fd798a38f
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/service/IFwDeviceService.java
@@ -17,6 +17,7 @@
package org.sxkj.fw.device.service;
import com.baomidou.mybatisplus.core.conditions.Wrapper;
import org.sxkj.fw.device.dto.FwDeviceAndTrackDTO;
import org.sxkj.fw.device.entity.FwDeviceEntity;
import org.sxkj.fw.device.vo.FwDeviceVO;
import org.sxkj.fw.device.excel.FwDeviceExcel;
@@ -25,10 +26,10 @@
import java.util.List;
/**
 * 反无设备表 服务类
 * 设备表 服务类
 *
 * @author AIX
 * @since 2026-01-06
 * @author Aix
 * @since 2026-01-08
 */
public interface IFwDeviceService extends BaseService<FwDeviceEntity> {
   /**
@@ -49,4 +50,11 @@
    */
   List<FwDeviceExcel> exportFwDevice(Wrapper<FwDeviceEntity> queryWrapper);
   /**
    * 添加或更新
    * @param dto
    * @return
    */
   Boolean saveFwDevice(FwDeviceAndTrackDTO dto);
}