/
toster
/
CinemaAPI
Обзор
Документация
Войти
/
toster
/
CinemaAPI
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/ru/sber/cinemarest/Repository/ClientRepository.java
10 строк
313 B
Test
Add project to repository
17 фев 2025, 16:05
17 фев 2025, 16:05
b78f192
Код
Авторство
О чём код?
package ru.sber.cinemarest.Repository; import org.springframework.data.jpa.repository.Query; import ru.sber.cinemarest.model.Client; import org.springframework.data.repository.CrudRepository; import java.util.Optional; public interface ClientRepository extends CrudRepository<Client, Long> { // @Query("") }