| Package | Description |
|---|---|
| cn.vertxup.lbs.domain.tables.daos | |
| cn.vertxup.lbs.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
LLocation |
LLocationDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<LLocation> |
LLocationDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByAddress(String... values)
Fetch records that have
ADDRESS IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByAddressAsync(List<String> values)
Fetch records that have
ADDRESS IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByCity(String... values)
Fetch records that have
CITY IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByCityAsync(List<String> values)
Fetch records that have
CITY IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByCountry(String... values)
Fetch records that have
COUNTRY IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByCountryAsync(List<String> values)
Fetch records that have
COUNTRY IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByFullName(String... values)
Fetch records that have
FULL_NAME IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByFullNameAsync(List<String> values)
Fetch records that have
FULL_NAME IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByPostal(String... values)
Fetch records that have
POSTAL IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByPostalAsync(List<String> values)
Fetch records that have
POSTAL IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByRegion(String... values)
Fetch records that have
REGION IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByRegionAsync(List<String> values)
Fetch records that have
REGION IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByRegionId(String... values)
Fetch records that have
REGION_ID IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByRegionIdAsync(List<String> values)
Fetch records that have
REGION_ID IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByState(String... values)
Fetch records that have
STATE IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByStateAsync(List<String> values)
Fetch records that have
STATE IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByStreet1(String... values)
Fetch records that have
STREET1 IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByStreet1Async(List<String> values)
Fetch records that have
STREET1 IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByStreet2(String... values)
Fetch records that have
STREET2 IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByStreet2Async(List<String> values)
Fetch records that have
STREET2 IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByStreet3(String... values)
Fetch records that have
STREET3 IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByStreet3Async(List<String> values)
Fetch records that have
STREET3 IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<LLocation> |
LLocationDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<LLocation>> |
LLocationDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<LLocation> |
LLocationDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
LLocationDao.getId(LLocation object) |
| Constructor and Description |
|---|
LLocation(LLocation value) |
Copyright © 2021. All rights reserved.