From ee96821fc7990857ad6477690a5758f8c0ebaa66 Mon Sep 17 00:00:00 2001
From: YYC <1833023622@qq.com>
Date: 星期一, 22 九月 2025 10:32:19 +0800
Subject: [PATCH] Merge remote-tracking branch 'origin/master'

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

diff --git a/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DepotStatusConfirm.java b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DepotStatusConfirm.java
new file mode 100644
index 0000000..fe41c3f
--- /dev/null
+++ b/src/main/java/com/fzzy/async/fzzy61/entity/Fz61DepotStatusConfirm.java
@@ -0,0 +1,111 @@
+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.util.Date;
+
+/**
+ * @Desc: 浠撴埧鐘舵�佺‘璁よ〃
+ * @author:
+ * @update-time:
+ */
+@Data
+@Entity
+@Table(name = "D_DEPOT_STATUS_CONFIRM")
+public class Fz61DepotStatusConfirm {
+
+    public static String SORT_PROP = "fcqrdh";
+
+    /**
+     * 21yyyyMMdd+鍥涗綅椤哄簭鍙�
+     * 21202405041234
+     */
+    @Id
+    @Column(name = "fcqrdh", length = 14)
+    @PropertyDef(label = "灏佷粨纭鍗曞彿", description = "鏍规嵁涓�瀹氱殑瑙勫垯鐢熸垚")
+    private String fcqrdh;
+
+    @Column(name = "COMPANY_ID_", length = 10)
+    @PropertyDef(label = "缁勭粐缂栫爜")
+    private String companyId;
+
+    @Column(name = "DEPT_ID_", length = 50)
+    @PropertyDef(label = "搴撳尯缂栫爜")
+    private String deptId;
+
+    @Column(name = "DEPOT_ID_", length = 28)
+    @PropertyDef(label = "璐т綅缂栫爜")
+    private String depotId;
+
+    /*** ------------------------纭鍐呭-------------------------------------**/
+    @Column(name = "fcrq")
+    @PropertyDef(label = "灏佷粨鏃ユ湡", description = "yyyy-MM-dd")
+    private Date fcrq;
+
+    @Column(name = "FOOD_VARIETY_", length = 20)
+    @PropertyDef(label = "绮鍝佺")
+    private String foodVariety;
+
+    @Column(name = "FOOD_TYPE_", length = 20)
+    @PropertyDef(label = "绮鎬ц川")
+    private String foodType;
+
+    @Column(name = "FOOD_LEVEL_", length = 10)
+    @PropertyDef(label = "绮绛夌骇")
+    private String foodLevel;
+
+    @Column(name = "FOOD_LOCATION_ID_", length = 20)
+    @PropertyDef(label = "浜у湴鍚嶇О浠g爜")
+    private String foodLocationId;
+
+    @Column(name = "FOOD_LOCATION_", length = 40)
+    @PropertyDef(label = "浜у湴鍚嶇О")
+    private String foodLocation;
+
+    @Column(name = "FOOD_YEAR_", length = 10)
+    @PropertyDef(label = "鏀惰揣骞村害")
+    private String foodYear;
+
+    @Column(name = "COUNTRY_", length = 10)
+    @PropertyDef(label = "鍥藉埆")
+    private String country;
+
+    @Column(name = "STORE_KEEPER_NAME_", length = 64)
+    @PropertyDef(label = "淇濈鍛�", description = "涓枃鍚嶇О")
+    private String storeKeeperName;
+
+    @Column(name = "fcsl")
+    @PropertyDef(label = "灏佷粨鏁伴噺", description = "鎵�鏈夊叆搴撲俊鎭腑鐨勫噣閲嶄箣鍜岋紝鍗曚綅KG")
+    private Double fcsl = 0.0;
+
+
+    /*** ------------------------鍏叡瀛楁-------------------------------------**/
+
+    @Column(name = "APPLY_USER_", length = 50)
+    @PropertyDef(label = "鐢宠浜�")
+    private String applyUser;
+
+    @Column(name = "DEPT_AUDIT_USER_", length = 50)
+    @PropertyDef(label = "閮ㄩ棬瀹℃牳浜�")
+    private String deptAuditUser;
+
+    @Column(name = "LEADER_AUDIT_USER_", length = 50)
+    @PropertyDef(label = "棰嗗瀹℃牳浜�")
+    private String leaderAuditUser;
+
+    // 澶囨敞
+    @Column(name = "REMARKS_", length = 200)
+    @PropertyDef(label = "澶囨敞淇℃伅")
+    private String remarks;
+
+
+    @Column(name = "UPDATE_TIME_")
+    @PropertyDef(label = "鏇存柊鏃堕棿")
+    private Date updateTime;
+
+}

--
Gitblit v1.9.3