dhz
2022-06-22 935b4b66b99b1f022f82cdaef8e3ef6599afbc72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
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;
    }
 
}