authroized date property

This commit is contained in:
insanity 2017-06-02 11:57:50 +09:00
parent 84f3182403
commit 8f63be5614

View File

@ -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;
}
}