Update src/main/java/com/example/nto/repository/PlaceRepository.java

This commit is contained in:
2025-12-08 12:05:23 +00:00
parent f8a1da5df9
commit 2e2dc5cd1f

View File

@@ -1,10 +1,10 @@
package com.example.nto.repository;
/**
* TODO: ДОРАБОТАТЬ в рамках задания
* =================================
* МОЖНО: Добавлять методы, аннотации, зависимости
* НЕЛЬЗЯ: Изменять название класса и пакета
*/
public interface PlaceRepository {
import com.example.nto.entity.Place;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface PlaceRepository extends JpaRepository<Place, Long> {
}