From cd761b085ddff0d4f55a0d5b892b3120cf8fa9d2 Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期二, 13 一月 2026 13:18:04 +0800
Subject: [PATCH] 修改了AGV请求接口的逻辑,Mas获取返回信息的订单编号

---
 src/main/java/com/zy/common/model/MatDto.java |   26 +++++++++++++++++++++++++-
 1 files changed, 25 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/zy/common/model/MatDto.java b/src/main/java/com/zy/common/model/MatDto.java
index 2c8cf7c..c7a823f 100644
--- a/src/main/java/com/zy/common/model/MatDto.java
+++ b/src/main/java/com/zy/common/model/MatDto.java
@@ -49,10 +49,12 @@
     //鍗曞彿
     private String orderNo;
 
+    private String cstateid;
+
     public MatDto() {
     }
 
-    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) {
+    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;
@@ -67,5 +69,27 @@
         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