authroized date property
This commit is contained in:
@@ -34,6 +34,10 @@ public class Member implements Serializable {
|
||||
@Column(name="PHONE")
|
||||
private String phone;
|
||||
|
||||
@Column(name="AUTHORIZED_DATE")
|
||||
private Long authorizedDate;
|
||||
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
}
|
||||
@@ -90,4 +94,11 @@ public class Member implements Serializable {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
public Long getAuthorizedDate() {
|
||||
return authorizedDate;
|
||||
}
|
||||
|
||||
public void setAuthorizedDate(Long authorizedDate) {
|
||||
this.authorizedDate = authorizedDate;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user