MoveCategoryRepository

@Repository
interface MoveCategoryRepository : KRepository<MoveCategory, 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: MoveCategory)
abstract fun delete(entity: MoveCategory, mode: DeleteMode): Int
Link copied to clipboard
abstract fun deleteAll()
open fun deleteAll(entities: Iterable<MoveCategory>)
abstract fun deleteAll(entities: Iterable<MoveCategory>, 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<MoveCategory>?): List<MoveCategory>
abstract override fun findAll(pageable: Pageable): Page<MoveCategory>
open override fun findAll(sort: Sort): List<MoveCategory>
abstract fun findAll(fetcher: Fetcher<MoveCategory>?, block: SortDsl<MoveCategory>.() -> Unit): List<MoveCategory>
abstract fun findAll(fetcher: Fetcher<MoveCategory>?, sort: Sort): List<MoveCategory>
abstract fun findAll(pageable: Pageable, fetcher: Fetcher<MoveCategory>?): Page<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
@AliasFor(value = "findByIds")
open fun findAllById(ids: Iterable<Long>): List<MoveCategory>
Link copied to clipboard
open fun findById(id: Long, fetcher: Fetcher<MoveCategory>): Optional<MoveCategory>
Link copied to clipboard
@AliasFor(value = "findAllById")
abstract fun findByIds(ids: Iterable<Long>, fetcher: Fetcher<MoveCategory>?): List<MoveCategory>
Link copied to clipboard
abstract fun findMapByIds(ids: Iterable<Long>, fetcher: Fetcher<MoveCategory>?): Map<Long, MoveCategory>
Link copied to clipboard
abstract fun findNullable(id: Long, fetcher: Fetcher<MoveCategory>?): MoveCategory?
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
open fun merge(entity: MoveCategory, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
open fun merge(input: Input<MoveCategory>, block: KSaveCommandPartialDsl.() -> Unit?): MoveCategory
Link copied to clipboard
open fun <S : MoveCategory> save(entity: S): S
open fun save(input: Input<MoveCategory>, block: KSaveCommandDsl.() -> Unit?): MoveCategory
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 <S : MoveCategory> saveAll(entity: Iterable<S>): List<S>
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>