46 lines
892 B
Plaintext
46 lines
892 B
Plaintext
package kr.co.i4way.manage.model;
|
|
|
|
public class ScreenInfoVo {
|
|
|
|
private String id;
|
|
private String name;
|
|
private String url;
|
|
private String custom1;
|
|
private String custom2;
|
|
public String getId() {
|
|
return id;
|
|
}
|
|
public void setId(String id) {
|
|
this.id = id;
|
|
}
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
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 "ScreenInfoVo [id=" + id + ", name=" + name + ", url=" + url + ", custom1=" + custom1 + ", custom2="
|
|
+ custom2 + "]";
|
|
}
|
|
}
|