You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
389 B
14 lines
389 B
package de.superx.jdbc.repository; |
|
|
|
import java.util.Optional; |
|
|
|
import org.springframework.data.repository.RepositoryDefinition; |
|
|
|
import de.superx.jdbc.entity.Sichten; |
|
|
|
@RepositoryDefinition(domainClass = Sichten.class, idClass = Integer.class) |
|
public interface SichtenRepository extends BiaAdminCrudRepository<Sichten> { |
|
|
|
Optional<Sichten> findByBeschreibung(String name); |
|
|
|
}
|
|
|