source: Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsTherapy.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: 601 bytes
Line 
1package finki.paw5.model.relations;
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 = "pet_needs_therapy")
12public class PetNeedsTherapy {
13
14 @Id
15 @Column(name="id_pet", nullable = false)
16 private int petId;
17
18 @Id
19 @Column(name="id_therapy", nullable = false)
20 private int therapyId;
21
22 public PetNeedsTherapy(int petId, int therapyId) {
23 this.petId = petId;
24 this.therapyId = therapyId;
25 }
26
27 public PetNeedsTherapy() {
28 }
29}
Note: See TracBrowser for help on using the repository browser.