Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 474 Bytes

UpdateTimestamp.md

File metadata and controls

20 lines (14 loc) · 474 Bytes

UpdateTimestamp Annotation

Indicates that the annotated field represents a timestamp that should be updated automatically upon entity modification.

Example usage:

public class ExampleEntity {
    @UpdateTimestamp
    private LocalDateTime updatedAt;

    // Getter and setter methods
}

See Also