54 lines
1.2 KiB
Plaintext
54 lines
1.2 KiB
Plaintext
package kr.co.i4way.manage.model;
|
|
|
|
public class LoginVo {
|
|
private String user_id;
|
|
private String user_name;
|
|
private String passwd;
|
|
private String center_id;
|
|
private String custom1;
|
|
private String custom2;
|
|
|
|
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 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 "LoginVo [user_id=" + user_id + ", user_name=" + user_name + ", passwd=" + passwd + ", center_id="
|
|
+ center_id + ", custom1=" + custom1 + ", custom2=" + custom2 + "]";
|
|
}
|
|
|
|
}
|