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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package tbDataModel;
 
public class Circles {
    int jianzhi;//¼üÖµ
    int x;//Ô²ÐÄx×ø±ê
    int y;//Ô²ÐÄy×ø±ê
    int anchor_h;//»ùÕ¾µÄ¸ß
    int tag_h;//±êÇ©µÄ¸ß
    int width;//Ô²µÄ³¤¶È
    int floor;//ԲȦËùÔڵIJã
    int tagfloor;//±êÇ©ËùÔڵIJã
    String tagid;//ÓëÖ®²â¾àµÄ±êÇ©id
    String anchorid;//ÓëÖ®²â¾àµÄ»ùÕ¾id
    
    
    
    public int getX() {
        return x;
    }
    public int getY() {
        return y;
    }
    public int getWidth() {
        return width;
    }
    public String getTagid() {
        return tagid;
    }
    public void setX(int x) {
        this.x = x;
    }
    public void setY(int y) {
        this.y = y;
    }
    public void setWidth(int width) {
        this.width = width;
    }
    public void setTagid(String tagid) {
        this.tagid = tagid;
    }
    public String getAnchorid() {
        return anchorid;
    }
    public void setAnchorid(String anchorid) {
        this.anchorid = anchorid;
    }
    public int getAnchor_h() {
        return anchor_h;
    }
    public int getTag_h() {
        return tag_h;
    }
    public void setAnchor_h(int anchor_h) {
        this.anchor_h = anchor_h;
    }
    public void setTag_h(int tag_h) {
        this.tag_h = tag_h;
    }
    public int getFloor() {
        return floor;
    }
    public int getTagfloor() {
        return tagfloor;
    }
    public void setFloor(int floor) {
        this.floor = floor;
    }
    public void setTagfloor(int tagfloor) {
        this.tagfloor = tagfloor;
    }
    public int getJianzhi() {
        return jianzhi;
    }
    public void setJianzhi(int jianzhi) {
        this.jianzhi = jianzhi;
    }
 
}