From 7f3f70db1107cb0a24ea6a8e75a99c327fad9c60 Mon Sep 17 00:00:00 2001
From: xiebin <vip_xiaobin810@163.com>
Date: Thu, 08 Jan 2026 16:52:18 +0800
Subject: [PATCH] add-反无大屏-基础管理

---
 drone-service/drone-fw/src/main/java/org/sxkj/fw/device/wrapper/FwDeviceWrapper.java |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/wrapper/FwDeviceWrapper.java b/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/wrapper/FwDeviceWrapper.java
index a0a9b44..c7a90a2 100644
--- a/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/wrapper/FwDeviceWrapper.java
+++ b/drone-service/drone-fw/src/main/java/org/sxkj/fw/device/wrapper/FwDeviceWrapper.java
@@ -18,7 +18,6 @@
 
 import org.springblade.core.mp.support.BaseEntityWrapper;
 import org.springblade.core.tool.utils.BeanUtil;
-import org.sxkj.fw.device.dto.FwDeviceAndTrackDTO;
 import org.sxkj.fw.device.dto.FwDeviceDTO;
 import org.sxkj.fw.device.entity.FwDeviceEntity;
 import org.sxkj.fw.device.vo.FwDeviceVO;
@@ -27,7 +26,7 @@
 /**
  * 设备表 包装类,返回视图层所需的字段
  *
- * @author Aix
+ * @author aix
  * @since 2026-01-08
  */
 public class FwDeviceWrapper extends BaseEntityWrapper<FwDeviceEntity, FwDeviceVO>  {
@@ -41,8 +40,8 @@
 		return Objects.requireNonNull(BeanUtil.copy(fwDevice, FwDeviceVO.class));
 	}
 
-	public FwDeviceEntity entityDTO(FwDeviceDTO dto) {
-		return Objects.requireNonNull(BeanUtil.copy(dto, FwDeviceEntity.class));
+	public FwDeviceEntity entityDTO(FwDeviceDTO fwDevice) {
+		return Objects.requireNonNull(BeanUtil.copy(fwDevice, FwDeviceEntity.class));
 	}
 
 

--
Gitblit v1.9.3