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/Fz61InoutCustomer.java |  100 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 100 insertions(+), 0 deletions(-)

diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutCustomer.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutCustomer.java
new file mode 100644
index 0000000..be36758
--- /dev/null
+++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61InoutCustomer.java
@@ -0,0 +1,100 @@
+package com.fzzy.async.fzzy61.entity;
+
+import com.bstek.dorado.annotation.PropertyDef;
+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;
+
+/**
+ * 鍑哄叆搴撳鎴�-寰�鏉ュ崟浣嶄俊鎭� 2023骞�5鏈�26鏃� 鏍规嵁鏂板浗绮浼樺寲
+ *
+ * @author czt
+ * @description 鐗堟湰4.0瀛楁宸插
+ * @date 2023-05-25 17:16
+ */
+@Data
+@Entity
+@Table(name = "D_INOUT_CUSTOMER")
+public class Fz61InoutCustomer implements Serializable {
+
+    public static String SORT_PROP = "id";
+
+    @Id
+    @Column(name = "ID_", length = 40)
+    @PropertyDef(label = "涓婚敭id缂栫爜", description = "绯荤粺鍐呯紪鐮�")
+    private String id;
+
+    @Column(name = "COMPANY_ID_", length = 10)
+    @PropertyDef(label = "缁勭粐缂栫爜")
+    private String companyId;
+
+    @Column(name = "DEPT_ID_", length = 40)
+    @PropertyDef(label = "鎵�灞炲垎搴�")
+    private String deptId;
+
+    @Column(name = "TYPE_", length = 4)
+    @PropertyDef(label = "涓氬姟鍒嗙被", description = "绯荤粺鍐呬娇鐢細鎻愯揣鍟嗐�佷緵璐у晢")
+    private String type;
+
+    @Column(name = "khlx", length = 50)
+    @PropertyDef(label = "瀹㈡埛绫诲瀷", description = "1-浼佷笟锛�2-涓汉")
+    private String khlx;
+
+    @PropertyDef(label = "瀹㈡埛缂栫爜锛氫紒涓氬鎴峰~鍐欑粺涓�绀句細淇$敤浠g爜锛屼釜浜哄鎴峰~鍐欒韩浠借瘉鍙�")
+    @Column(name = "khbh", length = 18)
+    private String khbh;
+
+    @Column(name = "NAME_", length = 50)
+    @PropertyDef(label = "瀹㈡埛鍚嶇О")
+    private String name;
+
+    @PropertyDef(label = "娉曞畾浠h〃浜�")
+    @Column(name = "fddbr", length = 64)
+    private String fddbr;
+
+    @Column(name = "ADDRESS_", length = 200)
+    @PropertyDef(label = "閫氳鍦板潃")
+    private String address;
+
+    @PropertyDef(label = "閭斂缂栫爜")
+    @Column(name = "yzbm", length = 6)
+    private String yzbm;
+
+    @Column(name = "CONTACT_USER_", length = 50)
+    @PropertyDef(label = "鑱旂郴浜�")
+    private String contactUser;
+
+    @Column(name = "PHONE_", length = 20)
+    @PropertyDef(label = "鑱旂郴鐢佃瘽")
+    private String phone;
+
+    @Column(name = "CARD_ID_", length = 20)
+    @PropertyDef(label = "鑱旂郴浜鸿韩浠借瘉鍙�")
+    private String cardId;
+
+    @PropertyDef(label = "鐢靛瓙淇$")
+    @Column(name = "dzyx", length = 64)
+    private String dzyx;
+
+    @Column(name = "BANK_", length = 50)
+    @PropertyDef(label = "寮�鎴烽摱琛�")
+    private String bank;
+
+    @Column(name = "BANK_NUM_", length = 30)
+    @PropertyDef(label = "閾惰璐﹀彿")
+    private String bankNum;
+
+    @Column(name = "FOOD_AREA_", length = 30)
+    @PropertyDef(label = "绉嶆闈㈢Н")
+    private Double foodArea = 0.0;
+
+    @Column(name = "UPDATE_TIME_")
+    @PropertyDef(label = "鏁版嵁鏇存柊鏃堕棿")
+    private Date updateTime;
+
+}

--
Gitblit v1.9.3