Last change
on this file since 2269653 was 2269653, checked in by DenicaKj <dkorvezir@…>, 22 months ago |
First Run No error
|
-
Property mode
set to
100644
|
File size:
760 bytes
|
Line | |
---|
1 | package com.example.moviezone.model.manytomany;
|
---|
2 |
|
---|
3 | import lombok.Getter;
|
---|
4 | import lombok.RequiredArgsConstructor;
|
---|
5 | import lombok.Setter;
|
---|
6 | import lombok.ToString;
|
---|
7 | import org.springframework.security.core.GrantedAuthority;
|
---|
8 | import org.springframework.security.core.userdetails.UserDetails;
|
---|
9 |
|
---|
10 | import javax.management.relation.Role;
|
---|
11 | import javax.persistence.*;
|
---|
12 | import java.time.LocalDate;
|
---|
13 | import java.time.LocalDateTime;
|
---|
14 | import java.util.Collection;
|
---|
15 |
|
---|
16 | @Entity
|
---|
17 | @Getter
|
---|
18 | @Setter
|
---|
19 | @ToString
|
---|
20 | @RequiredArgsConstructor
|
---|
21 | @Table(name = "projection_is_played_in_room")
|
---|
22 | @IdClass(ProjectionIsPlayedInRoomId.class)
|
---|
23 | public class ProjectionIsPlayedInRoom {
|
---|
24 | @Id
|
---|
25 | @Column(name ="id_projection")
|
---|
26 | Integer id_projection;
|
---|
27 |
|
---|
28 | @Id
|
---|
29 | @Column(name ="id_room")
|
---|
30 | Integer id_room;
|
---|
31 |
|
---|
32 |
|
---|
33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.