Interface AkbRecordsRepository

All Superinterfaces:
org.springframework.data.repository.CrudRepository<AkbRecord,UUID>, org.springframework.data.mongodb.repository.MongoRepository<AkbRecord,UUID>, org.springframework.data.repository.PagingAndSortingRepository<AkbRecord,UUID>, org.springframework.data.repository.query.QueryByExampleExecutor<AkbRecord>, org.springframework.data.repository.Repository<AkbRecord,UUID>

@Repository public interface AkbRecordsRepository extends org.springframework.data.mongodb.repository.MongoRepository<AkbRecord,UUID>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
     
     
     
     
     

    Methods inherited from interface org.springframework.data.repository.CrudRepository

    count, delete, deleteAll, deleteAll, deleteAllById, deleteById, existsById, findAllById, findById, save

    Methods inherited from interface org.springframework.data.mongodb.repository.MongoRepository

    findAll, findAll, findAll, findAll, insert, insert, saveAll

    Methods inherited from interface org.springframework.data.repository.PagingAndSortingRepository

    findAll

    Methods inherited from interface org.springframework.data.repository.query.QueryByExampleExecutor

    count, exists, findAll, findBy, findOne
  • Method Details

    • findByUuid

      AkbRecord findByUuid(UUID uuid)
    • getAkbRecordsByProjectId

      List<AkbRecord> getAkbRecordsByProjectId(UUID projectId)
    • getAkbRecordsByUuid

      List<AkbRecord> getAkbRecordsByUuid(UUID uuid)
    • findProjectIdByUuid

      @Query(fields="{\'projectId\': 1}") AkbRecord findProjectIdByUuid(UUID uuid)
    • deleteByUuid

      void deleteByUuid(UUID uuid)