member insert
This commit is contained in:
parent
e10599a50c
commit
91f96bba33
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -47,7 +47,7 @@ $RECYCLE.BIN/
|
||||||
.idea/**/usage.statistics.xml
|
.idea/**/usage.statistics.xml
|
||||||
.idea/**/dictionaries
|
.idea/**/dictionaries
|
||||||
.idea/**/shelf
|
.idea/**/shelf
|
||||||
|
*.iml
|
||||||
# Generated files
|
# Generated files
|
||||||
.idea/**/contentModel.xml
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
package com.loafle.totopia.member.model;
|
package com.loafle.totopia.member.model;
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||||
|
|
||||||
import javax.persistence.*;
|
import javax.persistence.*;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
|
@ -66,6 +68,7 @@ public class Member {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Basic
|
@Basic
|
||||||
|
@JsonIgnore
|
||||||
@Column(name = "password", nullable = false, length = 60)
|
@Column(name = "password", nullable = false, length = 60)
|
||||||
public String getPassword() {
|
public String getPassword() {
|
||||||
return password;
|
return password;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user