ZengTao
2024-05-09 58d7b0e12ccd92cf3934f6582b51b5fbcecaa39a
springboot-vue3/src/main/java/com/example/springboot/entity/Glass.java
New file
@@ -0,0 +1,58 @@
package com.example.springboot.entity;
//玻璃信息表
public class Glass {
  private Integer id;//自增id
  private String orderId;//订单id
  private double width;//宽度
  private double height;//高度
  private String glassId;//玻璃id
  public Integer id() {
    return id;
  }
  public void setId(Integer id) {
    this.id = id;
  }
  public Integer getId() {
    return id;
  }
  public String getOrderId() {
    return orderId;
  }
  public void setOrderId(String orderId) {
    this.orderId = orderId;
  }
  public double getwidth() {
    return width;
  }
  public void setHeight(double height) {
    this.height = height;
  }
  public double getHeight() {
    return height;
  }
  public void setWidth(double width) {
    this.width = width;
  }
  public void getWidth(double width) {
    this.width = width;
  }
  public String getGlassId() {
    return glassId;
  }
  public void setGlassId(String glassId) {
    this.glassId = glassId;
  }
}