| Package | Description |
|---|---|
| cn.vertxup.ui.domain.tables.daos | |
| cn.vertxup.ui.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
UiForm |
UiFormDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<UiForm> |
UiFormDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByHidden(String... values)
Fetch records that have
HIDDEN IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByHiddenAsync(List<String> values)
Fetch records that have
HIDDEN IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByRow(String... values)
Fetch records that have
ROW IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByRowAsync(List<String> values)
Fetch records that have
ROW IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByUi(String... values)
Fetch records that have
UI IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByUiAsync(List<String> values)
Fetch records that have
UI IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<UiForm> |
UiFormDao.fetchByWindow(Integer... values)
Fetch records that have
WINDOW IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByWindowAsync(List<Integer> values)
Fetch records that have
WINDOW IN (values) asynchronously |
CompletableFuture<UiForm> |
UiFormDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
UiFormDao.getId(UiForm object) |
| Modifier and Type | Method and Description |
|---|---|
UiForm |
UiForm.setActive(Boolean active) |
UiForm |
UiForm.setCode(String code) |
UiForm |
UiForm.setCreatedAt(LocalDateTime createdAt) |
UiForm |
UiForm.setCreatedBy(String createdBy) |
UiForm |
UiForm.setHidden(String hidden) |
UiForm |
UiForm.setKey(String key) |
UiForm |
UiForm.setLanguage(String language) |
UiForm |
UiForm.setMetadata(String metadata) |
UiForm |
UiForm.setName(String name) |
UiForm |
UiForm.setRow(String row) |
UiForm |
UiForm.setSigma(String sigma) |
UiForm |
UiForm.setType(String type) |
UiForm |
UiForm.setUi(String ui) |
UiForm |
UiForm.setUpdatedAt(LocalDateTime updatedAt) |
UiForm |
UiForm.setUpdatedBy(String updatedBy) |
UiForm |
UiForm.setWindow(Integer window) |
| Constructor and Description |
|---|
UiForm(UiForm value) |
Copyright © 2019. All rights reserved.