Changeset ada7108 for Prototype Application/Paw5/src/main
- Timestamp:
- 02/05/23 16:14:44 (21 months ago)
- Branches:
- main
- Children:
- d546868
- Parents:
- 4846b7a
- Location:
- Prototype Application/Paw5/src/main/java/finki/paw5/model
- Files:
-
- 21 edited
Legend:
- Unmodified
- Added
- Removed
-
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Adoption.java
r4846b7a rada7108 15 15 @GeneratedValue(strategy = GenerationType.IDENTITY) 16 16 @Column(name = "id_adoption") 17 private intid;17 private Integer id; 18 18 19 19 @Column(name = "start_date", nullable = false) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Category.java
r4846b7a rada7108 12 12 @GeneratedValue(strategy = GenerationType.IDENTITY) 13 13 @Column(name = "id_category") 14 private intid;14 private Integer id; 15 15 16 16 @Column(name = "name_category", nullable = false, length = 100) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Food.java
r4846b7a rada7108 13 13 @GeneratedValue(strategy = GenerationType.IDENTITY) 14 14 @Column(name = "id_food") 15 private intid;15 private Integer id; 16 16 17 17 @Column(name = "manufacturer", nullable = false, length = 100) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Organisation.java
r4846b7a rada7108 12 12 @GeneratedValue(strategy = GenerationType.IDENTITY) 13 13 @Column(name = "id_organisation") 14 private intid;14 private Integer id; 15 15 16 16 @Column(name = "name_organisation", nullable = false, length = 100) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/PersonalProfile.java
r4846b7a rada7108 15 15 @Id 16 16 @Column(name = "id_pet", nullable = false) 17 private intid;17 private Integer id; 18 18 19 19 @Column(name = "friendly_to_kids", nullable = false) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Pet.java
r4846b7a rada7108 16 16 @GeneratedValue(strategy = GenerationType.IDENTITY) 17 17 @Column(name = "id_pet") 18 private intid;18 private Integer id; 19 19 20 20 @Column(name = "url_pet_image", length = 200) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Post.java
r4846b7a rada7108 15 15 @GeneratedValue(strategy = GenerationType.IDENTITY) 16 16 @Column(name = "id_post") 17 private intid;17 private Integer id; 18 18 19 19 @Column(name="date_post", nullable = false) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Shelter.java
r4846b7a rada7108 12 12 @GeneratedValue(strategy = GenerationType.IDENTITY) 13 13 @Column(name = "id_shelter") 14 private intid;14 private Integer id; 15 15 16 16 @Column(name = "address_shelter", nullable = false, length = 100) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Therapy.java
r4846b7a rada7108 15 15 @GeneratedValue(strategy = GenerationType.IDENTITY) 16 16 @Column(name = "id_therapy") 17 private intid;17 private Integer id; 18 18 19 19 @Column(name = "health_problem", nullable = false, length = 100) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/User.java
r4846b7a rada7108 16 16 @GeneratedValue(strategy = GenerationType.IDENTITY) 17 17 @Column(name = "id_user") 18 protected intid;18 protected Integer id; 19 19 20 20 @Column(name = "date_created_user", nullable = false) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/VetClinic.java
r4846b7a rada7108 12 12 @GeneratedValue(strategy = GenerationType.IDENTITY) 13 13 @Column(name = "id_vet_clinic") 14 private intid;14 private Integer id; 15 15 16 16 @Column(name = "telephone_vet_clinic", nullable = false, length = 20) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/DonorDonatesToOrganisation.java
r4846b7a rada7108 12 12 @Id 13 13 @Column(name="id_user", nullable = false) 14 private intuserId;14 private Integer userId; 15 15 16 16 @Id 17 17 @Column(name="id_organisation", nullable = false) 18 private intorganisationId;18 private Integer organisationId; 19 19 20 20 public DonorDonatesToOrganisation(int userId, int organisationId) { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/DonorDonatesToOrganisationId.java
r4846b7a rada7108 8 8 public class DonorDonatesToOrganisationId implements Serializable { 9 9 10 intuserId;11 intorganisationId;10 Integer userId; 11 Integer organisationId; 12 12 13 13 } -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetBelongsToCategory.java
r4846b7a rada7108 12 12 @Id 13 13 @Column(name="id_pet", nullable = false) 14 private intpetId;14 private Integer petId; 15 15 16 16 @Id 17 17 @Column(name="id_category", nullable = false) 18 private intcategoryId;18 private Integer categoryId; 19 19 20 20 public PetBelongsToCategory(int petId, int categoryId) { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetBelongsToCategoryId.java
r4846b7a rada7108 8 8 public class PetBelongsToCategoryId implements Serializable { 9 9 10 intpetId;11 intcategoryId;10 Integer petId; 11 Integer categoryId; 12 12 13 13 } -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsInterventionInVetClinic.java
r4846b7a rada7108 15 15 @Id 16 16 @Column(name = "id_pet", nullable = false) 17 private intpetId;17 private Integer petId; 18 18 19 19 @Id 20 20 @Column(name = "id_vet_clinic", nullable = false) 21 private intvetClinicId;21 private Integer vetClinicId; 22 22 23 23 @Column(name = "date_of_interventing", nullable = false) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsInterventionInVetClinicId.java
r4846b7a rada7108 8 8 public class PetNeedsInterventionInVetClinicId implements Serializable { 9 9 10 intpetId;11 intvetClinicId;10 Integer petId; 11 Integer vetClinicId; 12 12 13 13 } -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsTherapy.java
r4846b7a rada7108 12 12 @Id 13 13 @Column(name="id_pet", nullable = false) 14 private intpetId;14 private Integer petId; 15 15 16 16 @Id 17 17 @Column(name="id_therapy", nullable = false) 18 private inttherapyId;18 private Integer therapyId; 19 19 20 20 public PetNeedsTherapy(int petId, int therapyId) { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsTherapyId.java
r4846b7a rada7108 8 8 public class PetNeedsTherapyId implements Serializable { 9 9 10 intpetId;11 inttherapyId;10 Integer petId; 11 Integer therapyId; 12 12 13 13 } -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetPreferablyEatsFood.java
r4846b7a rada7108 12 12 @Id 13 13 @Column(name = "id_pet", nullable = false) 14 private intpetId;14 private Integer petId; 15 15 16 16 @Id 17 17 @Column(name = "id_food", nullable = false) 18 private intfoodId;18 private Integer foodId; 19 19 20 20 @Column(name = "quantity_a_day", nullable = false) -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetPreferablyEatsFoodId.java
r4846b7a rada7108 8 8 public class PetPreferablyEatsFoodId implements Serializable { 9 9 10 private intpetId;11 private intfoodId;10 private Integer petId; 11 private Integer foodId; 12 12 13 13 }
Note:
See TracChangeset
for help on using the changeset viewer.