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