From 11430ae628f098654579811131abc522d679e870 Mon Sep 17 00:00:00 2001
From: czt <czt18638530771@163.com>
Date: 星期一, 22 九月 2025 17:04:42 +0800
Subject: [PATCH] 上海对农接口调整-增加自动上传

---
 src/main/java/com/fzzy/async/fzzy61/entity/Fz61DeptDevice.java |   82 +++++++++++++++++++++++++++++++++++++++++
 1 files changed, 82 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DeptDevice.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DeptDevice.java
new file mode 100644
index 0000000..e57942b
--- /dev/null
+++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DeptDevice.java
@@ -0,0 +1,82 @@
+package com.fzzy.async.fzzy61.entity;
+
+import com.bstek.dorado.annotation.PropertyDef;
+import com.fasterxml.jackson.annotation.JsonFormat;
+import lombok.Data;
+
+import javax.persistence.Column;
+import javax.persistence.Entity;
+import javax.persistence.Id;
+import javax.persistence.Table;
+import java.io.Serializable;
+import java.util.Date;
+
+/**
+ * 璁惧淇℃伅
+ *
+ * @Author:YAN
+ */
+@Data
+@Entity
+@Table(name = "D_DEPT_DEVICE")
+public class Fz61DeptDevice implements Serializable {
+
+    private static final long serialVersionUID = 1L;
+
+    public static String SORT_PROP = "sbbh";
+
+    @Id
+    @Column(name = "sbbh", length = 20)
+    @PropertyDef(label = "璁惧缂栧彿")
+    private String sbbh;
+
+    @Column(name = "COMPANY_ID_", length = 10)
+    @PropertyDef(label = "缁勭粐缂栫爜", description = "")
+    private String companyId;
+
+    @Column(name = "DEPT_ID_", length = 40)
+    @PropertyDef(label = "鎵�灞炲簱鍖�")
+    private String deptId;
+
+    @Column(name = "sbyqmc", length = 50)
+    @PropertyDef(label = "璁惧浠櫒鍚嶇О")
+    private String sbyqmc;
+
+    @Column(name = "sbggxh", length = 50)
+    @PropertyDef(label = "璁惧瑙勬牸鍨嬪彿")
+    private String sbggxh;
+
+    @Column(name = "sccj", length = 256)
+    @PropertyDef(label = "鐢熶骇鍘傚")
+    private String sccj;
+
+    @Column(name = "scrq")
+    @PropertyDef(label = "鐢熶骇鏃ユ湡")
+    @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd", timezone = "GMT+8")
+    private Date scrq;
+
+    @Column(name = "sbms", length = 50)
+    @PropertyDef(label = "璁惧鎻忚堪")
+    private String sbms;
+
+    @Column(name = "sbzt", length = 1)
+    @PropertyDef(label = "璁惧鐘舵��",description = "1 瀹屽ソ 2 鎶ュ簾 3 寰呮淇� 4 鍏朵粬")
+    private String sbzt;
+
+    @Column(name = "jdsj")
+    @PropertyDef(label = "妫�瀹氭椂闂�")
+    private Date jdsj;
+
+    @Column(name = "jddw", length = 256)
+    @PropertyDef(label = "妫�瀹氬崟浣�")
+    private String jddw;
+
+    @Column(name = "sbgly", length = 50)
+    @PropertyDef(label = "璁惧绠$悊鍛�")
+    private String sbgly;
+
+    @Column(name = "UPDATE_TIME_")
+    @PropertyDef(label = "鏇存柊鏃堕棿")
+    private Date updateTime;
+
+}

--
Gitblit v1.9.3