1
0
mirror of https://github.com/pcvolkmer/onkostar-plugin-dnpm.git synced 2025-07-02 01:02:55 +00:00

Finde Datenbankeinträge anhand der ID

This commit is contained in:
2023-04-16 18:06:39 +02:00
parent c4c03bfc66
commit 4c6a1ef58a

View File

@ -15,6 +15,8 @@ import java.util.List;
@NoRepositoryBean
public interface ReadOnlyRepository<T, ID extends Serializable> extends Repository<T, ID> {
T findById(ID id);
List<T> findAll();
}