From 5a07bb3f4e4846ac5425b5ec73d4017e2b7c57dd Mon Sep 17 00:00:00 2001
From: zwl <1051256694@qq.com>
Date: 星期四, 16 四月 2026 12:44:40 +0800
Subject: [PATCH] erp上报完成时间修复
---
src/main/java/com/zy/asrs/entity/result/FindLocNoAttributeVo.java | 21 +++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/src/main/java/com/zy/asrs/entity/result/FindLocNoAttributeVo.java b/src/main/java/com/zy/asrs/entity/result/FindLocNoAttributeVo.java
index f25f2a3..8151f08 100644
--- a/src/main/java/com/zy/asrs/entity/result/FindLocNoAttributeVo.java
+++ b/src/main/java/com/zy/asrs/entity/result/FindLocNoAttributeVo.java
@@ -5,6 +5,8 @@
import com.zy.asrs.entity.WrkDetl;
import com.zy.asrs.entity.param.FullStoreParam;
+import java.util.List;
+
public class FindLocNoAttributeVo {
private String matnr = "";
private String specs = "";
@@ -18,6 +20,8 @@
private String boxType2 = "1";
private String boxType3 = "1";
private Integer outArea;
+ private List<Integer> outAreas;
+ private Integer freqType;
public FindLocNoAttributeVo() {
}
@@ -82,6 +86,7 @@
this.boxType1 = waitPakin.getBoxType1();
this.boxType2 = waitPakin.getBoxType2();
this.boxType3 = waitPakin.getBoxType3();
+ this.freqType = waitPakin.getFreqType();
}
public FindLocNoAttributeVo(FullStoreParam.MatCodeStore matCodeStore) {
@@ -208,6 +213,22 @@
this.outArea = outArea;
}
+ public List<Integer> getOutAreas() {
+ return outAreas;
+ }
+
+ public void setOutAreas(List<Integer> outAreas) {
+ this.outAreas = outAreas;
+ }
+
+ public Integer getFreqType() {
+ return freqType;
+ }
+
+ public void setFreqType(Integer freqType) {
+ this.freqType = freqType;
+ }
+
public boolean beSimilar(LocDetl locDetl){
return (this.matnr.equals(locDetl.getMatnr())
--
Gitblit v1.9.1