From 8785249f17d3f05035ef4a81452963c957253df9 Mon Sep 17 00:00:00 2001 From: zwl <1051256694@qq.com> Date: 星期二, 01 四月 2025 13:52:34 +0800 Subject: [PATCH] 修复拣料功能 --- src/main/java/com/zy/asrs/entity/result/MatDto.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/result/MatDto.java b/src/main/java/com/zy/asrs/entity/result/MatDto.java index f9624d8..b9cd056 100644 --- a/src/main/java/com/zy/asrs/entity/result/MatDto.java +++ b/src/main/java/com/zy/asrs/entity/result/MatDto.java @@ -1,5 +1,6 @@ package com.zy.asrs.entity.result; +import com.core.common.Cools; import lombok.Data; /** @@ -25,6 +26,7 @@ //鍥惧彿 private String model; + public MatDto() { } @@ -33,12 +35,14 @@ this.maknx = maknx; this.count = count; } + public MatDto(String matNo, String maknx, Double count, String specs) { this.specs = specs; this.matnr = matNo; this.maknx = maknx; this.count = count; } + public MatDto(String matNo, String maknx, Double count, Double total, String specs) { this.specs = specs; this.matnr = matNo; @@ -46,7 +50,8 @@ this.count = count; this.total = total; } - public MatDto(String matNo, String maknx, Double count, Double total, String specs,String model) { + + public MatDto(String matNo, String maknx, Double count, Double total, String specs, String model) { this.specs = specs; this.matnr = matNo; this.maknx = maknx; -- Gitblit v1.9.1