| Package | Description |
|---|---|
| cn.vertxup.ambient.domain.tables.daos | |
| cn.vertxup.ambient.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
XAttachment |
XAttachmentDao.fetchOneByFileKey(String value)
Fetch a unique record that has
FILE_KEY = value |
XAttachment |
XAttachmentDao.fetchOneByFilePath(String value)
Fetch a unique record that has
FILE_PATH = value |
XAttachment |
XAttachmentDao.fetchOneByFileUrl(String value)
Fetch a unique record that has
FILE_URL = value |
XAttachment |
XAttachmentDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<XAttachment> |
XAttachmentDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByExtension(String... values)
Fetch records that have
EXTENSION IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByExtensionAsync(List<String> values)
Fetch records that have
EXTENSION IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByFileKey(String... values)
Fetch records that have
FILE_KEY IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByFileKeyAsync(List<String> values)
Fetch records that have
FILE_KEY IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByFileName(String... values)
Fetch records that have
FILE_NAME IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByFileNameAsync(List<String> values)
Fetch records that have
FILE_NAME IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByFilePath(String... values)
Fetch records that have
FILE_PATH IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByFilePathAsync(List<String> values)
Fetch records that have
FILE_PATH IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByFileUrl(String... values)
Fetch records that have
FILE_URL IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByFileUrlAsync(List<String> values)
Fetch records that have
FILE_URL IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByMime(String... values)
Fetch records that have
MIME IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByMimeAsync(List<String> values)
Fetch records that have
MIME IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByModule(String... values)
Fetch records that have
MODULE IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByModuleAsync(List<String> values)
Fetch records that have
MODULE IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchBySize(Integer... values)
Fetch records that have
SIZE IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchBySizeAsync(List<Integer> values)
Fetch records that have
SIZE IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByStatus(String... values)
Fetch records that have
STATUS IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByStatusAsync(List<String> values)
Fetch records that have
STATUS IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByStoreWay(String... values)
Fetch records that have
STORE_WAY IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByStoreWayAsync(List<String> values)
Fetch records that have
STORE_WAY IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<XAttachment> |
XAttachmentDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<XAttachment>> |
XAttachmentDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<XAttachment> |
XAttachmentDao.fetchOneByFileKeyAsync(String value)
Fetch a unique record that has
FILE_KEY = value asynchronously |
CompletableFuture<XAttachment> |
XAttachmentDao.fetchOneByFilePathAsync(String value)
Fetch a unique record that has
FILE_PATH = value asynchronously |
CompletableFuture<XAttachment> |
XAttachmentDao.fetchOneByFileUrlAsync(String value)
Fetch a unique record that has
FILE_URL = value asynchronously |
CompletableFuture<XAttachment> |
XAttachmentDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
XAttachmentDao.getId(XAttachment object) |
| Constructor and Description |
|---|
XAttachment(XAttachment value) |
Copyright © 2021. All rights reserved.