package com.example.springboot.entity;
|
|
public class Glass {
|
private Integer 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;
|
}
|
|
}
|