source: src/main/java/com/example/moviezone/model/Film.java@ 6626008

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

added models

  • Property mode set to 100644
File size: 507 bytes
Line 
1package com.example.moviezone.model;
2
3import jakarta.persistence.*;
4import lombok.Getter;
5import lombok.Setter;
6import lombok.ToString;
7
8import java.time.LocalDate;
9
10@Entity
11@Getter
12@Setter
13@ToString
14@Table(name = "films")
15public class Film {
16
17 @Id
18 @GeneratedValue(strategy = GenerationType.IDENTITY)
19 Integer id_film;
20
21 String name;
22 Integer duration;
23 String actors;
24 String genre;
25 String age_category;
26
27 String director;
28 LocalDate start_date;
29 LocalDate end_date;
30
31
32}
Note: See TracBrowser for help on using the repository browser.