ZengTao
2023-09-06 3879216b974b6a54232dd03017e0695186cea092
springboot-vue3/src/main/java/com/example/springboot/entity/StorageCage.java
@@ -11,13 +11,17 @@
    private String state;
    private Integer tier;  
    private String orderId;
    private String coating;
    private String lengthwidth;
    public Integer id() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public Integer getId() {
        return id;
    }
@@ -29,6 +33,7 @@
    public void setGlassId(String glassId) {
        this.glassId = glassId;
    }
     public String getOrderId() {
        return orderId;
    }
@@ -53,16 +58,6 @@
        return cell;
    }
    // public String getHeighth() {
    //     return height;
    // }
    // public void setHeight(String height) {
    //     this.height = height;
    // }
    public Double getWidth() {
        return width;
    }
@@ -86,6 +81,7 @@
    public void setTier(Integer tier) {
        this.tier = tier;
    }
     public Double getGlassWidth() {
        return glasswidth;
    }
@@ -93,6 +89,7 @@
    public void setGlassWidth(Double glasswidth) {
        this.glasswidth = glasswidth;
    }
    public Double getGlassHeight() {
        return glassheight;
    }
@@ -101,4 +98,19 @@
        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;
    }
}