123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /*
- * *************************************************
- * Copyright (c) 2018 QMTH. All Rights Reserved.
- * Created by Deason on 2018-07-31 14:32:37.
- * *************************************************
- */
- package cn.com.qmth.examcloud.app.model;
- import java.io.Serializable;
- import java.util.List;
- /**
- * 用户信息
- *
- * @author: fengdesheng
- * @since: 2018/7/16
- */
- public class UserInfo implements Serializable {
- private static final long serialVersionUID = 8766713125414955078L;
- private Long id;
- /**
- * 用户ID
- */
- private Long userId;
- /**
- * 用户类型
- */
- private String userType;
- /**
- * 用户名
- */
- private String displayName;
- /**
- * 身份证号
- */
- private String identityNumber;
- /**
- * 学号
- */
- private String studentCode;
- /**
- * 学号列表
- */
- private List<String> studentCodeList;
- /**
- * 学生ID
- */
- private String studentId;
- /**
- * 登录手机号
- */
- private String securityPhone;
- /**
- * 手机号
- */
- private String phoneNumber;
- /**
- * 图像地址
- */
- private String photoPath;
- /**
- * 顶级机构ID
- */
- private Long rootOrgId;
- /**
- * 顶级机构(学校)名称
- */
- private String rootOrgName;
- /**
- * 学习中心ID
- */
- private Long orgId;
- /**
- * 学习中心名称
- */
- private String orgName;
- /**
- * 全局唯一标识符
- */
- private String key;
- /**
- * 鉴权token
- */
- private String token;
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public Long getUserId() {
- return userId;
- }
- public void setUserId(Long userId) {
- this.userId = userId;
- }
- public String getUserType() {
- return userType;
- }
- public void setUserType(String userType) {
- this.userType = userType;
- }
- public String getDisplayName() {
- return displayName;
- }
- public void setDisplayName(String displayName) {
- this.displayName = displayName;
- }
- public String getIdentityNumber() {
- return identityNumber;
- }
- public void setIdentityNumber(String identityNumber) {
- this.identityNumber = identityNumber;
- }
- public String getStudentCode() {
- return studentCode;
- }
- public void setStudentCode(String studentCode) {
- this.studentCode = studentCode;
- }
- public String getStudentId() {
- return studentId;
- }
- public void setStudentId(String studentId) {
- this.studentId = studentId;
- }
- public List<String> getStudentCodeList() {
- return studentCodeList;
- }
- public void setStudentCodeList(List<String> studentCodeList) {
- this.studentCodeList = studentCodeList;
- }
- public String getSecurityPhone() {
- return securityPhone;
- }
- public void setSecurityPhone(String securityPhone) {
- this.securityPhone = securityPhone;
- }
- public String getPhoneNumber() {
- return phoneNumber;
- }
- public void setPhoneNumber(String phoneNumber) {
- this.phoneNumber = phoneNumber;
- }
- public String getPhotoPath() {
- return photoPath;
- }
- public void setPhotoPath(String photoPath) {
- this.photoPath = photoPath;
- }
- public Long getRootOrgId() {
- return rootOrgId;
- }
- public void setRootOrgId(Long rootOrgId) {
- this.rootOrgId = rootOrgId;
- }
- public String getRootOrgName() {
- return rootOrgName;
- }
- public void setRootOrgName(String rootOrgName) {
- this.rootOrgName = rootOrgName;
- }
- public Long getOrgId() {
- return orgId;
- }
- public void setOrgId(Long orgId) {
- this.orgId = orgId;
- }
- public String getOrgName() {
- return orgName;
- }
- public void setOrgName(String orgName) {
- this.orgName = orgName;
- }
- public String getKey() {
- return key;
- }
- public void setKey(String key) {
- this.key = key;
- }
- public String getToken() {
- return token;
- }
- public void setToken(String token) {
- this.token = token;
- }
- }
|