wu
2023-09-06 a8698fd74b7e630820f42eb76bd58ce8d22585d1
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;
    }
  
}