MoveLearnMethodRepository
招式学习方式仓储接口
定义招式学习方式数据的查询与持久化操作
Author
lishangbu
Since
2025/09/14
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<MoveLearnMethod>?, block: SortDsl<MoveLearnMethod>.() -> Unit): List<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
Link copied to clipboard
Link copied to clipboard
@AliasFor(value = "findAllById")
Link copied to clipboard
abstract fun findMapByIds(ids: Iterable<Long>, fetcher: Fetcher<MoveLearnMethod>?): Map<Long, MoveLearnMethod>
Link copied to clipboard
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(input: Input<MoveLearnMethod>, block: KSaveCommandPartialDsl.() -> Unit?): MoveLearnMethod
Link copied to clipboard
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 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>