From be175fe739e687cd1d45da58f2cb7dd0c36d001f Mon Sep 17 00:00:00 2001
From: jiazx0107@163.com <jiazx0107@163.com>
Date: 星期五, 11 八月 2023 11:48:10 +0800
Subject: [PATCH] 调整Pressure的接口包位置到COre中,然后增加modBus-TCP协议通讯报道

---
 igds-core/src/main/java/com/ld/igds/models/Building.java |   35 +++++++++++++++++++----------------
 1 files changed, 19 insertions(+), 16 deletions(-)

diff --git a/igds-core/src/main/java/com/ld/igds/models/Building.java b/igds-core/src/main/java/com/ld/igds/models/Building.java
index 61e0d46..a96d9b1 100644
--- a/igds-core/src/main/java/com/ld/igds/models/Building.java
+++ b/igds-core/src/main/java/com/ld/igds/models/Building.java
@@ -2,6 +2,7 @@
 
 import com.bstek.dorado.annotation.PropertyDef;
 import lombok.Data;
+
 import javax.persistence.Column;
 import javax.persistence.Entity;
 import javax.persistence.Id;
@@ -11,11 +12,9 @@
 import java.util.Date;
 
 /**
- * 寤虹瓚鐗╋紝鍖呮嫭浠撴埧鍜屽叾浠栨埧瀛�
- * <p>
- * 浠撳簱鐨勬晼闂翠娇鐢ㄧ殑鏄細Depot绫伙紝涓�涓粨鎴垮缓绛戝彲鑳藉寘鍚涓晼闂淬��
- * <p>
- * 褰撳墠瀹氫箟瀵硅薄浠呬粎鐢ㄤ簬寤虹瓚鐗╃殑鏁版嵁閰嶇疆
+ * @Desc: 鍩虹淇℃伅-浠撴埧淇℃伅
+ * @author: Andy
+ * @update-time: 2023/5/26
  */
 @Data
 @Entity
@@ -23,11 +22,11 @@
 public class Building implements Serializable {
 
     /**
-	 * 
-	 */
-	private static final long serialVersionUID = 1L;
+     *
+     */
+    private static final long serialVersionUID = 1L;
 
-	@Id
+    @Id
     @Column(name = "ID_", length = 50)
     @PropertyDef(label = "浠撴埧缂栫爜")
     private String id;
@@ -36,6 +35,10 @@
     @Column(name = "COMPANY_ID_", length = 10)
     @PropertyDef(label = "缁勭粐缂栫爜")
     private String companyId;
+
+    @Column(name = "ggm", length = 50)
+    @PropertyDef(label = "鍥借鐮�")
+    private String ggm;
 
     @Column(name = "DEPT_ID_", length = 40)
     @PropertyDef(label = "鎵�灞炲簱鐐�")
@@ -96,12 +99,12 @@
     @Column(name = "CREATE_DATE_")
     @PropertyDef(label = "寤洪�犳棩鏈�")
     private Date createDate;
-    
-	@Column(name = "LON_", precision = 16, scale = 4)
-	@PropertyDef(label = "缁忓害")
-	private Double lon;
 
-	@Column(name = "LAT_", precision = 16, scale = 4)
-	@PropertyDef(label = "绾害")
-	private Double lat;
+    @Column(name = "LON_", precision = 16, scale = 4)
+    @PropertyDef(label = "缁忓害")
+    private Double lon;
+
+    @Column(name = "LAT_", precision = 16, scale = 4)
+    @PropertyDef(label = "绾害")
+    private Double lat;
 }

--
Gitblit v1.9.3