From 6cf9c5edbe3ae92e7ec90bea498e43d8da804e41 Mon Sep 17 00:00:00 2001 From: whycxzp <glperry@163.com> Date: 星期一, 14 四月 2025 14:38:23 +0800 Subject: [PATCH] 获取托盘电池库位增加字段 chechv,resistance --- src/main/java/com/whyc/dto/WmsPallet.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/whyc/dto/WmsPallet.java b/src/main/java/com/whyc/dto/WmsPallet.java index 59aba5d..b9a002b 100644 --- a/src/main/java/com/whyc/dto/WmsPallet.java +++ b/src/main/java/com/whyc/dto/WmsPallet.java @@ -28,6 +28,9 @@ private String supper; private Integer activation; + private Integer chechv; + private Integer resistance; + public Integer getPallet_ID() { return pallet_ID; } @@ -107,4 +110,20 @@ public void setActivation(Integer activation) { this.activation = activation; } + + public Integer getChechv() { + return chechv; + } + + public void setChechv(Integer chechv) { + this.chechv = chechv; + } + + public Integer getResistance() { + return resistance; + } + + public void setResistance(Integer resistance) { + this.resistance = resistance; + } } -- Gitblit v1.9.1