From 151ab5676b76711854b3e0cf0ed32afb8e8dcbf0 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Thu, 29 Jun 2023 14:18:45 +0800
Subject: [PATCH] 目录订阅更新移动位置去除
---
src/main/java/com/genersoft/iot/vmp/common/SystemInfoDto.java | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/genersoft/iot/vmp/common/SystemInfoDto.java b/src/main/java/com/genersoft/iot/vmp/common/SystemInfoDto.java
new file mode 100644
index 0000000..81a93ac
--- /dev/null
+++ b/src/main/java/com/genersoft/iot/vmp/common/SystemInfoDto.java
@@ -0,0 +1,22 @@
+package com.genersoft.iot.vmp.common;
+
+public class SystemInfoDto<T> {
+ private String time;
+ private T data;
+
+ public String getTime() {
+ return time;
+ }
+
+ public void setTime(String time) {
+ this.time = time;
+ }
+
+ public T getData() {
+ return data;
+ }
+
+ public void setData(T data) {
+ this.data = data;
+ }
+}
--
Gitblit v1.9.3