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