package cn.ksource.core.web;
|
|
import java.io.Serializable;
|
|
|
/**
|
* 记录当前登陆人信息
|
* @version V1.0.0
|
* @author jxl
|
* @date Dec 28, 2013 4:43:35 PM
|
*/
|
public class WebLoginUser implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = -8496462255145415883L;
|
|
private String userId;
|
private String userName;
|
private String customerId;
|
private String customerName;
|
private String isEmail;
|
private String isPhone;
|
|
|
|
|
public WebLoginUser() {
|
|
}
|
|
|
public WebLoginUser(String userId,String userName,String customerId,String customerName,String isEmail,String isPhone) {
|
this.userId = userId;
|
this.userName = userName;
|
this.customerId = customerId;
|
this.customerName = customerName;
|
this.isEmail = isEmail;
|
this.isPhone = isPhone;
|
}
|
|
|
public String getUserId() {
|
return userId;
|
}
|
|
|
public void setUserId(String userId) {
|
this.userId = userId;
|
}
|
|
|
public String getUserName() {
|
return userName;
|
}
|
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
|
public String getCustomerId() {
|
return customerId;
|
}
|
|
|
public void setCustomerId(String customerId) {
|
this.customerId = customerId;
|
}
|
|
|
public String getCustomerName() {
|
return customerName;
|
}
|
|
|
public void setCustomerName(String customerName) {
|
this.customerName = customerName;
|
}
|
|
public String getIsEmail() {
|
return isEmail;
|
}
|
|
|
public void setIsEmail(String isEmail) {
|
this.isEmail = isEmail;
|
}
|
|
|
public String getIsPhone() {
|
return isPhone;
|
}
|
|
|
public void setIsPhone(String isPhone) {
|
this.isPhone = isPhone;
|
}
|
|
}
|