CreatureShapeRepository

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

按条件查询生物形状视图

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

按 ID 查询生物形状视图

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