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

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

many to many ids

  • Property mode set to 100644
File size: 159 bytes
Line 
1package com.example.moviezone.model.manytomany;
2
3import lombok.Data;
4
5@Data
6public class CustomerRatesFilmId {
7 Integer id_customer;
8 Integer id_film;
9}
Note: See TracBrowser for help on using the repository browser.