| Package | Description |
|---|---|
| cn.vertxup.ui.domain.tables.daos | |
| cn.vertxup.ui.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
UiPage |
UiPageDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<UiPage> |
UiPageDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByApp(String... values)
Fetch records that have
APP IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByAppAsync(List<String> values)
Fetch records that have
APP IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByAssist(String... values)
Fetch records that have
ASSIST IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByAssistAsync(List<String> values)
Fetch records that have
ASSIST IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByContainerConfig(String... values)
Fetch records that have
CONTAINER_CONFIG IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByContainerConfigAsync(List<String> values)
Fetch records that have
CONTAINER_CONFIG IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByContainerName(String... values)
Fetch records that have
CONTAINER_NAME IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByContainerNameAsync(List<String> values)
Fetch records that have
CONTAINER_NAME IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByGrid(String... values)
Fetch records that have
GRID IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByGridAsync(List<String> values)
Fetch records that have
GRID IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByLayoutId(String... values)
Fetch records that have
LAYOUT_ID IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByLayoutIdAsync(List<String> values)
Fetch records that have
LAYOUT_ID IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByModule(String... values)
Fetch records that have
MODULE IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByModuleAsync(List<String> values)
Fetch records that have
MODULE IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByPage(String... values)
Fetch records that have
PAGE IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByPageAsync(List<String> values)
Fetch records that have
PAGE IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByParamMap(String... values)
Fetch records that have
PARAM_MAP IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByParamMapAsync(List<String> values)
Fetch records that have
PARAM_MAP IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchBySecure(Boolean... values)
Fetch records that have
SECURE IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchBySecureAsync(List<Boolean> values)
Fetch records that have
SECURE IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByState(String... values)
Fetch records that have
STATE IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByStateAsync(List<String> values)
Fetch records that have
STATE IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<UiPage> |
UiPageDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<UiPage>> |
UiPageDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<UiPage> |
UiPageDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
UiPageDao.getId(UiPage object) |
| Modifier and Type | Method and Description |
|---|---|
UiPage |
UiPage.setActive(Boolean active) |
UiPage |
UiPage.setApp(String app) |
UiPage |
UiPage.setAssist(String assist) |
UiPage |
UiPage.setContainerConfig(String containerConfig) |
UiPage |
UiPage.setContainerName(String containerName) |
UiPage |
UiPage.setCreatedAt(LocalDateTime createdAt) |
UiPage |
UiPage.setCreatedBy(String createdBy) |
UiPage |
UiPage.setGrid(String grid) |
UiPage |
UiPage.setKey(String key) |
UiPage |
UiPage.setLanguage(String language) |
UiPage |
UiPage.setLayoutId(String layoutId) |
UiPage |
UiPage.setMetadata(String metadata) |
UiPage |
UiPage.setModule(String module) |
UiPage |
UiPage.setPage(String page) |
UiPage |
UiPage.setParamMap(String paramMap) |
UiPage |
UiPage.setSecure(Boolean secure) |
UiPage |
UiPage.setSigma(String sigma) |
UiPage |
UiPage.setState(String state) |
UiPage |
UiPage.setUpdatedAt(LocalDateTime updatedAt) |
UiPage |
UiPage.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
UiPage(UiPage value) |
Copyright © 2020. All rights reserved.