source: Prototype Application/Paw5/src/main/java/finki/paw5/model/Organisation.java@ d427a07

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

add models and enums

  • Property mode set to 100644
File size: 895 bytes
Line 
1package finki.paw5.model;
2
3import jakarta.persistence.Column;
4import jakarta.persistence.Entity;
5import jakarta.persistence.Id;
6import jakarta.persistence.Table;
7import lombok.Data;
8
9@Data
10@Entity
11@Table(name = "organisation")
12public class Organisation {
13
14 @Id
15 @Column(name = "id_organisation")
16 private int id;
17
18 @Column(name = "name_organisation", nullable = false, length = 100)
19 private String name;
20
21 @Column(name = "email_organisation", nullable = false, length = 100, unique = true)
22 private String email;
23
24 @Column(name = "billing_information", nullable = false, length = 20, unique = true)
25 private String billingInformation;
26
27 public Organisation(String name, String email, String billingInformation) {
28 this.name = name;
29 this.email = email;
30 this.billingInformation = billingInformation;
31 }
32
33 public Organisation() {
34 }
35}
Note: See TracBrowser for help on using the repository browser.