From f1d079f9c0b3d384090477ca54e0548373d62b57 Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Thu, 16 Jan 2025 11:56:39 +0800
Subject: [PATCH] 配置修改

---
 src/main/java/com/genersoft/iot/vmp/netty/business/entity/TalkBackEquipment.java |  101 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 101 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/genersoft/iot/vmp/netty/business/entity/TalkBackEquipment.java b/src/main/java/com/genersoft/iot/vmp/netty/business/entity/TalkBackEquipment.java
new file mode 100644
index 0000000..92bda88
--- /dev/null
+++ b/src/main/java/com/genersoft/iot/vmp/netty/business/entity/TalkBackEquipment.java
@@ -0,0 +1,101 @@
+package com.genersoft.iot.vmp.netty.business.entity;
+
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+import org.springframework.format.annotation.DateTimeFormat;
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 对接设备信息表 实体类
+ *
+ * @author zhongrj
+ * @since 2023-02-23
+ */
+@Data
+public class TalkBackEquipment implements Serializable {
+
+	private static final long serialVersionUID = 1L;
+
+	/**
+	 * 主键id
+	 */
+	private Long id;
+
+	/**
+	 * 设备名称
+	 */
+	private String name;
+
+	/**
+	 * 设备编号
+	 */
+	private String code;
+
+	/**
+	 * 设备状态 0:离线  1:在线
+	 */
+	private Integer status;
+
+	/**
+	 * 终端编号
+	 */
+	private String terminalNumber;
+
+	/**
+	 * 经度
+	 */
+	private String longitude;
+
+	/**
+	 * 纬度
+	 */
+	private String latitude;
+
+	/**
+	 * 速度,单位 米/秒
+	 */
+	private String speed;
+
+	/**
+	 * 方向,以正北方向为 0 角度,顺时针方向偏转
+	 */
+	private String direction;
+
+	/**
+	 * 高程,单位:米
+	 */
+	private String elevation;
+
+	/**
+	 * 精度
+	 */
+	private String precisions;
+
+	/**
+	 * 日期
+	 */
+	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	private Date receiveTime;
+
+	/**
+	 * 创建时间
+	 */
+	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	private Date createTime;
+
+	/**
+	 * 更新时间
+	 */
+	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
+	private Date updateTime;
+
+	/**
+	 * 说明
+	 */
+//	@ApiModelProperty(value = "说明")
+//	private String remark;
+}

--
Gitblit v1.9.3