55 lines
1.2 KiB
Plaintext
55 lines
1.2 KiB
Plaintext
package kr.co.i4way.sample.model;
|
|
|
|
public class WallCenterVo {
|
|
|
|
private String center_id;
|
|
private String center_name;
|
|
private int center_order;
|
|
private String use_yn;
|
|
private String custom1;
|
|
private String custom2;
|
|
|
|
public String getCenter_id() {
|
|
return center_id;
|
|
}
|
|
public void setCenter_id(String center_id) {
|
|
this.center_id = center_id;
|
|
}
|
|
public String getCenter_name() {
|
|
return center_name;
|
|
}
|
|
public void setCenter_name(String center_name) {
|
|
this.center_name = center_name;
|
|
}
|
|
public int getCenter_order() {
|
|
return center_order;
|
|
}
|
|
public void setCenter_order(int center_order) {
|
|
this.center_order = center_order;
|
|
}
|
|
public String getUse_yn() {
|
|
return use_yn;
|
|
}
|
|
public void setUse_yn(String use_yn) {
|
|
this.use_yn = use_yn;
|
|
}
|
|
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;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return "WallCenterVo [center_id=" + center_id + ", center_name=" + center_name + ", center_order="
|
|
+ center_order + ", use_yn=" + use_yn + ", custom1=" + custom1 + ", custom2=" + custom2 + "]";
|
|
}
|
|
|
|
}
|