| Package | Description |
|---|---|
| cn.vertxup.ambient.domain.tables.daos | |
| cn.vertxup.ambient.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
XActivity |
XActivityDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<XActivity> |
XActivityDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByDescription(String... values)
Fetch records that have
DESCRIPTION IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByDescriptionAsync(List<String> values)
Fetch records that have
DESCRIPTION IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByModelId(String... values)
Fetch records that have
MODEL_ID IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByModelIdAsync(List<String> values)
Fetch records that have
MODEL_ID IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByModelKey(String... values)
Fetch records that have
MODEL_KEY IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByModelKeyAsync(List<String> values)
Fetch records that have
MODEL_KEY IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByRecordNew(String... values)
Fetch records that have
RECORD_NEW IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByRecordNewAsync(List<String> values)
Fetch records that have
RECORD_NEW IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByRecordOld(String... values)
Fetch records that have
RECORD_OLD IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByRecordOldAsync(List<String> values)
Fetch records that have
RECORD_OLD IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchBySerial(String... values)
Fetch records that have
SERIAL IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchBySerialAsync(List<String> values)
Fetch records that have
SERIAL IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<XActivity> |
XActivityDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<XActivity>> |
XActivityDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<XActivity> |
XActivityDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
XActivityDao.getId(XActivity object) |
| Modifier and Type | Method and Description |
|---|---|
XActivity |
XActivity.setActive(Boolean active) |
XActivity |
XActivity.setCreatedAt(LocalDateTime createdAt) |
XActivity |
XActivity.setCreatedBy(String createdBy) |
XActivity |
XActivity.setDescription(String description) |
XActivity |
XActivity.setKey(String key) |
XActivity |
XActivity.setLanguage(String language) |
XActivity |
XActivity.setMetadata(String metadata) |
XActivity |
XActivity.setModelId(String modelId) |
XActivity |
XActivity.setModelKey(String modelKey) |
XActivity |
XActivity.setRecordNew(String recordNew) |
XActivity |
XActivity.setRecordOld(String recordOld) |
XActivity |
XActivity.setSerial(String serial) |
XActivity |
XActivity.setSigma(String sigma) |
XActivity |
XActivity.setType(String type) |
XActivity |
XActivity.setUpdatedAt(LocalDateTime updatedAt) |
XActivity |
XActivity.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
XActivity(XActivity value) |
Copyright © 2021. All rights reserved.