EvolutionTriggerRepository

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