PokemonAbilityRepository

@Repository
interface PokemonAbilityRepository : KRepository<PokemonAbility, PokemonAbilityId>

宝可梦特性仓储接口

定义宝可梦特性数据的查询与持久化操作

Author

lishangbu

Since

2025/08/20

Properties

Link copied to clipboard
Link copied to clipboard
abstract val sql: KSqlClient
Link copied to clipboard
abstract val type: ImmutableType

Functions

Link copied to clipboard
abstract fun count(): Long
Link copied to clipboard
open fun delete(entity: PokemonAbility)
abstract fun delete(entity: PokemonAbility, mode: DeleteMode): Int
Link copied to clipboard
abstract fun deleteAll()
open fun deleteAll(entities: Iterable<PokemonAbility>)
abstract fun deleteAll(entities: Iterable<PokemonAbility>, mode: DeleteMode): Int
Link copied to clipboard
@AliasFor(value = "deleteByIds")
open fun deleteAllById(ids: Iterable<PokemonAbilityId>)
Link copied to clipboard
abstract fun deleteById(id: PokemonAbilityId, mode: DeleteMode): Int
Link copied to clipboard
@AliasFor(value = "deleteAllById")
open fun deleteByIds(ids: Iterable<PokemonAbilityId>)
abstract fun deleteByIds(ids: Iterable<PokemonAbilityId>, mode: DeleteMode): Int
Link copied to clipboard
Link copied to clipboard
abstract fun findAll(fetcher: Fetcher<PokemonAbility>?): List<PokemonAbility>
abstract override fun findAll(pageable: Pageable): Page<PokemonAbility>
open override fun findAll(sort: Sort): List<PokemonAbility>
abstract fun findAll(fetcher: Fetcher<PokemonAbility>?, block: SortDsl<PokemonAbility>.() -> Unit): List<PokemonAbility>
abstract fun findAll(fetcher: Fetcher<PokemonAbility>?, sort: Sort): List<PokemonAbility>
abstract fun findAll(pageable: Pageable, fetcher: Fetcher<PokemonAbility>?): Page<PokemonAbility>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<PokemonAbility>?, block: SortDsl<PokemonAbility>.() -> Unit?): Page<PokemonAbility>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<PokemonAbility>?, sort: Sort): Page<PokemonAbility>
Link copied to clipboard
@AliasFor(value = "findByIds")
open fun findAllById(ids: Iterable<PokemonAbilityId>): List<PokemonAbility>
Link copied to clipboard
Link copied to clipboard
@AliasFor(value = "findAllById")
abstract fun findByIds(ids: Iterable<PokemonAbilityId>, fetcher: Fetcher<PokemonAbility>?): List<PokemonAbility>
Link copied to clipboard
Link copied to clipboard
abstract fun findNullable(id: PokemonAbilityId, fetcher: Fetcher<PokemonAbility>?): PokemonAbility?
Link copied to clipboard
open fun insert(entity: PokemonAbility, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
open fun insert(input: Input<PokemonAbility>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
Link copied to clipboard
open fun insertIfAbsent(entity: PokemonAbility, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
open fun insertIfAbsent(input: Input<PokemonAbility>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
Link copied to clipboard
open fun merge(entity: PokemonAbility, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
open fun merge(input: Input<PokemonAbility>, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
Link copied to clipboard
open fun <S : PokemonAbility> save(entity: S): S
open fun save(input: Input<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): PokemonAbility
open fun <V : View<PokemonAbility>> save(entity: PokemonAbility, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(entity: PokemonAbility, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): PokemonAbility
open fun <V : View<PokemonAbility>> save(input: Input<PokemonAbility>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(input: Input<PokemonAbility>, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): PokemonAbility
open fun save(entity: PokemonAbility, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
open fun save(input: Input<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
open fun <V : View<PokemonAbility>> save(entity: PokemonAbility, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(entity: PokemonAbility, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
open fun <V : View<PokemonAbility>> save(input: Input<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(input: Input<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
Link copied to clipboard
open fun <S : PokemonAbility> saveAll(entity: Iterable<S>): List<S>
Link copied to clipboard
open fun saveCommand(entity: PokemonAbility, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<PokemonAbility>
open fun saveCommand(input: Input<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<PokemonAbility>
open fun saveCommand(entity: PokemonAbility, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<PokemonAbility>
open fun saveCommand(input: Input<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<PokemonAbility>
Link copied to clipboard
open fun saveEntities(entities: Iterable<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): List<PokemonAbility>
open fun <V : View<PokemonAbility>> saveEntities(entities: Iterable<PokemonAbility>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<PokemonAbility>, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): List<PokemonAbility>
open fun saveEntities(entities: Iterable<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<PokemonAbility>
open fun <V : View<PokemonAbility>> saveEntities(entities: Iterable<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandPartialDsl.() -> Unit?): List<PokemonAbility>
Link copied to clipboard
open fun saveEntitiesCommand(entities: Iterable<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<PokemonAbility>
open fun saveEntitiesCommand(entities: Iterable<PokemonAbility>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<PokemonAbility>
Link copied to clipboard
open fun saveInputs(inputs: Iterable<Input<PokemonAbility>>, block: KSaveCommandDsl.() -> Unit?): List<PokemonAbility>
open fun <V : View<PokemonAbility>> saveInputs(inputs: Iterable<Input<PokemonAbility>>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<PokemonAbility>>, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandDsl.() -> Unit?): List<PokemonAbility>
open fun saveInputs(inputs: Iterable<Input<PokemonAbility>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<PokemonAbility>
open fun <V : View<PokemonAbility>> saveInputs(inputs: Iterable<Input<PokemonAbility>>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<PokemonAbility>>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<PokemonAbility>, block: KSaveCommandPartialDsl.() -> Unit?): List<PokemonAbility>
Link copied to clipboard
open fun saveInputsCommand(input: Iterable<Input<PokemonAbility>>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<PokemonAbility>
open fun saveInputsCommand(inputs: Iterable<Input<PokemonAbility>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<PokemonAbility>
Link copied to clipboard
open fun update(entity: PokemonAbility, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
open fun update(input: Input<PokemonAbility>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): PokemonAbility
Link copied to clipboard
abstract fun <V : View<PokemonAbility>> viewer(viewType: KClass<V>): KRepository.Viewer<PokemonAbility, PokemonAbilityId, V>