| Package | Description |
|---|---|
| cn.vertxup.ambient.domain.tables.daos | |
| cn.vertxup.ambient.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
XMenu |
XMenuDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<XMenu> |
XMenuDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByAppId(String... values)
Fetch records that have
APP_ID IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByAppIdAsync(List<String> values)
Fetch records that have
APP_ID IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByIcon(String... values)
Fetch records that have
ICON IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByIconAsync(List<String> values)
Fetch records that have
ICON IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByLevel(Long... values)
Fetch records that have
LEVEL IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByLevelAsync(List<Long> values)
Fetch records that have
LEVEL IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByOrder(Long... values)
Fetch records that have
ORDER IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByOrderAsync(List<Long> values)
Fetch records that have
ORDER IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByParentId(String... values)
Fetch records that have
PARENT_ID IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByParentIdAsync(List<String> values)
Fetch records that have
PARENT_ID IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByText(String... values)
Fetch records that have
TEXT IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByTextAsync(List<String> values)
Fetch records that have
TEXT IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<XMenu> |
XMenuDao.fetchByUri(String... values)
Fetch records that have
URI IN (values) |
CompletableFuture<List<XMenu>> |
XMenuDao.fetchByUriAsync(List<String> values)
Fetch records that have
URI IN (values) asynchronously |
CompletableFuture<XMenu> |
XMenuDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
XMenuDao.getId(XMenu object) |
| Modifier and Type | Method and Description |
|---|---|
XMenu |
XMenu.setActive(Boolean active) |
XMenu |
XMenu.setAppId(String appId) |
XMenu |
XMenu.setCreatedAt(LocalDateTime createdAt) |
XMenu |
XMenu.setCreatedBy(String createdBy) |
XMenu |
XMenu.setIcon(String icon) |
XMenu |
XMenu.setKey(String key) |
XMenu |
XMenu.setLanguage(String language) |
XMenu |
XMenu.setLevel(Long level) |
XMenu |
XMenu.setMetadata(String metadata) |
XMenu |
XMenu.setName(String name) |
XMenu |
XMenu.setOrder(Long order) |
XMenu |
XMenu.setParentId(String parentId) |
XMenu |
XMenu.setSigma(String sigma) |
XMenu |
XMenu.setText(String text) |
XMenu |
XMenu.setType(String type) |
XMenu |
XMenu.setUpdatedAt(LocalDateTime updatedAt) |
XMenu |
XMenu.setUpdatedBy(String updatedBy) |
XMenu |
XMenu.setUri(String uri) |
| Constructor and Description |
|---|
XMenu(XMenu value) |
Copyright © 2021. All rights reserved.