MoveLearnMethodRepository

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