| Package | Description |
|---|---|
| cn.vertxup.rbac.domain.tables.daos | |
| cn.vertxup.rbac.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
SRole |
SRoleDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<SRole> |
SRoleDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByCategory(String... values)
Fetch records that have
CATEGORY IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByCategoryAsync(List<String> values)
Fetch records that have
CATEGORY IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByComment(String... values)
Fetch records that have
COMMENT IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByCommentAsync(List<String> values)
Fetch records that have
COMMENT IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByModelId(String... values)
Fetch records that have
MODEL_ID IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByModelIdAsync(List<String> values)
Fetch records that have
MODEL_ID IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByModelKey(String... values)
Fetch records that have
MODEL_KEY IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByModelKeyAsync(List<String> values)
Fetch records that have
MODEL_KEY IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchBySuper(Boolean... values)
Fetch records that have
SUPER IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchBySuperAsync(List<Boolean> values)
Fetch records that have
SUPER IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<SRole> |
SRoleDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<SRole>> |
SRoleDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<SRole> |
SRoleDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
SRoleDao.getId(SRole object) |
| Modifier and Type | Method and Description |
|---|---|
SRole |
SRole.setActive(Boolean active) |
SRole |
SRole.setCategory(String category) |
SRole |
SRole.setCode(String code) |
SRole |
SRole.setComment(String comment) |
SRole |
SRole.setCreatedAt(LocalDateTime createdAt) |
SRole |
SRole.setCreatedBy(String createdBy) |
SRole |
SRole.setKey(String key) |
SRole |
SRole.setLanguage(String language) |
SRole |
SRole.setMetadata(String metadata) |
SRole |
SRole.setModelId(String modelId) |
SRole |
SRole.setModelKey(String modelKey) |
SRole |
SRole.setName(String name) |
SRole |
SRole.setSigma(String sigma) |
SRole |
SRole.setSuper(Boolean super_) |
SRole |
SRole.setUpdatedAt(LocalDateTime updatedAt) |
SRole |
SRole.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
SRole(SRole value) |
Copyright © 2019. All rights reserved.