Skip to content

Commit

Permalink
Rm : 移除MemRole#psw登陆密码字段
Browse files Browse the repository at this point in the history
  • Loading branch information
TinyZzh committed Jul 20, 2016
1 parent da6c9b9 commit 3a0ec49
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public class MemRole implements Serializable {
private String account; // 登陆账号
private String name; // 昵称
private Integer figure; // 头像
private String psw; // 登陆密码
private Long timeCreate; // 创建账号时间 时间戳(毫秒)
private Long timeLastLogin; // 最后一次登录时间 时间戳(毫秒)
private String ipCreate; // 创建IP
Expand Down Expand Up @@ -65,14 +64,6 @@ public void setFigure(Integer figure) {
this.figure = figure;
}

public String getPsw() {
return psw;
}

public void setPsw(String psw) {
this.psw = psw;
}

public Long getTimeCreate() {
return timeCreate;
}
Expand Down

0 comments on commit 3a0ec49

Please sign in to comment.