From bcb19e8c93c3cabf0d8eb3ee34ed819b3c5a10ef Mon Sep 17 00:00:00 2001 From: whycq <913841844@qq.com> Date: 星期一, 25 十一月 2024 13:14:11 +0800 Subject: [PATCH] #优化地图 --- src/main/java/com/zy/asrs/entity/param/FullStoreParam.java | 56 +++++++++++++++++--------------------------------------- 1 files changed, 17 insertions(+), 39 deletions(-) diff --git a/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java b/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java index 289ba63..75c3a80 100644 --- a/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java +++ b/src/main/java/com/zy/asrs/entity/param/FullStoreParam.java @@ -1,13 +1,16 @@ package com.zy.asrs.entity.param; +import lombok.Data; + import java.util.List; /** * Created by vincent on 2020/6/11 */ +@Data public class FullStoreParam { - // 鎵樼洏鏉$爜 + // 璐ф灦鏉$爜 private String barcode; // 绔欑偣缂栧彿 @@ -16,52 +19,27 @@ // 鐗╂枡鍒楄〃鏁版嵁 private List<MatCodeStore> list; + @Data public static class MatCodeStore { // 鐗╂枡缂栧彿 - private String matNo; + private String matnr; + + //鏂欐兂鐮� + private String containerCode; + + // 搴忓垪鐮� + private String batch; // 鐗╂枡鏁伴噺 - private Double count; + private Double anfme; - public String getMatNo() { - return matNo; - } + //閿�鍞鍗曞彿 + private String csocode; - public void setMatNo(String matNo) { - this.matNo = matNo; - } + //閿�鍞鍗曡鍙� + private String isoseq; - public Double getCount() { - return count; - } - - public void setCount(Double count) { - this.count = count; - } } - public String getBarcode() { - return barcode; - } - - public void setBarcode(String barcode) { - this.barcode = barcode; - } - - public Integer getDevpNo() { - return devpNo; - } - - public void setDevpNo(Integer devpNo) { - this.devpNo = devpNo; - } - - public List<MatCodeStore> getList() { - return list; - } - - public void setList(List<MatCodeStore> list) { - this.list = list; - } } -- Gitblit v1.9.1