|
|
@@ -1,10 +1,7 @@
|
|
|
package com.uas.sso.entity;
|
|
|
|
|
|
-import com.alibaba.fastjson.annotation.JSONField;
|
|
|
import com.uas.sso.core.Const;
|
|
|
-import org.codehaus.jackson.annotate.JsonIgnore;
|
|
|
|
|
|
-import javax.persistence.*;
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
|
|
|
@@ -14,8 +11,6 @@ import java.util.Date;
|
|
|
* @author wangmh
|
|
|
* @date 2018/1/6
|
|
|
*/
|
|
|
-@Entity
|
|
|
-@Table(name = "v$user$account")
|
|
|
public class UserAccount implements Serializable {
|
|
|
|
|
|
/**
|
|
|
@@ -26,7 +21,6 @@ public class UserAccount implements Serializable {
|
|
|
/**
|
|
|
* uu号
|
|
|
*/
|
|
|
- @Id
|
|
|
private Long userUU;
|
|
|
|
|
|
/**
|
|
|
@@ -194,8 +188,6 @@ public class UserAccount implements Serializable {
|
|
|
this.mobileValidCode = mobileValidCode;
|
|
|
}
|
|
|
|
|
|
- @JsonIgnore
|
|
|
- @JSONField(serialize = false)
|
|
|
public String getPassword() {
|
|
|
return password;
|
|
|
}
|
|
|
@@ -204,8 +196,6 @@ public class UserAccount implements Serializable {
|
|
|
this.password = password;
|
|
|
}
|
|
|
|
|
|
- @JsonIgnore
|
|
|
- @JSONField(serialize = false)
|
|
|
public String getErpPassword() {
|
|
|
return erpPassword;
|
|
|
}
|
|
|
@@ -214,8 +204,6 @@ public class UserAccount implements Serializable {
|
|
|
this.erpPassword = erpPassword;
|
|
|
}
|
|
|
|
|
|
- @JsonIgnore
|
|
|
- @JSONField(serialize = false)
|
|
|
public String getSalt() {
|
|
|
return salt;
|
|
|
}
|