- Timestamp:
- 05/05/25 12:37:27 (12 days ago)
- Branches:
- main
- Children:
- b67dfd3
- Parents:
- c44c5ed
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/rezevirajmasa/demo/model/TableEntity.java
rc44c5ed r142c0f8 50 50 @OneToMany(mappedBy = "table", cascade = CascadeType.ALL, fetch = FetchType.LAZY) 51 51 @JsonIgnore 52 private List<Reservation> reservations = new ArrayList<>(); // Store reservations, not time slots52 private List<Reservation> reservations = new ArrayList<>(); 53 53 54 54 public void cleanUnusedTimeSlots(LocalDate threeDaysAgo) {
Note:
See TracChangeset
for help on using the changeset viewer.