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
	private String email;
8
	private String email;
9
	private String mobilePhone;
9
	private String mobilePhone;
10
	private String name;
10
	private String name;
11
	private String authentication;
11
	private String authStatus;
12
	private String authStatus;
12
	
13
	
13
	public String getName() {
14
	public String getName() {
46
	public void setMobilePhone(String mobilePhone) {
47
	public void setMobilePhone(String mobilePhone) {
47
		this.mobilePhone = mobilePhone;
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
	public String getAuthStatus() {
56
	public String getAuthStatus() {
50
		return authStatus;
57
		return authStatus;
51
	}
58
	}