Fix documentation.

Original Pull Request #1786
Closes #1785

(cherry picked from commit 8b7f0f8327)
This commit is contained in:
Peter-Josef Meisch
2021-04-23 09:38:05 +02:00
parent 352e74248a
commit 461d70e173

View File

@@ -30,11 +30,15 @@ public class Person implements Persistable<Long> {
@Id private Long id;
private String lastName;
private String firstName;
@CreatedDate
@Field(type = FieldType.Date, format = DateFormat.basic_date_time)
private Instant createdDate;
@CreatedBy
private String createdBy
@Field(type = FieldType.Date, format = DateFormat.basic_date_time)
@LastModifiedDate
private Instant lastModifiedDate;
@LastModifiedBy
private String lastModifiedBy;
public Long getId() { // <.>