From 46adcbf7494340a495539708210bb39110bdc33b Mon Sep 17 00:00:00 2001
From: czt <czt18638530771@163.com>
Date: 星期六, 29 十一月 2025 17:35:03 +0800
Subject: [PATCH] 快速登记、化验及称重作业页面提交1

---
 fzzy-igdss-core/src/main/java/com/fzzy/igds/data/NoticeDto.java |   91 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 91 insertions(+), 0 deletions(-)

diff --git a/fzzy-igdss-core/src/main/java/com/fzzy/igds/data/NoticeDto.java b/fzzy-igdss-core/src/main/java/com/fzzy/igds/data/NoticeDto.java
new file mode 100644
index 0000000..e73f223
--- /dev/null
+++ b/fzzy-igdss-core/src/main/java/com/fzzy/igds/data/NoticeDto.java
@@ -0,0 +1,91 @@
+package com.fzzy.igds.data;
+
+import lombok.Data;
+
+import java.util.Date;
+
+/**
+ * @Description 鍑哄叆搴撻�氱煡鍗曟暣浣撲娇鐢ㄥ皝瑁�
+ * @Author CZT
+ * @Date 2025/11/29 16:33
+ */
+@Data
+public class NoticeDto {
+
+
+    /**
+     * 閫氱煡鍗昳d
+     */
+    private String id;
+
+
+    private String name;
+
+    /**
+     * 缁勭粐缂栫爜
+     */
+    private String companyId;
+
+    /**
+     * 搴撳尯缂栫爜
+     */
+    private String deptId;
+
+    /**
+     * 浠撳簱缂栫爜
+     */
+    private String depotId;
+
+    /**
+     * 瀹㈡埛缂栫爜
+     */
+    private String customerId;
+
+    /**
+     * 瀹㈡埛鍚嶇О
+     */
+    private String customerName;
+
+    /**
+     * 鍗曚綅鍚嶇О
+     */
+    private String unitName;
+
+    /**
+     * 绮鍝佺
+     */
+    private String foodVariety;
+
+
+    /**
+     * 绮鎬ц川
+     */
+    private String foodType;
+
+
+    /**
+     * 骞翠唤
+     */
+    private String year;
+
+    /**
+     * 鐩爣鏁伴噺
+     */
+    private Double targetNumber = 0.0;
+
+    /**
+     * 瀹屾垚鏁伴噺
+     */
+    private Double completeNumber = 0.0;
+
+    /**
+     * 瀹屾垚鏃堕棿
+     */
+    private Date completeTime;
+	
+    /**
+     * 鎵�灞炲悎鍚�
+     */
+    private String contractName;
+
+}

--
Gitblit v1.9.3