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:
647 bytes
|
Line | |
---|
1 | package com.example.moviezone.model;
|
---|
2 |
|
---|
3 | import lombok.Getter;
|
---|
4 | import lombok.Setter;
|
---|
5 | import lombok.ToString;
|
---|
6 | import org.springframework.security.core.GrantedAuthority;
|
---|
7 | import org.springframework.security.core.userdetails.UserDetails;
|
---|
8 |
|
---|
9 | import javax.management.relation.Role;
|
---|
10 | import javax.persistence.*;
|
---|
11 | import java.time.LocalDate;
|
---|
12 | import java.time.LocalDateTime;
|
---|
13 | import java.util.Collection;
|
---|
14 |
|
---|
15 |
|
---|
16 | @Entity
|
---|
17 | @Getter
|
---|
18 | @Setter
|
---|
19 | @ToString
|
---|
20 | @Table(name = "discounts")
|
---|
21 | public class Discount {
|
---|
22 | @Id
|
---|
23 | @GeneratedValue(strategy = GenerationType.IDENTITY)
|
---|
24 | Integer id_discount;
|
---|
25 |
|
---|
26 | LocalDate validity;
|
---|
27 |
|
---|
28 | String code;
|
---|
29 | String type;
|
---|
30 | Integer percent;
|
---|
31 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.