78 lines
1.7 KiB
Plaintext
78 lines
1.7 KiB
Plaintext
package kr.co.i4way.manage.model;
|
|
|
|
import java.util.Arrays;
|
|
|
|
public class UserInfoVo {
|
|
|
|
private String user_id;
|
|
private String user_name;
|
|
private String passwd;
|
|
private String center_id;
|
|
private String grade;
|
|
private String custom1;
|
|
private String custom2;
|
|
private String querystr;
|
|
private String[] queryarray;
|
|
public String getUser_id() {
|
|
return user_id;
|
|
}
|
|
public void setUser_id(String user_id) {
|
|
this.user_id = user_id;
|
|
}
|
|
public String getUser_name() {
|
|
return user_name;
|
|
}
|
|
public void setUser_name(String user_name) {
|
|
this.user_name = user_name;
|
|
}
|
|
public String getPasswd() {
|
|
return passwd;
|
|
}
|
|
public void setPasswd(String passwd) {
|
|
this.passwd = passwd;
|
|
}
|
|
public String getCenter_id() {
|
|
return center_id;
|
|
}
|
|
public void setCenter_id(String center_id) {
|
|
this.center_id = center_id;
|
|
}
|
|
public String getGrade() {
|
|
return grade;
|
|
}
|
|
public void setGrade(String grade) {
|
|
this.grade = grade;
|
|
}
|
|
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 getQuerystr() {
|
|
return querystr;
|
|
}
|
|
public void setQuerystr(String querystr) {
|
|
this.querystr = querystr;
|
|
}
|
|
public String[] getQueryarray() {
|
|
return queryarray;
|
|
}
|
|
public void setQueryarray(String[] queryarray) {
|
|
this.queryarray = queryarray;
|
|
}
|
|
@Override
|
|
public String toString() {
|
|
return "UserInfoVo [user_id=" + user_id + ", user_name=" + user_name + ", passwd=" + passwd + ", center_id="
|
|
+ center_id + ", grade=" + grade + ", custom1=" + custom1 + ", custom2=" + custom2 + ", querystr="
|
|
+ querystr + ", queryarray=" + Arrays.toString(queryarray) + "]";
|
|
}
|
|
|
|
}
|