source: src/main/java/com/example/moviezone/model/Projection.java@ e68190f

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

Update to Projection

  • Property mode set to 100644
File size: 601 bytes
Line 
1package com.example.moviezone.model;
2
3
4import jakarta.persistence.*;
5import lombok.Getter;
6import lombok.Setter;
7import lombok.ToString;
8
9import java.time.LocalDate;
10
11@Getter
12@Setter
13@ToString
14@Entity
15@Table(name = "projections")
16public class Projection {
17 @Id
18 @Column(name = "id_projection", nullable = false)
19 @GeneratedValue(strategy = GenerationType.IDENTITY)
20 private Long id_projection;
21
22 LocalDate date_time_start;
23 String type_of_technology;
24 LocalDate date_time_end;
25 @ManyToOne
26 Film film;
27 @ManyToOne
28 Event event;
29 @ManyToOne
30 Discount discount;
31
32}
Note: See TracBrowser for help on using the repository browser.