Last change
on this file since 608fefef was a073dad, checked in by milamihajlovska <mila.mihajlovska01@…>, 22 months ago |
html for addEvent, addFilm and addProjection
|
-
Property mode
set to
100644
|
File size:
685 bytes
|
Line | |
---|
1 | package com.example.moviezone.model;
|
---|
2 |
|
---|
3 | import lombok.Getter;
|
---|
4 | import lombok.Setter;
|
---|
5 | import lombok.ToString;
|
---|
6 |
|
---|
7 | import javax.persistence.*;
|
---|
8 |
|
---|
9 |
|
---|
10 | import java.time.LocalDate;
|
---|
11 |
|
---|
12 | @Entity
|
---|
13 | @Getter
|
---|
14 | @Setter
|
---|
15 | @ToString
|
---|
16 | @Table(name = "events")
|
---|
17 | public 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 |
|
---|
36 | public Event() {
|
---|
37 |
|
---|
38 | }
|
---|
39 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.