From 477b4071ccf45b6d15280d37a4a002307aa2271c Mon Sep 17 00:00:00 2001 From: wu <731351411@qq.com> Date: 星期四, 07 九月 2023 17:11:09 +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 | 59 ++++++++++++++++++++++++++++++++++++++--------------------- 1 files changed, 38 insertions(+), 21 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 bb95f3a..1a394d7 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,14 +3,16 @@ public class StorageCage { private Integer id; private String glassId; - private String orderid; - private String cage; - private String cell; - private String width; - private String state; - private String tier; + private Integer cage; + private Integer cell; + private Double width; private Double glasswidth; private Double glassheight; + private String state; + private Integer tier; + private String orderId; + private String coating; + private String lengthwidth; public Integer id() { return id; @@ -33,34 +35,34 @@ } public String getOrderId() { - return orderid; + return orderId; } - public void setOrderId(String orderid) { - this.orderid = 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; } - public String getWidth() { + public Double getWidth() { return width; } - public void setWidth(String width) { + public void setWidth(Double width) { this.width = width; } @@ -72,28 +74,43 @@ 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() { + public Double getGlassWidth() { return glasswidth; } - public void setglasswidth(Double glasswidth) { + public void setGlassWidth(Double glasswidth) { this.glasswidth = glasswidth; } - public Double getglassheight() { + public Double getGlassHeight() { return glassheight; } - public void setglassheight(Double glassheight) { + public void setGlassHeight(Double glassheight) { this.glassheight = glassheight; } + public String getCoating() { + return coating; + } + + public void setCoating(String coating) { + this.coating = coating; + } + + public String getLengthWidth() { + return lengthwidth; + } + + public void setLengthWidth(String lengthwidth) { + this.lengthwidth = lengthwidth; + } } -- Gitblit v1.8.0