Annotation Interface UpdateTimestamp


@Retention(RUNTIME) @Target(FIELD) public @interface UpdateTimestamp
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
 }
 
Since:
1.0
Author:
Blyzhnytsia Team
See Also: