21-rating #22

Merged
romanov73 merged 33 commits from 21-rating into aspir 2025-04-15 23:18:30 +04:00
Showing only changes of commit 54647813ab - Show all commits

View File

@ -0,0 +1,7 @@
package ru.ulstu.report.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import ru.ulstu.report.model.ReportPeriod;
public interface ReportPeriodRepository extends JpaRepository<ReportPeriod, Integer> {
}