1.0.0-RELEASE

This commit is contained in:
insanity 2017-06-02 16:40:37 +09:00
parent c28c276815
commit abaf887c84

View File

@ -16,6 +16,10 @@ public class Agent implements Serializable {
@Column(name="AUTHORIZED_DATE")
private Long authorizedDate;
@Column(name="DESCRIPTION")
private String description;
public Long getId() {
return id;
}
@ -31,4 +35,12 @@ public class Agent implements Serializable {
public void setAuthorizedDate(Long authorizedDate) {
this.authorizedDate = authorizedDate;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
}