zsh_root
2024-01-02 7b595546af704983dbafcd0d385c8768ddacefc2
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
package tbDataModel;
 
public class tb_baoxuid {
int tagid;
int nowbaoxu;//µ±Ç°µÄ°üÐò
int lastbaoxu;//ÒѾ­´¦ÀíµÄ°üÐò
int zuobiao;
int x;//ÉÏÒ»´ÎµÄX×ø±ê
int  y;//ÉÏÒ»´ÎY×ø±ê
int  z;//ÉÏÒ»´ÎZ×ø±ê
int floor;
public int getTagid() {
    return tagid;
}
public int getNowbaoxu() {
    return nowbaoxu;
}
public int getLastbaoxu() {
    return lastbaoxu;
}
public void setTagid(int tagid) {
    this.tagid = tagid;
}
public void setNowbaoxu(int nowbaoxu) {
    this.nowbaoxu = nowbaoxu;
}
public void setLastbaoxu(int lastbaoxu) {
    this.lastbaoxu = lastbaoxu;
}
public int getX() {
    return x;
}
public void setX(int x) {
    this.x = x;
}
public int getY() {
    return y;
}
public void setY(int y) {
    this.y = y;
}
public int getZ() {
    return z;
}
public void setZ(int z) {
    this.z = z;
}
public int getFloor() {
    return floor;
}
public void setFloor(int floor) {
    this.floor = floor;
}
public int getZuobiao() {
    return zuobiao;
}
public void setZuobiao(int zuobiao) {
    this.zuobiao = zuobiao;
}
 
}