CreatureColorRepository

@Repository
interface CreatureColorRepository : KRepository<CreatureColor, Long>

生物颜色仓储接口

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

按条件查询生物颜色视图

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

按 ID 查询生物颜色视图

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