source: Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Shelter.java@ fdd7961

main
Last change on this file since fdd7961 was fdd7961, checked in by SazdovaEkaterina <sazdovaekaterina@…>, 16 months ago

fix many to one relations

  • Property mode set to 100644
File size: 1.1 KB
Line 
1package finki.paw5.model.entities;
2
3import jakarta.persistence.*;
4import lombok.Data;
5import lombok.RequiredArgsConstructor;
6
7@Data
8@Entity
9@RequiredArgsConstructor
10@Table(name = "shelter")
11public class Shelter {
12
13 @Id
14 @GeneratedValue(strategy = GenerationType.IDENTITY)
15 @Column(name = "id_shelter")
16 private Integer id;
17
18 @Column(name = "address_shelter", nullable = false, length = 100)
19 private String address;
20
21 @Column(name = "telephone_shelter", nullable = false, length = 20)
22 private String telephone;
23
24 @ManyToOne
25 @JoinColumn(name = "id_organisation")
26 private Organisation organisation;
27
28 @Column(name = "name_shelter", nullable = false, length = 100)
29 private String name;
30
31 @Column(name = "email_shelter", nullable = false, length = 100, unique = true)
32 private String email;
33
34 public Shelter(String address, String telephone, Organisation organisation,
35 String name, String email) {
36 this.address = address;
37 this.telephone = telephone;
38 this.organisation = organisation;
39 this.name = name;
40 this.email = email;
41 }
42}
Note: See TracBrowser for help on using the repository browser.