task/3382: Root object DomainObject maps to date_created and last_modified.
This commit is contained in:
parent
b99c2457b4
commit
c37f3f5b66
@ -8,10 +8,10 @@ import java.util.Objects;
|
||||
@MappedSuperclass
|
||||
public abstract class DomainObject implements Serializable {
|
||||
|
||||
@Basic(optional=false)
|
||||
@Column(name = "date_created", nullable = false)
|
||||
private Date dateCreated = new Date();
|
||||
|
||||
@Basic(optional = false)
|
||||
@Column(name = "last_modified", nullable = false)
|
||||
private Date lastModified = new Date();
|
||||
|
||||
@Version
|
||||
|
Loading…
x
Reference in New Issue
Block a user