吉安感知网项目-后端
linwei
21 hours ago 08ddfad4530a014094c06fe68b8c2d9a0753403a
drone-service/drone-fw/src/main/java/org/sxkj/fw/device/wrapper/FwDeviceTrackWrapper.java
@@ -21,12 +21,13 @@
import org.sxkj.fw.device.dto.FwDeviceTrackDTO;
import org.sxkj.fw.device.entity.FwDeviceTrackEntity;
import org.sxkj.fw.device.vo.FwDeviceTrackVO;
import java.util.Objects;
/**
 * 设备跟踪流转表 包装类,返回视图层所需的字段
 *
 * @author Aix
 * @author aix
 * @since 2026-01-08
 */
public class FwDeviceTrackWrapper extends BaseEntityWrapper<FwDeviceTrackEntity, FwDeviceTrackVO>  {
@@ -40,8 +41,9 @@
      return Objects.requireNonNull(BeanUtil.copy(fwDeviceTrack, FwDeviceTrackVO.class));
   }
   public FwDeviceTrackEntity entityDTO(FwDeviceTrackDTO fwDevice) {
      return Objects.requireNonNull(BeanUtil.copy(fwDevice, FwDeviceTrackEntity.class));
   }
    public FwDeviceTrackEntity entityDTO(FwDeviceTrackDTO fwDeviceTrackDTO) {
      return Objects.requireNonNull(BeanUtil.copy(fwDeviceTrackDTO, FwDeviceTrackEntity.class));
    }
}