派生自 projectDept/qhighschool

EricsHu
2022-12-05 068fc7f2e81178e55fa191a13709af64b1a163f6
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
package com.qxueyou.scc.sys.model;
/**
 * LoginController里cacheUserInfo方法的参数
 * @author iqtogether
 *
 */
public class CacheParamters {
    /** userId*/
    private String userId;
 
    /** cookie值*/
    private String cookieValue;
 
    /** 班主任Id*/
    private String chargerClassId;
 
    /** 学员Id*/
    private String sutdentClassId;
 
    /** 管理员Id*/
    private String adminOrgId;
 
    /** 讲师班级Id*/
    private String teacherClassId;
 
    /** 助理讲师班级Id*/
    private String assTeacherClassId;
 
    /** 自定义机构管理员Id*/
    private String customOrgId;
 
    /** 自定义角色Id*/
    private String curtomRoleId;
 
    /** 自定义角色值*/
    private String customRoleValue;
 
    /** 是否缓存*/
    private Boolean cacheIpFlag;
 
    /** ip*/
    private String ip;
 
    /** 登录平台:platForm*/
    private String platForm;
 
    /**
     * @return the userId
     */
    public String getUserId() {
        return userId;
    }
    /**
     * @param userId the userId to set
     */
    public void setUserId(String userId) {
        this.userId = userId;
    }
    /**
     * @return the cookieValue
     */
    public String getCookieValue() {
        return cookieValue;
    }
    /**
     * @param cookieValue the cookieValue to set
     */
    public void setCookieValue(String cookieValue) {
        this.cookieValue = cookieValue;
    }
    /**
     * @return the charderClassId
     */
    public String getChargerClassId() {
        return chargerClassId;
    }
    /**
     * @param charderClassId the charderClassId to set
     */
    public void setChargerClassId(String chargerClassId) {
        this.chargerClassId = chargerClassId;
    }
    /**
     * @return the sutdentClassId
     */
    public String getSutdentClassId() {
        return sutdentClassId;
    }
    /**
     * @param sutdentClassId the sutdentClassId to set
     */
    public void setSutdentClassId(String sutdentClassId) {
        this.sutdentClassId = sutdentClassId;
    }
    /**
     * @return the adminOrgId
     */
    public String getAdminOrgId() {
        return adminOrgId;
    }
    /**
     * @param adminOrgId the adminOrgId to set
     */
    public void setAdminOrgId(String adminOrgId) {
        this.adminOrgId = adminOrgId;
    }
    /**
     * @return the teacherClassId
     */
    public String getTeacherClassId() {
        return teacherClassId;
    }
    /**
     * @param teacherClassId the teacherClassId to set
     */
    public void setTeacherClassId(String teacherClassId) {
        this.teacherClassId = teacherClassId;
    }
    /**
     * @return the customOrgId
     */
    public String getCustomOrgId() {
        return customOrgId;
    }
    /**
     * @param customOrgId the customOrgId to set
     */
    public void setCustomOrgId(String customOrgId) {
        this.customOrgId = customOrgId;
    }
    /**
     * @return the curtomRoleId
     */
    public String getCurtomRoleId() {
        return curtomRoleId;
    }
    /**
     * @param curtomRoleId the curtomRoleId to set
     */
    public void setCurtomRoleId(String curtomRoleId) {
        this.curtomRoleId = curtomRoleId;
    }
    /**
     * @return the customRoleValue
     */
    public String getCustomRoleValue() {
        return customRoleValue;
    }
    /**
     * @param customRoleValue the customRoleValue to set
     */
    public void setCustomRoleValue(String customRoleValue) {
        this.customRoleValue = customRoleValue;
    }
    /**
     * @return the cacheIpFlag
     */
    public Boolean getCacheIpFlag() {
        return cacheIpFlag;
    }
    /**
     * @param cacheIpFlag the cacheIpFlag to set
     */
    public void setCacheIpFlag(Boolean cacheIpFlag) {
        this.cacheIpFlag = cacheIpFlag;
    }
    /**
     * @return the ip
     */
    public String getIp() {
        return ip;
    }
    /**
     * @param ip the ip to set
     */
    public void setIp(String ip) {
        this.ip = ip;
    }
    public String getAssTeacherClassId() {
        return assTeacherClassId;
    }
    public void setAssTeacherClassId(String assTeacherClassId) {
        this.assTeacherClassId = assTeacherClassId;
    }
    public String getPlatForm() {
        return platForm;
    }
    public void setPlatForm(String platForm) {
        this.platForm = platForm;
    }
 
}