| Package | Description |
|---|---|
| cn.vertxup.ui.domain.tables.daos | |
| cn.vertxup.ui.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
UiLayout |
UiLayoutDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<UiLayout> |
UiLayoutDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByConfig(String... values)
Fetch records that have
CONFIG IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByConfigAsync(List<String> values)
Fetch records that have
CONFIG IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<UiLayout> |
UiLayoutDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<UiLayout>> |
UiLayoutDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<UiLayout> |
UiLayoutDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
UiLayoutDao.getId(UiLayout object) |
| Modifier and Type | Method and Description |
|---|---|
UiLayout |
UiLayout.setActive(Boolean active) |
UiLayout |
UiLayout.setConfig(String config) |
UiLayout |
UiLayout.setCreatedAt(LocalDateTime createdAt) |
UiLayout |
UiLayout.setCreatedBy(String createdBy) |
UiLayout |
UiLayout.setKey(String key) |
UiLayout |
UiLayout.setLanguage(String language) |
UiLayout |
UiLayout.setMetadata(String metadata) |
UiLayout |
UiLayout.setName(String name) |
UiLayout |
UiLayout.setSigma(String sigma) |
UiLayout |
UiLayout.setUpdatedAt(LocalDateTime updatedAt) |
UiLayout |
UiLayout.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
UiLayout(UiLayout value) |
Copyright © 2021. All rights reserved.