From 57b71a11fbe827dd822d0697b3eeaf2ddb08e948 Mon Sep 17 00:00:00 2001 From: Junjie <xjj@123> Date: 星期一, 16 六月 2025 10:08:19 +0800 Subject: [PATCH] # --- src/main/java/com/zy/common/model/MatDto.java | 43 ++++++++++++++++++++----------------------- 1 files changed, 20 insertions(+), 23 deletions(-) diff --git a/src/main/java/com/zy/common/model/MatDto.java b/src/main/java/com/zy/common/model/MatDto.java index e45246a..316a804 100644 --- a/src/main/java/com/zy/common/model/MatDto.java +++ b/src/main/java/com/zy/common/model/MatDto.java @@ -13,6 +13,7 @@ // 鐗╂枡鍚嶇О private String maktx; + private String maknx; // 搴撲綅瑙勬牸 @@ -23,40 +24,36 @@ // 搴撲綅鏁伴噺 private Double total; - //宸ュ簭 + + //杈呮暟閲� + private Double weight; + + //鎵樼洏鐮� + private String barcode; + + //u8鏃у搧鍚� private String sku; + + //鍨嬪彿 + private String model; + + //瀹㈡埛鍚嶇О + private String supp; public MatDto() { } - public MatDto(String matNo, String maktx, Double count) { + public MatDto(String matNo, String maktx, Double count, Double weight, Double total, String specs, String sku, String barcode, String model, String supp) { this.matnr = matNo; this.maktx = maktx; this.maknx = maktx; - this.count = count; - } - public MatDto(String matNo, String maktx, Double count,String specs) { this.specs = specs; - this.matnr = matNo; - this.maktx = maktx; - this.maknx = maktx; - this.count = count; - } - public MatDto(String matNo, String maktx, Double count,Double total,String specs) { - this.specs = specs; - this.matnr = matNo; - this.maktx = maktx; - this.maknx = maktx; this.count = count; this.total = total; - } - 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.weight = weight; this.sku = sku; + this.barcode = barcode; + this.model = model; + this.supp = supp; } } -- Gitblit v1.9.1