| Package | Description |
|---|---|
| cn.vertxup.lbs.domain.tables.daos | |
| cn.vertxup.lbs.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
LTent |
LTentDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<LTent> |
LTentDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByContactName(String... values)
Fetch records that have
CONTACT_NAME IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByContactNameAsync(List<String> values)
Fetch records that have
CONTACT_NAME IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByContactPhone(String... values)
Fetch records that have
CONTACT_PHONE IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByContactPhoneAsync(List<String> values)
Fetch records that have
CONTACT_PHONE IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByLocationId(String... values)
Fetch records that have
LOCATION_ID IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByLocationIdAsync(List<String> values)
Fetch records that have
LOCATION_ID IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByOrder(Integer... values)
Fetch records that have
ORDER IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByOrderAsync(List<Integer> values)
Fetch records that have
ORDER IN (values) asynchronously |
List<LTent> |
LTentDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
List<LTent> |
LTentDao.fetchByYardId(String... values)
Fetch records that have
YARD_ID IN (values) |
CompletableFuture<List<LTent>> |
LTentDao.fetchByYardIdAsync(List<String> values)
Fetch records that have
YARD_ID IN (values) asynchronously |
CompletableFuture<LTent> |
LTentDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
LTentDao.getId(LTent object) |
| Modifier and Type | Method and Description |
|---|---|
LTent |
LTent.setActive(Boolean active) |
LTent |
LTent.setCode(String code) |
LTent |
LTent.setContactName(String contactName) |
LTent |
LTent.setContactPhone(String contactPhone) |
LTent |
LTent.setCreatedAt(LocalDateTime createdAt) |
LTent |
LTent.setCreatedBy(String createdBy) |
LTent |
LTent.setKey(String key) |
LTent |
LTent.setLanguage(String language) |
LTent |
LTent.setLocationId(String locationId) |
LTent |
LTent.setMetadata(String metadata) |
LTent |
LTent.setName(String name) |
LTent |
LTent.setOrder(Integer order) |
LTent |
LTent.setSigma(String sigma) |
LTent |
LTent.setUpdatedAt(LocalDateTime updatedAt) |
LTent |
LTent.setUpdatedBy(String updatedBy) |
LTent |
LTent.setYardId(String yardId) |
| Constructor and Description |
|---|
LTent(LTent value) |
Copyright © 2021. All rights reserved.