MoveAilmentRepository

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