source: Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetPreferablyEatsFood.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: 769 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_preferably_eats_food")
12public class PetPreferablyEatsFood {
13
14 @Id
15 @Column(name = "id_pet", nullable = false)
16 private int petId;
17
18 @Id
19 @Column(name = "id_food", nullable = false)
20 private int 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
31 public PetPreferablyEatsFood() {
32 }
33}
Note: See TracBrowser for help on using the repository browser.