ItemFlingEffectRepository

@Repository
interface ItemFlingEffectRepository : KRepository<ItemFlingEffect, Long>

道具投掷效果仓储接口

定义道具投掷效果数据的查询与持久化操作

Author

lishangbu

Since

2025/09/14

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