| Package | Description |
|---|---|
| cn.vertxup.erp.domain.tables.daos | |
| cn.vertxup.erp.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
EBrand |
EBrandDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<EBrand> |
EBrandDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByAlias(String... values)
Fetch records that have
ALIAS IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByAliasAsync(List<String> values)
Fetch records that have
ALIAS IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByArea(Integer... values)
Fetch records that have
AREA IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByAreaAsync(List<Integer> values)
Fetch records that have
AREA IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByAreaCategory(String... values)
Fetch records that have
AREA_CATEGORY IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByAreaCategoryAsync(List<String> values)
Fetch records that have
AREA_CATEGORY IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByAreaName(String... values)
Fetch records that have
AREA_NAME IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByAreaNameAsync(List<String> values)
Fetch records that have
AREA_NAME IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByCategoryCode(String... values)
Fetch records that have
CATEGORY_CODE IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByCategoryCodeAsync(List<String> values)
Fetch records that have
CATEGORY_CODE IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByCategoryName(String... values)
Fetch records that have
CATEGORY_NAME IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByCategoryNameAsync(List<String> values)
Fetch records that have
CATEGORY_NAME IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByCompanyName(String... values)
Fetch records that have
COMPANY_NAME IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByCompanyNameAsync(List<String> values)
Fetch records that have
COMPANY_NAME IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<EBrand> |
EBrandDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<EBrand>> |
EBrandDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<EBrand> |
EBrandDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
EBrandDao.getId(EBrand object) |
| Modifier and Type | Method and Description |
|---|---|
EBrand |
EBrand.setActive(Boolean active) |
EBrand |
EBrand.setAlias(String alias) |
EBrand |
EBrand.setArea(Integer area) |
EBrand |
EBrand.setAreaCategory(String areaCategory) |
EBrand |
EBrand.setAreaName(String areaName) |
EBrand |
EBrand.setCategoryCode(String categoryCode) |
EBrand |
EBrand.setCategoryName(String categoryName) |
EBrand |
EBrand.setCode(String code) |
EBrand |
EBrand.setCompanyName(String companyName) |
EBrand |
EBrand.setCreatedAt(LocalDateTime createdAt) |
EBrand |
EBrand.setCreatedBy(String createdBy) |
EBrand |
EBrand.setKey(String key) |
EBrand |
EBrand.setLanguage(String language) |
EBrand |
EBrand.setMetadata(String metadata) |
EBrand |
EBrand.setName(String name) |
EBrand |
EBrand.setSigma(String sigma) |
EBrand |
EBrand.setUpdatedAt(LocalDateTime updatedAt) |
EBrand |
EBrand.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
EBrand(EBrand value) |
Copyright © 2021. All rights reserved.