From 35dca726bf82b7d9a77fee5157d9143bd9dde3ea Mon Sep 17 00:00:00 2001 From: zhangc <zc@123> Date: 星期二, 14 一月 2025 14:57:06 +0800 Subject: [PATCH] 添加AGV告警处理及回调接口 --- 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