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

Last change on this file was d59ae27, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago

many to many models

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