package com.example.springboot.entity;
|
|
public class StorageCage {
|
private Integer id;
|
private String glassId;
|
private String cage;
|
private String cell;
|
//private String height;
|
private String width;
|
private String state;
|
private String tier;
|
|
|
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 getCage() {
|
return cage;
|
}
|
|
public void setGage(String cage) {
|
this.cage = cage;
|
}
|
|
public void setCell(String cell) {
|
this.cell = cell;
|
}
|
|
public String getCell() {
|
return cell;
|
}
|
|
|
|
// public String getHeighth() {
|
// return height;
|
// }
|
|
// public void setHeight(String height) {
|
// this.height = height;
|
// }
|
|
public String getWidth() {
|
return width;
|
}
|
|
public void setWidth(String width) {
|
this.width = width;
|
}
|
|
public String getState() {
|
return state;
|
}
|
|
public void setState(String state) {
|
this.state = state;
|
}
|
|
public String getTier() {
|
return tier;
|
}
|
|
public void setTier(String tier) {
|
this.tier = tier;
|
}
|
|
|
}
|