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