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