BerryFirmnessRepository

interface BerryFirmnessRepository : KRepository<BerryFirmness, Long>

树果硬度仓储接口

定义树果硬度数据的查询与持久化操作

Author

lishangbu

Since

2025/09/14

Types

Link copied to clipboard
object Companion

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: BerryFirmness)
abstract fun delete(entity: BerryFirmness, mode: DeleteMode): Int
Link copied to clipboard
abstract fun deleteAll()
open fun deleteAll(entities: Iterable<BerryFirmness>)
abstract fun deleteAll(entities: Iterable<BerryFirmness>, 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<BerryFirmness>?): List<BerryFirmness>
abstract override fun findAll(pageable: Pageable): Page<BerryFirmness>
open override fun findAll(sort: Sort): List<BerryFirmness>
abstract fun findAll(fetcher: Fetcher<BerryFirmness>?, block: SortDsl<BerryFirmness>.() -> Unit): List<BerryFirmness>
abstract fun findAll(fetcher: Fetcher<BerryFirmness>?, sort: Sort): List<BerryFirmness>
abstract fun findAll(pageable: Pageable, fetcher: Fetcher<BerryFirmness>?): Page<BerryFirmness>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<BerryFirmness>?, block: SortDsl<BerryFirmness>.() -> Unit?): Page<BerryFirmness>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<BerryFirmness>?, sort: Sort): Page<BerryFirmness>
Link copied to clipboard
@AliasFor(value = "findByIds")
open fun findAllById(ids: Iterable<Long>): List<BerryFirmness>
Link copied to clipboard
open fun findById(id: Long, fetcher: Fetcher<BerryFirmness>): Optional<BerryFirmness>
Link copied to clipboard
@AliasFor(value = "findAllById")
abstract fun findByIds(ids: Iterable<Long>, fetcher: Fetcher<BerryFirmness>?): List<BerryFirmness>
Link copied to clipboard
abstract fun findMapByIds(ids: Iterable<Long>, fetcher: Fetcher<BerryFirmness>?): Map<Long, BerryFirmness>
Link copied to clipboard
abstract fun findNullable(id: Long, fetcher: Fetcher<BerryFirmness>?): BerryFirmness?
Link copied to clipboard
open fun insert(entity: BerryFirmness, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
open fun insert(input: Input<BerryFirmness>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
Link copied to clipboard
open fun insertIfAbsent(entity: BerryFirmness, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
open fun insertIfAbsent(input: Input<BerryFirmness>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
Link copied to clipboard
open fun listViews(specification: BerryFirmnessSpecification?): List<BerryFirmnessView>

按条件查询树果硬度视图列表

Link copied to clipboard
open fun loadViewById(id: Long): BerryFirmnessView?

按 ID 查询树果硬度视图

Link copied to clipboard
open fun merge(entity: BerryFirmness, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
open fun merge(input: Input<BerryFirmness>, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
Link copied to clipboard
open fun pageViews(specification: BerryFirmnessSpecification?, pageable: Pageable): Page<BerryFirmnessView>

按条件分页查询树果硬度视图

Link copied to clipboard
open fun <S : BerryFirmness> save(entity: S): S
open fun save(input: Input<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): BerryFirmness
open fun <V : View<BerryFirmness>> save(entity: BerryFirmness, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(entity: BerryFirmness, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): BerryFirmness
open fun <V : View<BerryFirmness>> save(input: Input<BerryFirmness>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(input: Input<BerryFirmness>, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): BerryFirmness
open fun save(entity: BerryFirmness, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
open fun save(input: Input<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
open fun <V : View<BerryFirmness>> save(entity: BerryFirmness, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(entity: BerryFirmness, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
open fun <V : View<BerryFirmness>> save(input: Input<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(input: Input<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
Link copied to clipboard
open fun <S : BerryFirmness> saveAll(entity: Iterable<S>): List<S>
Link copied to clipboard
open fun saveCommand(entity: BerryFirmness, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<BerryFirmness>
open fun saveCommand(input: Input<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<BerryFirmness>
open fun saveCommand(entity: BerryFirmness, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<BerryFirmness>
open fun saveCommand(input: Input<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<BerryFirmness>
Link copied to clipboard
open fun saveEntities(entities: Iterable<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): List<BerryFirmness>
open fun <V : View<BerryFirmness>> saveEntities(entities: Iterable<BerryFirmness>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<BerryFirmness>, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): List<BerryFirmness>
open fun saveEntities(entities: Iterable<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<BerryFirmness>
open fun <V : View<BerryFirmness>> saveEntities(entities: Iterable<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandPartialDsl.() -> Unit?): List<BerryFirmness>
Link copied to clipboard
open fun saveEntitiesCommand(entities: Iterable<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<BerryFirmness>
open fun saveEntitiesCommand(entities: Iterable<BerryFirmness>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<BerryFirmness>
Link copied to clipboard
open fun saveInputs(inputs: Iterable<Input<BerryFirmness>>, block: KSaveCommandDsl.() -> Unit?): List<BerryFirmness>
open fun <V : View<BerryFirmness>> saveInputs(inputs: Iterable<Input<BerryFirmness>>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<BerryFirmness>>, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandDsl.() -> Unit?): List<BerryFirmness>
open fun saveInputs(inputs: Iterable<Input<BerryFirmness>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<BerryFirmness>
open fun <V : View<BerryFirmness>> saveInputs(inputs: Iterable<Input<BerryFirmness>>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<BerryFirmness>>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<BerryFirmness>, block: KSaveCommandPartialDsl.() -> Unit?): List<BerryFirmness>
Link copied to clipboard
open fun saveInputsCommand(input: Iterable<Input<BerryFirmness>>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<BerryFirmness>
open fun saveInputsCommand(inputs: Iterable<Input<BerryFirmness>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<BerryFirmness>
Link copied to clipboard
open fun update(entity: BerryFirmness, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
open fun update(input: Input<BerryFirmness>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): BerryFirmness
Link copied to clipboard
abstract fun <V : View<BerryFirmness>> viewer(viewType: KClass<V>): KRepository.Viewer<BerryFirmness, Long, V>