Changeset 4d78603
- Timestamp:
- 02/05/23 18:46:45 (21 months ago)
- Branches:
- main
- Children:
- 486054e
- Parents:
- e294983 (diff), 65f9c71 (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. - Location:
- Prototype Application/Paw5/src/main/java/finki/paw5/repository
- Files:
-
- 20 added
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Prototype Application/Paw5/src/main/java/finki/paw5/repository/PetRepository.java
re294983 r4d78603 5 5 @Repository 6 6 public interface PetRepository { 7 import finki.paw5.model.entities.Pet; 8 import org.springframework.data.jpa.repository.JpaRepository; 9 import org.springframework.stereotype.Repository; 10 11 @Repository 12 public interface PetRepository extends JpaRepository<Pet, Integer> { 7 13 }
Note:
See TracChangeset
for help on using the changeset viewer.