| Package | Description |
|---|---|
| cn.vertxup.atom.domain.tables.daos | |
| cn.vertxup.atom.domain.tables.pojos | |
| io.vertx.tp.atom.modeling | |
| io.vertx.tp.optic.modeling |
| Modifier and Type | Method and Description |
|---|---|
MEntity |
MEntityDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<MEntity> |
MEntityDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByComments(String... values)
Fetch records that have
COMMENTS IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByCommentsAsync(List<String> values)
Fetch records that have
COMMENTS IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByIdentifier(String... values)
Fetch records that have
IDENTIFIER IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByIdentifierAsync(List<String> values)
Fetch records that have
IDENTIFIER IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByNamespace(String... values)
Fetch records that have
NAMESPACE IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByNamespaceAsync(List<String> values)
Fetch records that have
NAMESPACE IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByTableName(String... values)
Fetch records that have
TABLE_NAME IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByTableNameAsync(List<String> values)
Fetch records that have
TABLE_NAME IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByType(String... values)
Fetch records that have
TYPE IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByTypeAsync(List<String> values)
Fetch records that have
TYPE IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<MEntity> |
MEntityDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<MEntity>> |
MEntityDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<MEntity> |
MEntityDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
MEntityDao.getId(MEntity object) |
| Modifier and Type | Method and Description |
|---|---|
MEntity |
MEntity.setActive(Boolean active) |
MEntity |
MEntity.setComments(String comments) |
MEntity |
MEntity.setCreatedAt(LocalDateTime createdAt) |
MEntity |
MEntity.setCreatedBy(String createdBy) |
MEntity |
MEntity.setIdentifier(String identifier) |
MEntity |
MEntity.setKey(String key) |
MEntity |
MEntity.setLanguage(String language) |
MEntity |
MEntity.setMetadata(String metadata) |
MEntity |
MEntity.setName(String name) |
MEntity |
MEntity.setNamespace(String namespace) |
MEntity |
MEntity.setSigma(String sigma) |
MEntity |
MEntity.setTableName(String tableName) |
MEntity |
MEntity.setType(String type) |
MEntity |
MEntity.setUpdatedAt(LocalDateTime updatedAt) |
MEntity |
MEntity.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
MEntity(MEntity value) |
| Modifier and Type | Method and Description |
|---|---|
MEntity |
Schema.getEntity() |
| Modifier and Type | Method and Description |
|---|---|
MEntity |
JsonSchema.getEntity()
读取当前Schema关联实体
|
Copyright © 2021. All rights reserved.