- Timestamp:
- 03/13/23 00:58:07 (20 months ago)
- Branches:
- master
- Children:
- 9050790
- Parents:
- 2b0a4db
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/edu/gjoko/schedlr/entity/Appointment.java
r2b0a4db r46fd0c7 5 5 import lombok.NoArgsConstructor; 6 6 import lombok.Setter; 7 import org.springframework.data.annotation.LastModifiedDate; 8 import org.springframework.data.jpa.domain.support.AuditingEntityListener; 7 9 8 10 import javax.persistence.*; … … 10 12 11 13 @Entity 14 @EntityListeners(AuditingEntityListener.class) 12 15 @Table(name = "appointment") 13 16 @Getter … … 31 34 32 35 @Column(name = "created") 36 @LastModifiedDate 33 37 private LocalDateTime created; 34 38 35 39 @Column(name = "modified") 40 @LastModifiedDate 36 41 private LocalDateTime modified; 37 42 }
Note:
See TracChangeset
for help on using the changeset viewer.