package targets;
|
public class LayerManagement {
|
private String id; // ÐòºÅ
|
private String layerNumber; // ²ã±àºÅ
|
private String bottomHeight; // ²ãµ×¸ß£¨ÀåÃ×£©
|
private String topHeight; // ²ã¶¥¸ß£¨ÀåÃ×£©
|
private String company; // ËùÊô¹«Ë¾
|
private String addTime; // Ìí¼Óʱ¼ä
|
|
// Getters and Setters
|
public String getId() { return id; }
|
public void setId(String id) { this.id = id; }
|
public String getLayerNumber() { return layerNumber; }
|
public void setLayerNumber(String layerNumber) { this.layerNumber = layerNumber; }
|
public String getBottomHeight() { return bottomHeight; }
|
public void setBottomHeight(String bottomHeight) { this.bottomHeight = bottomHeight; }
|
public String getTopHeight() { return topHeight; }
|
public void setTopHeight(String topHeight) { this.topHeight = topHeight; }
|
public String getCompany() { return company; }
|
public void setCompany(String company) { this.company = company; }
|
public String getAddTime() { return addTime; }
|
public void setAddTime(String addTime) { this.addTime = addTime; }
|
}
|