Changeset caf3a07
- Timestamp:
- 02/02/23 15:18:43 (22 months ago)
- Branches:
- master
- Children:
- 69dc561
- Parents:
- 013e0bc
- Location:
- src/main/java/com/example/moviezone/model
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/model/Event.java
r013e0bc rcaf3a07 5 5 import lombok.Setter; 6 6 import lombok.ToString; 7 8 import java.time.LocalDate; 7 9 8 10 @Entity … … 16 18 @GeneratedValue(strategy = GenerationType.IDENTITY) 17 19 Integer id_event; 20 21 String theme; 22 String duration; 23 String repeating; 24 25 LocalDate start_date; 26 18 27 }
Note:
See TracChangeset
for help on using the changeset viewer.