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

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

required args constructor

  • Property mode set to 100644
File size: 732 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")
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.