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