mirror of
https://github.com/pcvolkmer/onkostar-plugin-dnpm.git
synced 2025-07-03 09:42:54 +00:00
Finde Datenbankeinträge anhand der ID
This commit is contained in:
@ -15,6 +15,8 @@ import java.util.List;
|
|||||||
@NoRepositoryBean
|
@NoRepositoryBean
|
||||||
public interface ReadOnlyRepository<T, ID extends Serializable> extends Repository<T, ID> {
|
public interface ReadOnlyRepository<T, ID extends Serializable> extends Repository<T, ID> {
|
||||||
|
|
||||||
|
T findById(ID id);
|
||||||
|
|
||||||
List<T> findAll();
|
List<T> findAll();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user