package com.example.springboot.entity;
|
|
public class StorageCage {
|
private Integer id;
|
private String glassId;
|
private Integer cage;
|
private Integer cell;
|
private Double width;
|
private Double glasswidth;
|
private Double glassheight;
|
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;
|
}
|
|
public String getGlassId() {
|
return glassId;
|
}
|
|
public void setGlassId(String glassId) {
|
this.glassId = glassId;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public Integer getCage() {
|
return cage;
|
}
|
|
public void setGage(Integer cage) {
|
this.cage = cage;
|
}
|
|
public void setCell(Integer cell) {
|
this.cell = cell;
|
}
|
|
public Integer getCell() {
|
return cell;
|
}
|
|
public Double getWidth() {
|
return width;
|
}
|
|
public void setWidth(Double width) {
|
this.width = width;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public Integer getTier() {
|
return 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;
|
}
|
|
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;
|
}
|
}
|