- Timestamp:
- 02/02/23 15:36:16 (22 months ago)
- Branches:
- master
- Children:
- d59ae27
- Parents:
- bf30494
- Location:
- src/main/java/com/example/moviezone/model/manytomany
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/com/example/moviezone/model/manytomany/CinemaPlaysFilmId.java
rbf30494 re2ca67b 1 1 package com.example.moviezone.model.manytomany; 2 2 3 public class CinemaPlaysFilmId { 3 import lombok.Data; 4 5 import java.io.Serializable; 6 7 @Data 8 public class CinemaPlaysFilmId implements Serializable { 9 Integer id_cinema; 10 Integer id_film; 4 11 } -
src/main/java/com/example/moviezone/model/manytomany/CustomerIsInterestedInEventId.java
rbf30494 re2ca67b 3 3 import lombok.Data; 4 4 5 import java.io.Serializable; 6 5 7 @Data 6 public class CustomerIsInterestedInEventId {8 public class CustomerIsInterestedInEventId implements Serializable { 7 9 Integer id_customer; 8 10 Integer id_event;
Note:
See TracChangeset
for help on using the changeset viewer.