wangmh 8 лет назад
Родитель
Сommit
3427800221
1 измененных файлов с 15 добавлено и 1 удалено
  1. 15 1
      sso-common/src/main/java/com/uas/sso/entity/UserView.java

+ 15 - 1
sso-common/src/main/java/com/uas/sso/entity/UserView.java

@@ -61,6 +61,11 @@ public class UserView {
      */
      */
     private Short identityValidCode;
     private Short identityValidCode;
 
 
+    /**
+     * 用户身份认证状态
+     */
+    private String imId;
+
     /**
     /**
      * 账户是否冻结(1、冻结)
      * 账户是否冻结(1、冻结)
      */
      */
@@ -69,7 +74,7 @@ public class UserView {
     public UserView() {
     public UserView() {
     }
     }
 
 
-    public UserView(Long userUU, String name, String mobile, String mobileArea, Short mobileValidCode, String email, Short emailValidCode, String realName, String idCard, Short identityValidCode, Integer lock) {
+    public UserView(Long userUU, String name, String mobile, String mobileArea, Short mobileValidCode, String email, Short emailValidCode, String realName, String idCard, Short identityValidCode, Integer lock, String imId) {
         this.userUU = userUU;
         this.userUU = userUU;
         this.name = name;
         this.name = name;
         this.mobile = mobile;
         this.mobile = mobile;
@@ -81,6 +86,7 @@ public class UserView {
         this.idCard = idCard;
         this.idCard = idCard;
         this.identityValidCode = identityValidCode;
         this.identityValidCode = identityValidCode;
         this.lock = lock;
         this.lock = lock;
+        this.imId = imId;
     }
     }
 
 
     public Long getUserUU() {
     public Long getUserUU() {
@@ -172,4 +178,12 @@ public class UserView {
     public void setLock(Integer lock) {
     public void setLock(Integer lock) {
         this.lock = lock;
         this.lock = lock;
     }
     }
+
+    public String getImId() {
+        return imId;
+    }
+
+    public void setImId(String imId) {
+        this.imId = imId;
+    }
 }
 }