UserInfo.java 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. /*
  2. * *************************************************
  3. * Copyright (c) 2018 QMTH. All Rights Reserved.
  4. * Created by Deason on 2018-07-31 14:32:37.
  5. * *************************************************
  6. */
  7. package cn.com.qmth.examcloud.app.model;
  8. import java.io.Serializable;
  9. import java.util.List;
  10. /**
  11. * 用户信息
  12. *
  13. * @author: fengdesheng
  14. * @since: 2018/7/16
  15. */
  16. public class UserInfo implements Serializable {
  17. private static final long serialVersionUID = 8766713125414955078L;
  18. private Long id;
  19. /**
  20. * 用户ID
  21. */
  22. private Long userId;
  23. /**
  24. * 用户类型
  25. */
  26. private String userType;
  27. /**
  28. * 用户名
  29. */
  30. private String displayName;
  31. /**
  32. * 身份证号
  33. */
  34. private String identityNumber;
  35. /**
  36. * 学号
  37. */
  38. private String studentCode;
  39. /**
  40. * 学号列表
  41. */
  42. private List<String> studentCodeList;
  43. /**
  44. * 学生ID
  45. */
  46. private String studentId;
  47. /**
  48. * 登录手机号
  49. */
  50. private String securityPhone;
  51. /**
  52. * 手机号
  53. */
  54. private String phoneNumber;
  55. /**
  56. * 图像地址
  57. */
  58. private String photoPath;
  59. /**
  60. * 顶级机构ID
  61. */
  62. private Long rootOrgId;
  63. /**
  64. * 顶级机构(学校)名称
  65. */
  66. private String rootOrgName;
  67. /**
  68. * 学习中心ID
  69. */
  70. private Long orgId;
  71. /**
  72. * 学习中心名称
  73. */
  74. private String orgName;
  75. /**
  76. * 全局唯一标识符
  77. */
  78. private String key;
  79. /**
  80. * 鉴权token
  81. */
  82. private String token;
  83. public Long getId() {
  84. return id;
  85. }
  86. public void setId(Long id) {
  87. this.id = id;
  88. }
  89. public Long getUserId() {
  90. return userId;
  91. }
  92. public void setUserId(Long userId) {
  93. this.userId = userId;
  94. }
  95. public String getUserType() {
  96. return userType;
  97. }
  98. public void setUserType(String userType) {
  99. this.userType = userType;
  100. }
  101. public String getDisplayName() {
  102. return displayName;
  103. }
  104. public void setDisplayName(String displayName) {
  105. this.displayName = displayName;
  106. }
  107. public String getIdentityNumber() {
  108. return identityNumber;
  109. }
  110. public void setIdentityNumber(String identityNumber) {
  111. this.identityNumber = identityNumber;
  112. }
  113. public String getStudentCode() {
  114. return studentCode;
  115. }
  116. public void setStudentCode(String studentCode) {
  117. this.studentCode = studentCode;
  118. }
  119. public String getStudentId() {
  120. return studentId;
  121. }
  122. public void setStudentId(String studentId) {
  123. this.studentId = studentId;
  124. }
  125. public List<String> getStudentCodeList() {
  126. return studentCodeList;
  127. }
  128. public void setStudentCodeList(List<String> studentCodeList) {
  129. this.studentCodeList = studentCodeList;
  130. }
  131. public String getSecurityPhone() {
  132. return securityPhone;
  133. }
  134. public void setSecurityPhone(String securityPhone) {
  135. this.securityPhone = securityPhone;
  136. }
  137. public String getPhoneNumber() {
  138. return phoneNumber;
  139. }
  140. public void setPhoneNumber(String phoneNumber) {
  141. this.phoneNumber = phoneNumber;
  142. }
  143. public String getPhotoPath() {
  144. return photoPath;
  145. }
  146. public void setPhotoPath(String photoPath) {
  147. this.photoPath = photoPath;
  148. }
  149. public Long getRootOrgId() {
  150. return rootOrgId;
  151. }
  152. public void setRootOrgId(Long rootOrgId) {
  153. this.rootOrgId = rootOrgId;
  154. }
  155. public String getRootOrgName() {
  156. return rootOrgName;
  157. }
  158. public void setRootOrgName(String rootOrgName) {
  159. this.rootOrgName = rootOrgName;
  160. }
  161. public Long getOrgId() {
  162. return orgId;
  163. }
  164. public void setOrgId(Long orgId) {
  165. this.orgId = orgId;
  166. }
  167. public String getOrgName() {
  168. return orgName;
  169. }
  170. public void setOrgName(String orgName) {
  171. this.orgName = orgName;
  172. }
  173. public String getKey() {
  174. return key;
  175. }
  176. public void setKey(String key) {
  177. this.key = key;
  178. }
  179. public String getToken() {
  180. return token;
  181. }
  182. public void setToken(String token) {
  183. this.token = token;
  184. }
  185. }