From db9da52e04e95cf0b3c4f196ce5e1baf7a58832d Mon Sep 17 00:00:00 2001
From: pang.jiabao <pang_jiabao@163.com>
Date: 星期五, 19 十二月 2025 16:49:20 +0800
Subject: [PATCH] led相关功能完善
---
src/main/java/com/zy/common/model/MatDto.java | 15 +++++++++++----
1 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/src/main/java/com/zy/common/model/MatDto.java b/src/main/java/com/zy/common/model/MatDto.java
index 19429ab..ed7b457 100644
--- a/src/main/java/com/zy/common/model/MatDto.java
+++ b/src/main/java/com/zy/common/model/MatDto.java
@@ -8,6 +8,8 @@
@Data
public class MatDto {
+ private String orderNo;
+
// 鐗╂枡缂栧彿
private String matnr;
@@ -19,6 +21,8 @@
private String specs;
private String model;
+
+ private Double anfme;
private String manuDate;
@@ -39,6 +43,8 @@
private Double total;
+ private String standby1 = "";
+
public MatDto() {
}
public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) {
@@ -51,15 +57,16 @@
this.count = count;
this.total = total;
}
- public MatDto(String matnr,String batch,String specs,String manuDate,String model,double weight, double length,double volume) {
+ public MatDto(String orderNo,String matnr,String maknx, String batch,String specs,String manuDate,String model,Double anfme,String standby1) {
+ this.orderNo = orderNo;
this.matnr = matnr;
+ this.maknx = maknx;
this.batch = batch;
this.specs = specs;
this.manuDate = manuDate;
this.model = model;
- this.weight = weight;
- this.length = length;
- this.volume = volume;
+ this.anfme = anfme;
+ this.standby1 = standby1;
}
public MatDto(String matNo, String maknx, Double count) {
--
Gitblit v1.9.1