ZengTao
2023-11-27 3f98ccf49e7ffc098689c37237bd1dceed651ca1
springboot-vue3/src/main/java/com/example/springboot/entity/Glass.java
@@ -7,14 +7,14 @@
    private double height;
    private String glassId;
    
    public Integer id() {
        return id;
    }
    public void setId(Integer id) {
        this.id = id;
    }
    public Integer getId() {
        return id;
    }
@@ -43,6 +43,10 @@
        this.width = width;
    }
  public void getWidth(double width) {
    this.width = width;
  }
     public String getGlassId() {
        return glassId;
    }
@@ -50,8 +54,5 @@
    public void setGlassId(String glassId) {
        this.glassId = glassId;
    }
}