From a60d5d839e6f686990a92801b470a9aeaad31b4a Mon Sep 17 00:00:00 2001 From: wuyouming666 <2265557248@qq.com> Date: 星期三, 06 九月 2023 08:26:45 +0800 Subject: [PATCH] Merge branch 'master' of ssh://10.153.19.150:29418/CanadaMes --- springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java | 49 +++++++++++++++++++++++++++++++++++-------------- 1 files changed, 35 insertions(+), 14 deletions(-) diff --git a/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java b/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java index d3e0d0b..4a05577 100644 --- a/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java +++ b/springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java @@ -3,13 +3,14 @@ public class StorageCage { private Integer id; private String glassId; - private String cage; - private String cell; - //private String height; - private String width; + private Integer cage; + private Integer cell; + private Double width; + private Double glasswidth; + private Double glassheight; private String state; - private String tier; - + private Integer tier; + private String orderId; public Integer id() { return id; @@ -28,20 +29,27 @@ public void setGlassId(String glassId) { this.glassId = glassId; } + public String getOrderId() { + return orderId; + } + + public void setOrderId(String orderId) { + this.orderId = orderId; + } - public String getCage() { + public Integer getCage() { return cage; } - public void setGage(String cage) { + public void setGage(Integer cage) { this.cage = cage; } - public void setCell(String cell) { + public void setCell(Integer cell) { this.cell = cell; } - public String getCell() { + public Integer getCell() { return cell; } @@ -55,11 +63,11 @@ // this.height = height; // } - public String getWidth() { + public Double getWidth() { return width; } - public void setWidth(String width) { + public void setWidth(Double width) { this.width = width; } @@ -71,13 +79,26 @@ this.state = state; } - public String getTier() { + public Integer getTier() { return tier; } - public void setTier(String tier) { + public void setTier(Integer tier) { this.tier = tier; } + public Double getGlassWidth() { + return glasswidth; + } + public void setGlassWidth(Double glasswidth) { + this.glasswidth = glasswidth; + } + public Double getGlassHeight() { + return glassheight; + } + + public void setGlassHeight(Double glassheight) { + this.glassheight = glassheight; + } } -- Gitblit v1.8.0