- Timestamp:
- 02/02/23 15:39:19 (22 months ago)
- Branches:
- master
- Children:
- 428c8a4
- Parents:
- e2ca67b
- Location:
- src/main/java/com/example/moviezone/model/manytomany
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/model/manytomany/CinemaPlaysFilm.java
re2ca67b rd59ae27 1 1 package com.example.moviezone.model.manytomany; 2 <<<<<<< Updated upstream 2 3 4 ======= 5 >>>>>>> Stashed changes 3 6 import jakarta.persistence.*; 4 7 import lombok.Getter; … … 12 15 @ToString 13 16 @RequiredArgsConstructor 17 <<<<<<< Updated upstream 14 18 @Table(name = "`cinema_plays_film`") 19 ======= 20 @Table(name = "cinema_plays_film") 21 >>>>>>> Stashed changes 15 22 @IdClass(CinemaPlaysFilmId.class) 16 23 public class CinemaPlaysFilm { … … 18 25 @Column(name = "id_cinema") 19 26 Integer id_cinema; 27 <<<<<<< Updated upstream 20 28 @Column(name = "id_film") 21 29 @Id 30 ======= 31 32 @Id 33 @Column(name = "id_film") 34 >>>>>>> Stashed changes 22 35 Integer id_film; 23 36 } -
src/main/java/com/example/moviezone/model/manytomany/CustomerIsInterestedInEventId.java
re2ca67b rd59ae27 9 9 Integer id_customer; 10 10 Integer id_event; 11 11 12 12 } -
src/main/java/com/example/moviezone/model/manytomany/CustomerRatesFilmId.java
re2ca67b rd59ae27 3 3 import lombok.Data; 4 4 5 import java.io.Serializable; 6 5 7 @Data 6 public class CustomerRatesFilmId {8 public class CustomerRatesFilmId implements Serializable { 7 9 Integer id_customer; 8 10 Integer id_film; -
src/main/java/com/example/moviezone/model/manytomany/ProjectionIsPlayedInRoomId.java
re2ca67b rd59ae27 3 3 import lombok.Data; 4 4 5 import java.io.Serializable; 6 5 7 @Data 6 public class ProjectionIsPlayedInRoomId {8 public class ProjectionIsPlayedInRoomId implements Serializable { 7 9 Integer id_projection; 8 10 Integer id_room;
Note:
See TracChangeset
for help on using the changeset viewer.