Browse Source

--add property authentication;

zzy.zhiyuan.foxmail 8 years ago
parent
commit
571cb6454f
1 changed files with 7 additions and 0 deletions
  1. 7 0
      src/main/java/com/ekexiu/portal/pojo/SessionUser.java

+ 7 - 0
src/main/java/com/ekexiu/portal/pojo/SessionUser.java

@ -8,6 +8,7 @@ public class SessionUser {
8 8
	private String email;
9 9
	private String mobilePhone;
10 10
	private String name;
11
	private String authentication;
11 12
	private String authStatus;
12 13
	
13 14
	public String getName() {
@ -46,6 +47,12 @@ public class SessionUser {
46 47
	public void setMobilePhone(String mobilePhone) {
47 48
		this.mobilePhone = mobilePhone;
48 49
	}
50
	public String getAuthentication() {
51
		return authentication;
52
	}
53
	public void setAuthentication(String authentication) {
54
		this.authentication = authentication;
55
	}
49 56
	public String getAuthStatus() {
50 57
		return authStatus;
51 58
	}