source: Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetPreferablyEatsFood.java

main
Last change on this file was c049fd6, checked in by SazdovaEkaterina <sazdovaekaterina@…>, 12 months ago

specify project schema in the backend

  • Property mode set to 100644
File size: 752 bytes
Line 
1package finki.paw5.model.relations;
2
3import jakarta.persistence.*;
4import lombok.Data;
5import lombok.RequiredArgsConstructor;
6
7@Data
8@Entity
9@RequiredArgsConstructor
10@Table(name = "pet_preferably_eats_food", schema = "project")
11@IdClass(PetPreferablyEatsFoodId.class)
12public class PetPreferablyEatsFood {
13
14 @Id
15 @Column(name = "id_pet", nullable = false)
16 private Integer petId;
17
18 @Id
19 @Column(name = "id_food", nullable = false)
20 private Integer foodId;
21
22 @Column(name = "quantity_a_day", nullable = false)
23 private int quantityPerDay;
24
25 public PetPreferablyEatsFood(int petId, int foodId, int quantityPerDay) {
26 this.petId = petId;
27 this.foodId = foodId;
28 this.quantityPerDay = quantityPerDay;
29 }
30}
Note: See TracBrowser for help on using the repository browser.