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;
|
}
|
|
}
|