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