| Package | Description |
|---|---|
| cn.vertxup.graphic.domain.tables.daos | |
| cn.vertxup.graphic.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
GGraphic |
GGraphicDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<GGraphic> |
GGraphicDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByGraphicId(String... values)
Fetch records that have
GRAPHIC_ID IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByGraphicIdAsync(List<String> values)
Fetch records that have
GRAPHIC_ID IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByMaster(Boolean... values)
Fetch records that have
MASTER IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByMasterAsync(List<Boolean> values)
Fetch records that have
MASTER IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByMode(String... values)
Fetch records that have
MODE IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByModeAsync(List<String> values)
Fetch records that have
MODE IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByModelCategory(String... values)
Fetch records that have
MODEL_CATEGORY IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByModelCategoryAsync(List<String> values)
Fetch records that have
MODEL_CATEGORY IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByModelId(String... values)
Fetch records that have
MODEL_ID IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByModelIdAsync(List<String> values)
Fetch records that have
MODEL_ID IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByModelKey(String... values)
Fetch records that have
MODEL_KEY IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByModelKeyAsync(List<String> values)
Fetch records that have
MODEL_KEY IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByOwnerId(String... values)
Fetch records that have
OWNER_ID IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByOwnerIdAsync(List<String> values)
Fetch records that have
OWNER_ID IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByUi(String... values)
Fetch records that have
UI IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByUiAsync(List<String> values)
Fetch records that have
UI IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<GGraphic> |
GGraphicDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<GGraphic>> |
GGraphicDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<GGraphic> |
GGraphicDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
GGraphicDao.getId(GGraphic object) |
| Constructor and Description |
|---|
GGraphic(GGraphic value) |
Copyright © 2021. All rights reserved.