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

diff --git a/fzzy-igdss-core/src/main/java/com/fzzy/igds/data/NoticeParam.java b/fzzy-igdss-core/src/main/java/com/fzzy/igds/data/NoticeParam.java
new file mode 100644
index 0000000..823a220
--- /dev/null
+++ b/fzzy-igdss-core/src/main/java/com/fzzy/igds/data/NoticeParam.java
@@ -0,0 +1,74 @@
+package com.fzzy.igds.data;
+
+import lombok.Data;
+import lombok.EqualsAndHashCode;
+import java.util.Date;
+
+/**
+ * @Description 鍑哄叆搴撻�氱煡鍗曞弬鏁�
+ * @Author CZT
+ * @Date 2025/11/29 16:33
+ */
+@Data
+@EqualsAndHashCode(callSuper=false)
+public class NoticeParam {
+
+	private String id;
+
+	private String companyId;
+
+	private String depotId;
+
+	private String deptId;// 鎵�灞炲垎搴�
+
+	private String customerName;// 瀹㈡埛鍚嶇О
+
+	private String foodVariety;// 鍝佺
+
+	private String contractId;//鍚堝悓鍙�
+
+	private String planId;//璁″垝
+
+	private String foodType; // 绮鎬ц川
+
+	private String year;// 骞翠唤
+
+	private String type;
+
+	private Double weight;// 閲嶉噺淇℃伅
+
+	private Double taskNum = 0.0;
+
+	private String completeStatus; // 瀹屾垚鐘舵��
+
+	private Double storageReal;// 搴撳瓨閲嶉噺
+
+	private Date start;
+
+	private Date end;
+
+	private String createUser;
+
+	public NoticeParam() {
+	}
+
+	public NoticeParam(String companyId, String deptId, String customerName,
+                       String foodVariety, String id) {
+		this.companyId = companyId;
+		this.deptId = deptId;
+		this.customerName = customerName;
+		this.foodVariety = foodVariety;
+		this.id = id;
+	}
+
+	public NoticeParam(String companyId, String deptId, String depotId,
+                       String customerName, String foodVariety, String id) {
+		this.companyId = companyId;
+		this.deptId = deptId;
+		this.depotId = depotId;
+		this.customerName = customerName;
+		this.foodVariety = foodVariety;
+		this.id = id;
+	}
+
+}

--
Gitblit v1.9.3