source: src/main/java/com/example/moviezone/model/manytomany/CinemaPlaysFilmId.java

Last change on this file was e2ca67b, checked in by DenicaKj <dkorvezir@…>, 22 months ago

CinemaPlaysFilm and CustomerInterestedInEvent

  • Property mode set to 100644
File size: 209 bytes
RevLine 
[fbec879]1package com.example.moviezone.model.manytomany;
2
[e2ca67b]3import lombok.Data;
4
5import java.io.Serializable;
6
7@Data
8public class CinemaPlaysFilmId implements Serializable {
9 Integer id_cinema;
10 Integer id_film;
[fbec879]11}
Note: See TracBrowser for help on using the repository browser.