package tbDataModel; /**ÄܽøÄܳöµã¶ÔÏó*/ public class Point_fence_inout { String floor;//µãËùÔÚµÄͼ²ã String name;//×ø±ê int x;//X×ø±ê int y;//Y×ø±ê public int getY() { return y; } public void setY(int y) { this.y = y; } public String getName() { return name; } public int getX() { return x; } public void setName(String name) { this.name = name; } public void setX(int x) { this.x = x; } public String getFloor() { return floor; } public void setFloor(String floor) { this.floor = floor; } }