wuyouming666
2023-09-05 c7df23be1f204458883088c18cbe33a451b8e50d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
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;
    }
 
  
}