From c42346453608186971fad5e80ffd08fd58d38d06 Mon Sep 17 00:00:00 2001 From: zc <zc@123> Date: 星期三, 16 七月 2025 16:42:45 +0800 Subject: [PATCH] 完善erp对接 --- src/main/java/com/zy/asrs/entity/param/MatDto.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/param/MatDto.java b/src/main/java/com/zy/asrs/entity/param/MatDto.java index 0d10511..cb6d627 100644 --- a/src/main/java/com/zy/asrs/entity/param/MatDto.java +++ b/src/main/java/com/zy/asrs/entity/param/MatDto.java @@ -9,6 +9,9 @@ public class MatDto { // 鐗╂枡缂栧彿 + private String productionCode; + + // 鐗╂枡缂栧彿 private String matnr; // 鐗╂枡鍚嶇О @@ -29,6 +32,10 @@ private Double total; + private String orderNo; + + private String customer; + public MatDto() { } public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total) { @@ -42,6 +49,19 @@ this.total = total; } + public MatDto(String matnr, String maknx, String batch, String specs, String manu, String memo, Double count, Double total,String orderNo,String customer) { + this.matnr = matnr; + this.maknx = maknx; + this.batch = batch; + this.specs = specs; + this.manu = manu; + this.memo = memo; + this.count = count; + this.total = total; + this.orderNo = orderNo; + this.customer = customer; + } + public MatDto(String matNo, String maknx, Double count) { this.matnr = matNo; this.maknx = maknx; -- Gitblit v1.9.1