bug fix
This commit is contained in:
@@ -21,9 +21,10 @@ public class Member {
|
||||
@Column(name = "EMAIL", nullable = false, length = 50)
|
||||
private String email;
|
||||
|
||||
@JsonIgnore
|
||||
@Basic
|
||||
@Column(name = "PW", nullable = true, length = 64)
|
||||
private transient String pw;
|
||||
private String pw;
|
||||
|
||||
@Basic
|
||||
@Column(name = "NAME", nullable = true, length = 50)
|
||||
@@ -75,12 +76,10 @@ public class Member {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
public String getPw() {
|
||||
return pw;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
public void setPw(String pw) {
|
||||
this.pw = pw;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user