From c721f649b527e31aac9257a14502c105e6a89cfe Mon Sep 17 00:00:00 2001
From: zjj <3272660260@qq.com>
Date: 星期一, 11 八月 2025 15:52:29 +0800
Subject: [PATCH] #
---
src/main/java/com/zy/common/model/MatDto.java | 13 ++++++++++---
1 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/src/main/java/com/zy/common/model/MatDto.java b/src/main/java/com/zy/common/model/MatDto.java
index e5b625b..01abeff 100644
--- a/src/main/java/com/zy/common/model/MatDto.java
+++ b/src/main/java/com/zy/common/model/MatDto.java
@@ -9,7 +9,7 @@
public class MatDto {
// 鐗╂枡缂栧彿
- private String matNo;
+ private String matnr;
// 鐗╂枡鍚嶇О
private String maknx;
@@ -17,12 +17,19 @@
// 鐗╂枡鏁伴噺
private Double count;
+ // 鎵瑰彿
+ private String batch;
+
+ private String specs;
+
public MatDto() {
}
- public MatDto(String matNo, String maknx, Double count) {
- this.matNo = matNo;
+ public MatDto(String matnr, String maknx, Double count, String batch, String specs) {
+ this.matnr = matnr;
this.maknx = maknx;
this.count = count;
+ this.batch = batch;
+ this.specs = specs;
}
}
--
Gitblit v1.9.1