Fix documentation.

Original Pull Request #1786
Closes #1785

(cherry picked from commit 8b7f0f8327a30f0c3017d500564344a8bce8a0b2)
This commit is contained in:
Peter-Josef Meisch 2021-04-23 09:38:05 +02:00
parent 352e74248a
commit 461d70e173
No known key found for this signature in database
GPG Key ID: DE108246970C7708

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() { // <.>