- Timestamp:
- 08/24/23 02:28:14 (15 months ago)
- Branches:
- master
- Children:
- bcb4acc
- Parents:
- 40935d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/model/Projection.java
r40935d3 r1e7126f 8 8 9 9 import java.time.LocalDate; 10 import java.time.LocalDateTime; 10 11 11 12 @Getter … … 20 21 Integer id_projection; 21 22 22 LocalDate date_time_start;23 LocalDateTime date_time_start; 23 24 String type_of_technology; 24 LocalDate date_time_end;25 LocalDateTime date_time_end; 25 26 @ManyToOne 26 27 @JoinColumn(name = "id_film") … … 33 34 Discount discount; 34 35 35 public Projection(LocalDate date_time_start, String type_of_technology, LocalDate date_time_end, Film film) {36 public Projection(LocalDateTime date_time_start, String type_of_technology, LocalDateTime date_time_end, Film film, Discount discount) { 36 37 this.date_time_start = date_time_start; 37 38 this.type_of_technology = type_of_technology; 38 39 this.date_time_end = date_time_end; 39 40 this.film = film; 41 this.discount = discount; 40 42 } 41 43
Note:
See TracChangeset
for help on using the changeset viewer.