source: src/main/java/com/example/moviezone/model/Event.java@ 693f587

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

home controller added mappings for add new film, event and projection

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