Interface JpaJvCommitPropertyRepository
- All Superinterfaces:
org.springframework.data.repository.CrudRepository<JvCommitPropertyEntity,,JvCommitPropertyId> org.springframework.data.jpa.repository.JpaRepository<JvCommitPropertyEntity,,JvCommitPropertyId> org.springframework.data.repository.PagingAndSortingRepository<JvCommitPropertyEntity,,JvCommitPropertyId> org.springframework.data.repository.query.QueryByExampleExecutor<JvCommitPropertyEntity>,org.springframework.data.repository.Repository<JvCommitPropertyEntity,JvCommitPropertyId>
@Repository
public interface JpaJvCommitPropertyRepository
extends org.springframework.data.jpa.repository.JpaRepository<JvCommitPropertyEntity,JvCommitPropertyId>
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteByIdCommitId(Long commitId) voiddeleteByIdCommitIdIn(Collection<Long> commitIds) Methods inherited from interface org.springframework.data.repository.CrudRepository
count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findById, saveMethods inherited from interface org.springframework.data.jpa.repository.JpaRepository
deleteAllByIdInBatch, deleteAllInBatch, deleteAllInBatch, deleteInBatch, findAll, findAll, findAll, findAll, findAllById, flush, getById, getOne, getReferenceById, saveAll, saveAllAndFlush, saveAndFlushMethods inherited from interface org.springframework.data.repository.PagingAndSortingRepository
findAllMethods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor
count, exists, findAll, findBy, findOne
-
Method Details
-
deleteByIdCommitId
@Modifying @Query("DELETE FROM JvCommitPropertyEntity e WHERE e.id.commitId = :commitId") void deleteByIdCommitId(@Param("commitId") Long commitId) -
deleteByIdCommitIdIn
@Modifying @Query("DELETE FROM JvCommitPropertyEntity e WHERE e.id.commitId IN (:commitIds)") void deleteByIdCommitIdIn(@Param("commitIds") Collection<Long> commitIds)
-