From 03f7617b415bc653fa2e14c28e4f41663a130476 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期日, 04 一月 2026 09:27:27 +0800
Subject: [PATCH] 1.完善连接器库入库请求 2.完善电视机显示程序 3.新增PDA给输送线下发入库 4.新增绑定和解绑测试区域是否有空库位 5.新增AGV离站信号 6.完善空托盘入库
---
src/main/java/com/zy/common/model/MatDto.java | 40 ++++++++++++++++++++++++++++++++++++++--
1 files changed, 38 insertions(+), 2 deletions(-)
diff --git a/src/main/java/com/zy/common/model/MatDto.java b/src/main/java/com/zy/common/model/MatDto.java
index 316a804..c7a823f 100644
--- a/src/main/java/com/zy/common/model/MatDto.java
+++ b/src/main/java/com/zy/common/model/MatDto.java
@@ -28,6 +28,9 @@
//杈呮暟閲�
private Double weight;
+ // 杈呭簱浣嶆暟閲�
+ private Double totalWeight;
+
//鎵樼洏鐮�
private String barcode;
@@ -40,20 +43,53 @@
//瀹㈡埛鍚嶇О
private String supp;
+ //寮�绁ㄥ鎴峰悕绉�
+ private String kpCstmrName;
+
+ //鍗曞彿
+ private String orderNo;
+
+ private String cstateid;
+
public MatDto() {
}
- public MatDto(String matNo, String maktx, Double count, Double weight, Double total, String specs, String sku, String barcode, String model, String supp) {
+ public MatDto(String matNo, String maktx, Double count, Double weight, Double total, Double totalWeight, String specs, String sku, String barcode, String model, String supp, String kpCstmrName, String orderNo, String cstateid) {
this.matnr = matNo;
this.maktx = maktx;
this.maknx = maktx;
this.specs = specs;
this.count = count;
- this.total = total;
this.weight = weight;
+ this.total = total;
+ this.totalWeight = totalWeight;
this.sku = sku;
this.barcode = barcode;
this.model = model;
this.supp = supp;
+ this.kpCstmrName = kpCstmrName;
+ this.orderNo = orderNo;
+ this.cstateid = cstateid;
+ }
+
+ public MatDto(String matNo, String maktx, Double count,Double total,String specs,String sku) {
+ this.specs = specs;
+ this.matnr = matNo;
+ this.maktx = maktx;
+ this.maknx = maktx;
+ this.count = count;
+ this.total = total;
+ this.sku = sku;
+ }
+
+ public MatDto(String matNo, String maktx, Double count,Double total,String specs,String sku,String barcode) {
+ this.specs = specs;
+ this.matnr = matNo;
+ this.maktx = maktx;
+ this.maknx = maktx;
+ this.count = count;
+ this.total = total;
+ this.sku = sku;
+ this.barcode = barcode;
}
}
--
Gitblit v1.9.1