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