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