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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package tbDataModel;
import java.awt.Color;
 
/**¶à±ßÐζÔÏó*/
public class PolygonNew {
    double[] x;
    double[] y;
    double[] bj;//°ë¾¶µÄ¼¯ºÏ
    String id;
    String type;
    Color color;
    String floor;
    String bumen;
    String shape;
    String start;
    String stop;
    String name;
    String allFloor;//¶ÔËùÓÐͼ²ãÉúЧ
 
    public String getId() {
        return id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public double[] getX() {
        return x;
    }
    public double[] getY() {
        return y;
    }
    public String gettype() {
        return type;
    }
    public Color getColor() {
        return color;
    }
    public void setX(double[] x) {
        this.x = x;
    }
    public void setY(double[] y) {
        this.y = y;
    }
    public void settype(String type) {
        this.type = type;
    }
    public void setColor(Color color) {
        this.color = color;
    }
    public String getFloor() {
        return floor;
    }
    public String getBumen() {
        return bumen;
    }
    public String getShape() {
        return shape;
    }
    public String getStart() {
        return start;
    }
    public String getStop() {
        return stop;
    }
    public void setFloor(String floor) {
        this.floor = floor;
    }
    public void setBumen(String bumen) {
        this.bumen = bumen;
    }
    public void setShape(String shape) {
        this.shape = shape;
    }
    public void setStart(String start) {
        this.start = start;
    }
    public void setStop(String stop) {
        this.stop = stop;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
 
    /**¶ÔËùÓÐͼ²ãÉúЧ*/
    public String getAllFloor() {
        return allFloor;
    }
 
    public void setAllFloor(String allFloor) {
        this.allFloor = allFloor;
    }
 
    public double[] getBj() {
        return bj;
    }
 
    public void setBj(double[] bj) {
        this.bj = bj;
    }
}