MoveCategoryRepository
招式类别仓储接口
定义招式类别数据的查询与持久化操作
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<MoveCategory>?, block: SortDsl<MoveCategory>.() -> Unit): List<MoveCategory>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<MoveCategory>?, block: SortDsl<MoveCategory>.() -> Unit?): Page<MoveCategory>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<MoveCategory>?, sort: Sort): Page<MoveCategory>
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<MoveCategory>?): Map<Long, MoveCategory>
Link copied to clipboard
Link copied to clipboard
open fun insert(entity: MoveCategory, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
open fun insert(input: Input<MoveCategory>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
Link copied to clipboard
open fun insertIfAbsent(entity: MoveCategory, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
open fun insertIfAbsent(input: Input<MoveCategory>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
Link copied to clipboard
Link copied to clipboard
open fun <V : View<MoveCategory>> save(entity: MoveCategory, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(entity: MoveCategory, fetcher: Fetcher<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): MoveCategory
open fun <V : View<MoveCategory>> save(input: Input<MoveCategory>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(input: Input<MoveCategory>, fetcher: Fetcher<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): MoveCategory
open fun save(entity: MoveCategory, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
open fun save(input: Input<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
open fun <V : View<MoveCategory>> save(entity: MoveCategory, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(entity: MoveCategory, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<MoveCategory>, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
open fun <V : View<MoveCategory>> save(input: Input<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(input: Input<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<MoveCategory>, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
Link copied to clipboard
open fun saveCommand(entity: MoveCategory, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<MoveCategory>
open fun saveCommand(input: Input<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<MoveCategory>
open fun saveCommand(entity: MoveCategory, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<MoveCategory>
open fun saveCommand(input: Input<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<MoveCategory>
Link copied to clipboard
open fun saveEntities(entities: Iterable<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): List<MoveCategory>
open fun <V : View<MoveCategory>> saveEntities(entities: Iterable<MoveCategory>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<MoveCategory>, fetcher: Fetcher<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): List<MoveCategory>
open fun saveEntities(entities: Iterable<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<MoveCategory>
open fun <V : View<MoveCategory>> saveEntities(entities: Iterable<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<MoveCategory>, block: KSaveCommandPartialDsl.() -> Unit?): List<MoveCategory>
Link copied to clipboard
open fun saveEntitiesCommand(entities: Iterable<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<MoveCategory>
open fun saveEntitiesCommand(entities: Iterable<MoveCategory>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<MoveCategory>
Link copied to clipboard
open fun saveInputs(inputs: Iterable<Input<MoveCategory>>, block: KSaveCommandDsl.() -> Unit?): List<MoveCategory>
open fun <V : View<MoveCategory>> saveInputs(inputs: Iterable<Input<MoveCategory>>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<MoveCategory>>, fetcher: Fetcher<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): List<MoveCategory>
open fun saveInputs(inputs: Iterable<Input<MoveCategory>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<MoveCategory>
open fun <V : View<MoveCategory>> saveInputs(inputs: Iterable<Input<MoveCategory>>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<MoveCategory>>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<MoveCategory>, block: KSaveCommandPartialDsl.() -> Unit?): List<MoveCategory>
Link copied to clipboard
open fun saveInputsCommand(input: Iterable<Input<MoveCategory>>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<MoveCategory>
open fun saveInputsCommand(inputs: Iterable<Input<MoveCategory>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<MoveCategory>
Link copied to clipboard
open fun update(entity: MoveCategory, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
open fun update(input: Input<MoveCategory>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
Link copied to clipboard
abstract fun <V : View<MoveCategory>> viewer(viewType: KClass<V>): KRepository.Viewer<MoveCategory, Long, V>