826220679@qq.com
2025-08-07 4d6cd980c5c69e4d9d150669c89734642297e0cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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; }
}