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