1.0.0-RELEASE
This commit is contained in:
parent
c28c276815
commit
abaf887c84
|
@ -16,6 +16,10 @@ public class Agent implements Serializable {
|
||||||
@Column(name="AUTHORIZED_DATE")
|
@Column(name="AUTHORIZED_DATE")
|
||||||
private Long authorizedDate;
|
private Long authorizedDate;
|
||||||
|
|
||||||
|
@Column(name="DESCRIPTION")
|
||||||
|
private String description;
|
||||||
|
|
||||||
|
|
||||||
public Long getId() {
|
public Long getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
@ -31,4 +35,12 @@ public class Agent implements Serializable {
|
||||||
public void setAuthorizedDate(Long authorizedDate) {
|
public void setAuthorizedDate(Long authorizedDate) {
|
||||||
this.authorizedDate = authorizedDate;
|
this.authorizedDate = authorizedDate;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getDescription() {
|
||||||
|
return description;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDescription(String description) {
|
||||||
|
this.description = description;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user