EvolutionChainRepository
进化链仓储接口
定义进化链数据的查询与持久化操作
Author
lishangbu
Since
2026/2/12
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
abstract fun findAll(fetcher: Fetcher<EvolutionChain>?, block: SortDsl<EvolutionChain>.() -> Unit): List<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
Link copied to clipboard
Link copied to clipboard
@AliasFor(value = "findAllById")
Link copied to clipboard
abstract fun findMapByIds(ids: Iterable<Long>, fetcher: Fetcher<EvolutionChain>?): Map<Long, EvolutionChain>
Link copied to clipboard
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(input: Input<EvolutionChain>, block: KSaveCommandPartialDsl.() -> Unit?): EvolutionChain
Link copied to clipboard
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 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>