List of usage examples for org.springframework.data.jpa.repository JpaRepository interface-usage
From source file co.com.dcm.stc.service.repositories.LogRecordRepository.java
/** * * @author DanielCM */ public interface LogRecordRepository extends JpaRepository<LogRecord, Long> {
From source file com.cput.my.wonder.repository.AnimalHealthRepository.java
/** * * @author Khanya */ public interface AnimalHealthRepository extends JpaRepository<AnimalHealth, Long> {
From source file com.mycompany.securitylogin.repo.UserRepo.java
/** * * @author Best */ public interface UserRepo extends JpaRepository<User, Integer> {
From source file com.mycompany.uploadfile.repo.StudentImageRepo.java
/** * * @author Best */ public interface StudentImageRepo extends JpaRepository<StudentImage, Integer> {
From source file com.sentinel.persistence.repository.UserRequestRepository.java
/**
* @author Vipin Kumar
* @created 25-Feb-2016
*
* TODO: Write a quick description of what the class is supposed to do.
*
From source file com.tonata.photostudio2.repository.CashRepository.java
/** * * @author Tonata */ public interface CashRepository extends JpaRepository<Cash, Long> {
From source file de.cynapsys.homeautomation.service.RoomService.java
/** * * @author mouadh */ public interface RoomService extends JpaRepository<Room, Long> {
From source file org.thingsplode.server.repositories.ModelRepository.java
/** * * @author tamas.csaba@gmail.com */ public interface ModelRepository extends JpaRepository<Model, Long> {
From source file business.models.LabRepository.java
public interface LabRepository extends JpaRepository<Lab, Long> {
Lab findByName(String lab);
Lab findByNumber(Integer labNumber);
From source file com.blogspot.na5cent.orm.repository.UserRepository.java
/** * * @author anonymous */ public interface UserRepository extends JpaRepository<User, Integer> {