Indicates that the annotated field represents a timestamp that should be updated automatically upon entity modification.
public class ExampleEntity {
@UpdateTimestamp
private LocalDateTime updatedAt;
// Getter and setter methods
}
Indicates that the annotated field represents a timestamp that should be updated automatically upon entity modification.
public class ExampleEntity {
@UpdateTimestamp
private LocalDateTime updatedAt;
// Getter and setter methods
}