| 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.fetchByColumns(Integer... values)
Fetch records that have
COLUMNS IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByColumnsAsync(List<Integer> values)
Fetch records that have
COLUMNS 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.fetchByIdentifier(String... values)
Fetch records that have
IDENTIFIER IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByIdentifierAsync(List<String> values)
Fetch records that have
IDENTIFIER 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.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(BigDecimal... values)
Fetch records that have
WINDOW IN (values) |
CompletableFuture<List<UiForm>> |
UiFormDao.fetchByWindowAsync(List<BigDecimal> 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.setColumns(Integer columns) |
UiForm |
UiForm.setCreatedAt(LocalDateTime createdAt) |
UiForm |
UiForm.setCreatedBy(String createdBy) |
UiForm |
UiForm.setHidden(String hidden) |
UiForm |
UiForm.setIdentifier(String identifier) |
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.setUpdatedAt(LocalDateTime updatedAt) |
UiForm |
UiForm.setUpdatedBy(String updatedBy) |
UiForm |
UiForm.setWindow(BigDecimal window) |
| Constructor and Description |
|---|
UiForm(UiForm value) |
Copyright © 2020. All rights reserved.