From caf2599a9869244ded811018811c37a2aabac3fc Mon Sep 17 00:00:00 2001
From: vince <757871790@qq.com>
Date: 星期三, 08 一月 2025 11:29:05 +0800
Subject: [PATCH] 优化测温协议

---
 src/main/java/com/fzzy/api/entity/Api1103.java |   50 +++++++++++++++++++++++++++++++-------------------
 1 files changed, 31 insertions(+), 19 deletions(-)

diff --git a/src/main/java/com/fzzy/api/entity/Api1103.java b/src/main/java/com/fzzy/api/entity/Api1103.java
index 20404f8..c06072a 100644
--- a/src/main/java/com/fzzy/api/entity/Api1103.java
+++ b/src/main/java/com/fzzy/api/entity/Api1103.java
@@ -2,41 +2,34 @@
 
 import com.alibaba.fastjson.annotation.JSONField;
 import com.bstek.dorado.annotation.PropertyDef;
+
 import lombok.Data;
 import lombok.EqualsAndHashCode;
+import lombok.Getter;
+import lombok.Setter;
 
 import javax.persistence.Column;
 import javax.persistence.Entity;
 import javax.persistence.Id;
 import javax.persistence.Table;
+
 import java.io.Serializable;
+import java.math.BigDecimal;
 import java.util.Date;
 
 /**
  * 鎺ュ彛琛�-浠撴埧淇℃伅
  */
-@Data
+@Getter
+@Setter
 @Entity
 @Table(name = "API_1103")
 @EqualsAndHashCode(callSuper=false)
 public class Api1103  implements Serializable {
 
-    /**
-	 * 
-	 */
 	private static final long serialVersionUID = 8095346227076335949L;
 
-    @JSONField(serialize = false)
-    @PropertyDef(label = "涓氬姟id")
-    @Column(name = "bizId", length = 40)
-    private String bizId;
-
-
-    @JSONField(serialize = false)
-    @PropertyDef(label = "鍚屾鏃堕棿", description = "浠庣伯搴撶郴缁熷悓姝ュ埌鎺ュ彛绠$悊涓績鐨勬椂闂�")
-    @Column(name = "syncTime")
-    private Date syncTime;
-
+    /*----------鍥芥爣瀛楁----------*/
 	@Id
     @PropertyDef(label = "浠撴埧浠g爜" )
     @Column(name = "cfdm", length = 25)
@@ -56,7 +49,7 @@
 
     @PropertyDef(label = "浜や粯浣跨敤鏃ユ湡" )
     @JSONField(format = "yyyy-MM-dd")
-    @Column(name = "jfsyrq", nullable = false)
+    @Column(name = "jfsyrq")
     private Date jfsyrq;
 
     @PropertyDef(label = "寤鸿鍗曚綅" )
@@ -249,11 +242,11 @@
 
     @PropertyDef(label = "浠撴埧缁忓害" )
     @Column(name = "jd", precision = 20, scale = 6)
-    private double jd;
+    private Double jd;
 
     @PropertyDef(label = "浠撴埧绾害" )
     @Column(name = "wd", precision = 20, scale = 6)
-    private double wd;
+    private Double wd;
 
     @PropertyDef(label = "鎿嶄綔鏍囧織" )
     @Column(name = "czbz", length = 1)
@@ -261,10 +254,29 @@
 
     @PropertyDef(label = "鏈�鍚庢洿鏂版椂闂�" )
     @JSONField(format = "yyyy-MM-dd HH:mm:ss")
-    @Column(name = "zhgxsj", nullable = false)
+    @Column(name = "zhgxsj")
     private Date zhgxsj;
 
 
+    /*----------涓婃捣甯傚钩鍙拌鑼冨瓧娈�----------*/
+    @PropertyDef(label = "寤掗棿鏁�")
+    @Column(name = "ajs")
+    private Integer ajs;
 
+    @PropertyDef(label = "鏍囪浣�")
+    @Column(name = "bjw", length = 40)
+    private String bjw;
+
+
+    /*----------鎺ュ彛绯荤粺鑷畾涔夊瓧娈�----------*/
+    @JSONField(serialize = false)
+    @PropertyDef(label = "涓氬姟id")
+    @Column(name = "bizId", length = 40)
+    private String bizId;
+
+    @JSONField(serialize = false)
+    @PropertyDef(label = "鍚屾鏃堕棿", description = "浠庣伯搴撶郴缁熷悓姝ュ埌鎺ュ彛绠$悊涓績鐨勬椂闂�")
+    @Column(name = "syncTime")
+    private Date syncTime;
 
 }

--
Gitblit v1.9.3