Changeset 30ab9cc for Prototype Application/Paw5
- Timestamp:
- 06/23/23 17:40:28 (17 months ago)
- Branches:
- main
- Parents:
- e4e8212 (diff), c049fd6 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Ekaterina Sazdova <74919977+SazdovaEkaterina@…> (06/23/23 17:40:28)
- git-committer:
- GitHub <noreply@…> (06/23/23 17:40:28)
- 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/Admin.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "admin_table" )12 @Table(name = "admin_table", schema = "project") 13 13 @PrimaryKeyJoinColumn(name = "id_user") 14 14 public class Admin extends User { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Adopter.java
re4e8212 r30ab9cc 13 13 @Data 14 14 @Entity 15 @Table(name = "adopter" )15 @Table(name = "adopter", schema = "project") 16 16 @RequiredArgsConstructor 17 17 @PrimaryKeyJoinColumn(name = "id_user") -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Adoption.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "adoption" )12 @Table(name = "adoption", schema = "project") 13 13 public class Adoption { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Category.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "category" )12 @Table(name = "category", schema = "project") 13 13 public class Category { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Donor.java
re4e8212 r30ab9cc 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "donor" )13 @Table(name = "donor", schema = "project") 14 14 @PrimaryKeyJoinColumn(name = "id_user") 15 15 public class Donor extends User { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Employee.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "employee" )12 @Table(name = "employee", schema = "project") 13 13 @PrimaryKeyJoinColumn(name = "id_user") 14 14 public class Employee extends User { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Food.java
re4e8212 r30ab9cc 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "food" )13 @Table(name = "food", schema = "project") 14 14 public class Food { 15 15 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Organisation.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "organisation" )12 @Table(name = "organisation", schema = "project") 13 13 public class Organisation { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/PersonalProfile.java
re4e8212 r30ab9cc 9 9 @Entity 10 10 @RequiredArgsConstructor 11 @Table(name = "personal_profile" )11 @Table(name = "personal_profile", schema = "project") 12 12 public class PersonalProfile { 13 13 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Pet.java
re4e8212 r30ab9cc 14 14 @Entity 15 15 @RequiredArgsConstructor 16 @Table(name = "pet" )16 @Table(name = "pet", schema = "project") 17 17 public class Pet { 18 18 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Post.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "post" )12 @Table(name = "post", schema = "project") 13 13 public class Post { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Shelter.java
re4e8212 r30ab9cc 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "shelter" )10 @Table(name = "shelter", schema = "project") 11 11 public class Shelter { 12 12 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Surendee.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "surendee" )12 @Table(name = "surendee", schema = "project") 13 13 @PrimaryKeyJoinColumn(name = "id_user") 14 14 public class Surendee extends User { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Therapy.java
re4e8212 r30ab9cc 12 12 @Entity 13 13 @RequiredArgsConstructor 14 @Table(name = "therapy" )14 @Table(name = "therapy", schema = "project") 15 15 public class Therapy { 16 16 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/User.java
re4e8212 r30ab9cc 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "user_table" )13 @Table(name = "user_table", schema = "project") 14 14 @Inheritance(strategy = InheritanceType.JOINED) 15 15 public class User { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/VetClinic.java
re4e8212 r30ab9cc 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "vet_clinic" )12 @Table(name = "vet_clinic", schema = "project") 13 13 public class VetClinic { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/DonorDonatesToOrganisation.java
re4e8212 r30ab9cc 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "donor_donates_to_organisation" )10 @Table(name = "donor_donates_to_organisation", schema = "project") 11 11 @IdClass(DonorDonatesToOrganisationId.class) 12 12 public class DonorDonatesToOrganisation { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetBelongsToCategory.java
re4e8212 r30ab9cc 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "pet_belongs_to_category" )10 @Table(name = "pet_belongs_to_category", schema = "project") 11 11 @IdClass(PetBelongsToCategoryId.class) 12 12 public class PetBelongsToCategory { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsInterventionInVetClinic.java
re4e8212 r30ab9cc 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "pet_needs_intervention_in_vet_clinic" )13 @Table(name = "pet_needs_intervention_in_vet_clinic", schema = "project") 14 14 @IdClass(PetNeedsInterventionInVetClinicId.class) 15 15 public class PetNeedsInterventionInVetClinic { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsTherapy.java
re4e8212 r30ab9cc 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "pet_needs_therapy" )10 @Table(name = "pet_needs_therapy", schema = "project") 11 11 @IdClass(PetNeedsTherapyId.class) 12 12 public class PetNeedsTherapy { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetPreferablyEatsFood.java
re4e8212 r30ab9cc 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "pet_preferably_eats_food" )10 @Table(name = "pet_preferably_eats_food", schema = "project") 11 11 @IdClass(PetPreferablyEatsFoodId.class) 12 12 public class PetPreferablyEatsFood {
Note:
See TracChangeset
for help on using the changeset viewer.