source: Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetPreferablyEatsFoodId.java@ 4846b7a

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

fix composite keys

  • Property mode set to 100644
File size: 208 bytes
Line 
1package finki.paw5.model.relations;
2
3import lombok.Data;
4
5import java.io.Serializable;
6
7@Data
8public class PetPreferablyEatsFoodId implements Serializable {
9
10 private int petId;
11 private int foodId;
12
13}
Note: See TracBrowser for help on using the repository browser.