TaskTypeRepo

interface TaskTypeRepo : JpaRepository<TaskTypeEntity, Long> , JpaSpecificationExecutor<TaskTypeEntity>

Functions

Link copied to clipboard
abstract fun count(spec: Specification<TaskTypeEntity?>?): Long
abstract fun count(): Long
abstract fun <S : TaskTypeEntity?> count(example: Example<S?>?): Long
Link copied to clipboard
abstract fun delete(spec: Specification<TaskTypeEntity?>?): Long
abstract fun delete(entity: TaskTypeEntity?)
Link copied to clipboard
abstract fun deleteAll()
abstract fun deleteAll(entities: Iterable<out TaskTypeEntity?>?)
Link copied to clipboard
abstract fun deleteAllById(ids: Iterable<out Long?>?)
Link copied to clipboard
abstract fun deleteAllByIdInBatch(ids: Iterable<Long?>?)
Link copied to clipboard
abstract fun deleteAllInBatch()
abstract fun deleteAllInBatch(entities: Iterable<TaskTypeEntity?>?)
Link copied to clipboard
abstract fun deleteById(id: Long?)
Link copied to clipboard
open fun deleteInBatch(entities: Iterable<TaskTypeEntity?>?)
Link copied to clipboard
abstract fun exists(spec: Specification<TaskTypeEntity?>?): Boolean
abstract fun <S : TaskTypeEntity?> exists(example: Example<S?>?): Boolean
Link copied to clipboard
abstract fun existsById(id: Long?): Boolean
Link copied to clipboard
abstract fun findAll(spec: Specification<TaskTypeEntity?>?): List<TaskTypeEntity?>?
abstract fun findAll(spec: Specification<TaskTypeEntity?>?, pageable: Pageable?): Page<TaskTypeEntity?>?
abstract fun findAll(spec: Specification<TaskTypeEntity?>?, sort: Sort?): List<TaskTypeEntity?>?
abstract fun findAll(): List<TaskTypeEntity?>?
abstract fun findAll(pageable: Pageable?): Page<TaskTypeEntity?>?
abstract fun findAll(sort: Sort?): List<TaskTypeEntity?>?
abstract fun <S : TaskTypeEntity?> findAll(example: Example<S?>?): List<S?>?
abstract fun <S : TaskTypeEntity?> findAll(example: Example<S?>?, pageable: Pageable?): Page<S?>?
abstract fun <S : TaskTypeEntity?> findAll(example: Example<S?>?, sort: Sort?): List<S?>?
Link copied to clipboard
abstract fun findAllById(ids: Iterable<Long?>?): List<TaskTypeEntity?>?
Link copied to clipboard
abstract fun <S : TaskTypeEntity?, R : Any?> findBy(spec: Specification<TaskTypeEntity?>?, queryFunction: Function<FluentQuery.FetchableFluentQuery<S?>?, R?>?): R?
abstract fun <S : TaskTypeEntity?, R : Any?> findBy(example: Example<S?>?, queryFunction: Function<FluentQuery.FetchableFluentQuery<S?>?, R?>?): R?
Link copied to clipboard
@Query(value = "select t from TaskTypeEntity t where t.hid = :hid")
abstract fun findByHid(hid: String): TaskTypeEntity?
Link copied to clipboard
abstract fun findById(id: Long?): Optional<TaskTypeEntity?>?
Link copied to clipboard
abstract fun findOne(spec: Specification<TaskTypeEntity?>?): Optional<TaskTypeEntity?>?
abstract fun <S : TaskTypeEntity?> findOne(example: Example<S?>?): Optional<S?>?
Link copied to clipboard
abstract fun flush()
Link copied to clipboard
abstract fun getById(id: Long?): TaskTypeEntity?
Link copied to clipboard
abstract fun getOne(id: Long?): TaskTypeEntity?
Link copied to clipboard
abstract fun getReferenceById(id: Long?): TaskTypeEntity?
Link copied to clipboard
abstract fun <S : TaskTypeEntity?> save(entity: S?): S?
Link copied to clipboard
abstract fun <S : TaskTypeEntity?> saveAll(entities: Iterable<S?>?): List<S?>?
Link copied to clipboard
abstract fun <S : TaskTypeEntity?> saveAllAndFlush(entities: Iterable<S?>?): List<S?>?
Link copied to clipboard
abstract fun <S : TaskTypeEntity?> saveAndFlush(entity: S?): S?