EvolutionChainRepository

@Repository
interface EvolutionChainRepository : KRepository<EvolutionChain, Long>

进化链仓储接口

定义进化链数据的查询与持久化操作

Author

lishangbu

Since

2026/2/12

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