GrowthRateRepository

@Repository
interface GrowthRateRepository : KRepository<GrowthRate, Long>

成长速率仓储接口

定义成长速率数据的查询与持久化操作

Author

lishangbu

Since

2026/2/10

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: GrowthRate)
abstract fun delete(entity: GrowthRate, mode: DeleteMode): Int
Link copied to clipboard
abstract fun deleteAll()
open fun deleteAll(entities: Iterable<GrowthRate>)
abstract fun deleteAll(entities: Iterable<GrowthRate>, 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
open fun findAll(): List<GrowthRate>
abstract fun findAll(fetcher: Fetcher<GrowthRate>?): List<GrowthRate>
abstract override fun findAll(pageable: Pageable): Page<GrowthRate>
open override fun findAll(sort: Sort): List<GrowthRate>
abstract fun findAll(fetcher: Fetcher<GrowthRate>?, block: SortDsl<GrowthRate>.() -> Unit): List<GrowthRate>
abstract fun findAll(fetcher: Fetcher<GrowthRate>?, sort: Sort): List<GrowthRate>
abstract fun findAll(pageable: Pageable, fetcher: Fetcher<GrowthRate>?): Page<GrowthRate>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<GrowthRate>?, block: SortDsl<GrowthRate>.() -> Unit?): Page<GrowthRate>
abstract fun findAll(pageIndex: Int, pageSize: Int, fetcher: Fetcher<GrowthRate>?, sort: Sort): Page<GrowthRate>
Link copied to clipboard
@AliasFor(value = "findByIds")
open fun findAllById(ids: Iterable<Long>): List<GrowthRate>
Link copied to clipboard
open fun findById(id: Long, fetcher: Fetcher<GrowthRate>): Optional<GrowthRate>
Link copied to clipboard
@AliasFor(value = "findAllById")
abstract fun findByIds(ids: Iterable<Long>, fetcher: Fetcher<GrowthRate>?): List<GrowthRate>
Link copied to clipboard
abstract fun findMapByIds(ids: Iterable<Long>, fetcher: Fetcher<GrowthRate>?): Map<Long, GrowthRate>
Link copied to clipboard
abstract fun findNullable(id: Long, fetcher: Fetcher<GrowthRate>?): GrowthRate?
Link copied to clipboard
open fun insert(entity: GrowthRate, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
open fun insert(input: Input<GrowthRate>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
Link copied to clipboard
open fun insertIfAbsent(entity: GrowthRate, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
open fun insertIfAbsent(input: Input<GrowthRate>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
Link copied to clipboard
open fun merge(entity: GrowthRate, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
open fun merge(input: Input<GrowthRate>, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
Link copied to clipboard
open fun <S : GrowthRate> save(entity: S): S
open fun save(input: Input<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): GrowthRate
open fun <V : View<GrowthRate>> save(entity: GrowthRate, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(entity: GrowthRate, fetcher: Fetcher<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): GrowthRate
open fun <V : View<GrowthRate>> save(input: Input<GrowthRate>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): V
open fun save(input: Input<GrowthRate>, fetcher: Fetcher<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): GrowthRate
open fun save(entity: GrowthRate, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
open fun save(input: Input<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
open fun <V : View<GrowthRate>> save(entity: GrowthRate, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(entity: GrowthRate, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<GrowthRate>, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
open fun <V : View<GrowthRate>> save(input: Input<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): V
open fun save(input: Input<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<GrowthRate>, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
Link copied to clipboard
open fun <S : GrowthRate> saveAll(entity: Iterable<S>): List<S>
Link copied to clipboard
open fun saveCommand(entity: GrowthRate, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<GrowthRate>
open fun saveCommand(input: Input<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): KSimpleEntitySaveCommand<GrowthRate>
open fun saveCommand(entity: GrowthRate, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<GrowthRate>
open fun saveCommand(input: Input<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KSimpleEntitySaveCommand<GrowthRate>
Link copied to clipboard
open fun saveEntities(entities: Iterable<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): List<GrowthRate>
open fun <V : View<GrowthRate>> saveEntities(entities: Iterable<GrowthRate>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<GrowthRate>, fetcher: Fetcher<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): List<GrowthRate>
open fun saveEntities(entities: Iterable<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<GrowthRate>
open fun <V : View<GrowthRate>> saveEntities(entities: Iterable<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveEntities(entities: Iterable<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<GrowthRate>, block: KSaveCommandPartialDsl.() -> Unit?): List<GrowthRate>
Link copied to clipboard
open fun saveEntitiesCommand(entities: Iterable<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<GrowthRate>
open fun saveEntitiesCommand(entities: Iterable<GrowthRate>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<GrowthRate>
Link copied to clipboard
open fun saveInputs(inputs: Iterable<Input<GrowthRate>>, block: KSaveCommandDsl.() -> Unit?): List<GrowthRate>
open fun <V : View<GrowthRate>> saveInputs(inputs: Iterable<Input<GrowthRate>>, viewType: KClass<V>, block: KSaveCommandDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<GrowthRate>>, fetcher: Fetcher<GrowthRate>, block: KSaveCommandDsl.() -> Unit?): List<GrowthRate>
open fun saveInputs(inputs: Iterable<Input<GrowthRate>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): List<GrowthRate>
open fun <V : View<GrowthRate>> saveInputs(inputs: Iterable<Input<GrowthRate>>, mode: SaveMode, associatedMode: AssociatedSaveMode, viewType: KClass<V>, block: KSaveCommandPartialDsl.() -> Unit?): List<V>
open fun saveInputs(inputs: Iterable<Input<GrowthRate>>, mode: SaveMode, associatedMode: AssociatedSaveMode, fetcher: Fetcher<GrowthRate>, block: KSaveCommandPartialDsl.() -> Unit?): List<GrowthRate>
Link copied to clipboard
open fun saveInputsCommand(input: Iterable<Input<GrowthRate>>, block: KSaveCommandDsl.() -> Unit?): KBatchEntitySaveCommand<GrowthRate>
open fun saveInputsCommand(inputs: Iterable<Input<GrowthRate>>, mode: SaveMode, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): KBatchEntitySaveCommand<GrowthRate>
Link copied to clipboard
open fun update(entity: GrowthRate, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
open fun update(input: Input<GrowthRate>, associatedMode: AssociatedSaveMode, block: KSaveCommandPartialDsl.() -> Unit?): GrowthRate
Link copied to clipboard
abstract fun <V : View<GrowthRate>> viewer(viewType: KClass<V>): KRepository.Viewer<GrowthRate, Long, V>