Last change
on this file since ef84238 was ef84238, checked in by DenicaKj <dkorvezir@…>, 21 months ago |
Interested in event
|
-
Property mode
set to
100644
|
File size:
926 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 |
|
---|
17 | @Entity
|
---|
18 | @Getter
|
---|
19 | @Setter
|
---|
20 | @ToString
|
---|
21 | @RequiredArgsConstructor
|
---|
22 | @Table(name = "`customer_is_interested_in_event`")
|
---|
23 | @IdClass(CustomerIsInterestedInEventId.class)
|
---|
24 | public class CustomerIsInterestedInEvent {
|
---|
25 | @Id
|
---|
26 | @Column(name = "id_customer")
|
---|
27 | Integer idcustomer;
|
---|
28 | @Column(name = "id_event")
|
---|
29 | @Id
|
---|
30 | Integer idevent;
|
---|
31 |
|
---|
32 | public CustomerIsInterestedInEvent(Integer id_customer, Integer id_event) {
|
---|
33 | this.idcustomer = id_customer;
|
---|
34 | this.idevent = id_event;
|
---|
35 | }
|
---|
36 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.