64 lines
1.3 KiB
Plaintext
64 lines
1.3 KiB
Plaintext
package kr.co.i4way.manage.model;
|
|
|
|
public class ObjInfoVo {
|
|
|
|
private String center_id;
|
|
private String obj_id;
|
|
private String dbid;
|
|
private String obj_type;
|
|
private String obj_name;
|
|
private String custom1;
|
|
private String custom2;
|
|
|
|
|
|
public String getCustom1() {
|
|
return custom1;
|
|
}
|
|
public void setCustom1(String custom1) {
|
|
this.custom1 = custom1;
|
|
}
|
|
public String getCustom2() {
|
|
return custom2;
|
|
}
|
|
public void setCustom2(String custom2) {
|
|
this.custom2 = custom2;
|
|
}
|
|
public String getCenter_id() {
|
|
return center_id;
|
|
}
|
|
public void setCenter_id(String center_id) {
|
|
this.center_id = center_id;
|
|
}
|
|
public String getObj_id() {
|
|
return obj_id;
|
|
}
|
|
public void setObj_id(String obj_id) {
|
|
this.obj_id = obj_id;
|
|
}
|
|
public String getObj_type() {
|
|
return obj_type;
|
|
}
|
|
public void setObj_type(String obj_type) {
|
|
this.obj_type = obj_type;
|
|
}
|
|
public String getObj_name() {
|
|
return obj_name;
|
|
}
|
|
public void setObj_name(String obj_name) {
|
|
this.obj_name = obj_name;
|
|
}
|
|
|
|
public String getDbid() {
|
|
return dbid;
|
|
}
|
|
public void setDbid(String dbid) {
|
|
this.dbid = dbid;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return "WallObjVo [center_id=" + center_id + ", obj_id=" + obj_id + ", dbid=" + dbid + ", obj_type=" + obj_type
|
|
+ ", obj_name=" + obj_name + "]";
|
|
}
|
|
|
|
}
|