| Package | Description |
|---|---|
| cn.vertxup.lbs.domain.tables.daos | |
| cn.vertxup.lbs.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
LCountry |
LCountryDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<LCountry> |
LCountryDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByCurrency(String... values)
Fetch records that have
CURRENCY IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByCurrencyAsync(List<String> values)
Fetch records that have
CURRENCY IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByFlag(String... values)
Fetch records that have
FLAG IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByFlagAsync(List<String> values)
Fetch records that have
FLAG IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByOrder(Integer... values)
Fetch records that have
ORDER IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByOrderAsync(List<Integer> values)
Fetch records that have
ORDER IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByPhonePrefix(String... values)
Fetch records that have
PHONE_PREFIX IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByPhonePrefixAsync(List<String> values)
Fetch records that have
PHONE_PREFIX IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<LCountry> |
LCountryDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<LCountry>> |
LCountryDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<LCountry> |
LCountryDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
LCountryDao.getId(LCountry object) |
| Modifier and Type | Method and Description |
|---|---|
LCountry |
LCountry.setActive(Boolean active) |
LCountry |
LCountry.setCode(String code) |
LCountry |
LCountry.setCreatedAt(LocalDateTime createdAt) |
LCountry |
LCountry.setCreatedBy(String createdBy) |
LCountry |
LCountry.setCurrency(String currency) |
LCountry |
LCountry.setFlag(String flag) |
LCountry |
LCountry.setKey(String key) |
LCountry |
LCountry.setLanguage(String language) |
LCountry |
LCountry.setMetadata(String metadata) |
LCountry |
LCountry.setName(String name) |
LCountry |
LCountry.setOrder(Integer order) |
LCountry |
LCountry.setPhonePrefix(String phonePrefix) |
LCountry |
LCountry.setSigma(String sigma) |
LCountry |
LCountry.setUpdatedAt(LocalDateTime updatedAt) |
LCountry |
LCountry.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
LCountry(LCountry value) |
Copyright © 2021. All rights reserved.