Package nl.b3p.formendpoint.repository
Interface TreeInspectionRepository
-
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<TreeInspection,Long>,org.springframework.data.jpa.repository.JpaRepository<TreeInspection,Long>,org.springframework.data.repository.PagingAndSortingRepository<TreeInspection,Long>,org.springframework.data.repository.query.QueryByExampleExecutor<TreeInspection>,org.springframework.data.repository.Repository<TreeInspection,Long>
public interface TreeInspectionRepository extends org.springframework.data.jpa.repository.JpaRepository<TreeInspection,Long>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteByDataGuid(String data_guid)Optional<TreeInspection>findByDataGuid(String data_guid)Optional<TreeInspection>findById(Long id)-
Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteById, existsById, save
-
Methods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getOne, saveAll, saveAndFlush
-
-
-
-
Method Detail
-
findById
Optional<TreeInspection> findById(Long id)
- Specified by:
findByIdin interfaceorg.springframework.data.repository.CrudRepository<TreeInspection,Long>
-
findByDataGuid
Optional<TreeInspection> findByDataGuid(String data_guid)
-
deleteByDataGuid
void deleteByDataGuid(String data_guid)
-
-