Changes in / [30ab9cc:e4e8212]
- 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
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "admin_table" , schema = "project")12 @Table(name = "admin_table") 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
r30ab9cc re4e8212 13 13 @Data 14 14 @Entity 15 @Table(name = "adopter" , schema = "project")15 @Table(name = "adopter") 16 16 @RequiredArgsConstructor 17 17 @PrimaryKeyJoinColumn(name = "id_user") -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Adoption.java
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "adoption" , schema = "project")12 @Table(name = "adoption") 13 13 public class Adoption { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Category.java
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "category" , schema = "project")12 @Table(name = "category") 13 13 public class Category { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Donor.java
r30ab9cc re4e8212 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "donor" , schema = "project")13 @Table(name = "donor") 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
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "employee" , schema = "project")12 @Table(name = "employee") 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
r30ab9cc re4e8212 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "food" , schema = "project")13 @Table(name = "food") 14 14 public class Food { 15 15 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Organisation.java
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "organisation" , schema = "project")12 @Table(name = "organisation") 13 13 public class Organisation { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/PersonalProfile.java
r30ab9cc re4e8212 9 9 @Entity 10 10 @RequiredArgsConstructor 11 @Table(name = "personal_profile" , schema = "project")11 @Table(name = "personal_profile") 12 12 public class PersonalProfile { 13 13 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Pet.java
r30ab9cc re4e8212 14 14 @Entity 15 15 @RequiredArgsConstructor 16 @Table(name = "pet" , schema = "project")16 @Table(name = "pet") 17 17 public class Pet { 18 18 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Post.java
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "post" , schema = "project")12 @Table(name = "post") 13 13 public class Post { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Shelter.java
r30ab9cc re4e8212 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "shelter" , schema = "project")10 @Table(name = "shelter") 11 11 public class Shelter { 12 12 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/Surendee.java
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "surendee" , schema = "project")12 @Table(name = "surendee") 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
r30ab9cc re4e8212 12 12 @Entity 13 13 @RequiredArgsConstructor 14 @Table(name = "therapy" , schema = "project")14 @Table(name = "therapy") 15 15 public class Therapy { 16 16 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/User.java
r30ab9cc re4e8212 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "user_table" , schema = "project")13 @Table(name = "user_table") 14 14 @Inheritance(strategy = InheritanceType.JOINED) 15 15 public class User { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/entities/VetClinic.java
r30ab9cc re4e8212 10 10 @Entity 11 11 @RequiredArgsConstructor 12 @Table(name = "vet_clinic" , schema = "project")12 @Table(name = "vet_clinic") 13 13 public class VetClinic { 14 14 -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/DonorDonatesToOrganisation.java
r30ab9cc re4e8212 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "donor_donates_to_organisation" , schema = "project")10 @Table(name = "donor_donates_to_organisation") 11 11 @IdClass(DonorDonatesToOrganisationId.class) 12 12 public class DonorDonatesToOrganisation { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetBelongsToCategory.java
r30ab9cc re4e8212 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "pet_belongs_to_category" , schema = "project")10 @Table(name = "pet_belongs_to_category") 11 11 @IdClass(PetBelongsToCategoryId.class) 12 12 public class PetBelongsToCategory { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsInterventionInVetClinic.java
r30ab9cc re4e8212 11 11 @Entity 12 12 @RequiredArgsConstructor 13 @Table(name = "pet_needs_intervention_in_vet_clinic" , schema = "project")13 @Table(name = "pet_needs_intervention_in_vet_clinic") 14 14 @IdClass(PetNeedsInterventionInVetClinicId.class) 15 15 public class PetNeedsInterventionInVetClinic { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetNeedsTherapy.java
r30ab9cc re4e8212 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "pet_needs_therapy" , schema = "project")10 @Table(name = "pet_needs_therapy") 11 11 @IdClass(PetNeedsTherapyId.class) 12 12 public class PetNeedsTherapy { -
Prototype Application/Paw5/src/main/java/finki/paw5/model/relations/PetPreferablyEatsFood.java
r30ab9cc re4e8212 8 8 @Entity 9 9 @RequiredArgsConstructor 10 @Table(name = "pet_preferably_eats_food" , schema = "project")10 @Table(name = "pet_preferably_eats_food") 11 11 @IdClass(PetPreferablyEatsFoodId.class) 12 12 public class PetPreferablyEatsFood {
Note:
See TracChangeset
for help on using the changeset viewer.