派生自 projectDept/qhighschool

yn147
2023-05-10 96286178ee1c257c130cb2ad964a781f36c4eee5
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package com.qxueyou.scc.user.model;
 
import java.io.Serializable;
import java.util.Date;
 
/**
 * ExportUserRegistration
 * 
 */
public class ExportUserRegistration implements Serializable {
    
    private static final long serialVersionUID = 1L;
    
    private String userName;
    
    private String salesCode;
    
    private String mobilePhone;
    
    private String status;
    
    private String installFlag;
    
    private String className;
    
    private Date activationTime;
    
    private Date registrationTime;
 
    /**
     * @return the userName
     */
    public String getUserName() {
        return userName;
    }
 
    /**
     * @param userName the userName to set
     */
    public void setUserName(String userName) {
        this.userName = userName;
    }
 
    /**
     * @return the salesCode
     */
    public String getSalesCode() {
        return salesCode;
    }
 
    /**
     * @param salesCode the salesCode to set
     */
    public void setSalesCode(String salesCode) {
        this.salesCode = salesCode;
    }
 
    /**
     * @return the mobilePhone
     */
    public String getMobilePhone() {
        return mobilePhone;
    }
 
    /**
     * @param mobilePhone the mobilePhone to set
     */
    public void setMobilePhone(String mobilePhone) {
        this.mobilePhone = mobilePhone;
    }
 
    /**
     * @return the status
     */
    public String getStatus() {
        return status;
    }
 
    /**
     * @param status the status to set
     */
    public void setStatus(String status) {
        this.status = status;
    }
 
    /**
     * @return the installFlag
     */
    public String getInstallFlag() {
        return installFlag;
    }
 
    /**
     * @param installFlag the installFlag to set
     */
    public void setInstallFlag(String installFlag) {
        this.installFlag = installFlag;
    }
 
    /**
     * @return the className
     */
    public String getClassName() {
        return className;
    }
 
    /**
     * @param className the className to set
     */
    public void setClassName(String className) {
        this.className = className;
    }
 
    /**
     * @return the activationTime
     */
    public Date getActivationTime() {
        return activationTime;
    }
 
    /**
     * @param activationTime the activationTime to set
     */
    public void setActivationTime(Date activationTime) {
        this.activationTime = activationTime;
    }
 
    /**
     * @return the registrationTime
     */
    public Date getRegistrationTime() {
        return registrationTime;
    }
 
    /**
     * @param registrationTime the registrationTime to set
     */
    public void setRegistrationTime(Date registrationTime) {
        this.registrationTime = registrationTime;
    }
    
    
 
    
}