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

main
Last change on this file since ada7108 was ada7108, checked in by Filip Chorbeski <86695898+FilipChorbeski@…>, 17 months ago

change ids from int to Integer

Co-Authored-By: SazdovaEkaterina <74919977+SazdovaEkaterina@…>

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