source: Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsTherapy.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: 538 bytes
RevLine 
[d427a07]1package finki.paw5.model.relations;
2
[4846b7a]3import jakarta.persistence.*;
[d427a07]4import lombok.Data;
5
6@Data
7@Entity
8@Table(name = "pet_needs_therapy")
[4846b7a]9@IdClass(PetNeedsTherapyId.class)
[d427a07]10public class PetNeedsTherapy {
11
12 @Id
13 @Column(name="id_pet", nullable = false)
[ada7108]14 private Integer petId;
[d427a07]15
16 @Id
17 @Column(name="id_therapy", nullable = false)
[ada7108]18 private Integer therapyId;
[d427a07]19
20 public PetNeedsTherapy(int petId, int therapyId) {
21 this.petId = petId;
22 this.therapyId = therapyId;
23 }
24
25 public PetNeedsTherapy() {
26 }
27}
Note: See TracBrowser for help on using the repository browser.