회원관리 관리 수정
This commit is contained in:
@@ -73,4 +73,14 @@ public class MemberEntity {
|
||||
@ColumnDefault("now()")
|
||||
@Column(name = "updated_dttm")
|
||||
private ZonedDateTime updatedDttm = ZonedDateTime.now();
|
||||
|
||||
@Column(name = "first_login_dttm")
|
||||
private ZonedDateTime firstLoginDttm;
|
||||
|
||||
@Column(name = "last_login_dttm")
|
||||
private ZonedDateTime lastLoginDttm;
|
||||
|
||||
@Column(name = "login_fail_count")
|
||||
@ColumnDefault("0")
|
||||
private Integer loginFailCount = 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user