This commit is contained in:
Filip Izydorczyk
2020-07-25 11:16:35 +02:00
parent 9a53025a4b
commit 0843fbccde
5 changed files with 155705 additions and 0 deletions

View File

@ -0,0 +1,11 @@
package com.plannaplan.repositories;
import com.plannaplan.entities.HistoryElement;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface HistoryRepository extends JpaRepository<HistoryElement, Long> {
}