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