| Package | Description |
|---|---|
| cn.vertxup.erp.domain.tables.daos | |
| cn.vertxup.erp.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
EDept |
EDeptDao.fetchOneByKey(String value)
Fetch a unique record that has
KEY = value |
| Modifier and Type | Method and Description |
|---|---|
List<EDept> |
EDeptDao.fetchByActive(Boolean... values)
Fetch records that have
ACTIVE IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByActiveAsync(List<Boolean> values)
Fetch records that have
ACTIVE IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByCode(String... values)
Fetch records that have
CODE IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByCodeAsync(List<String> values)
Fetch records that have
CODE IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByComment(String... values)
Fetch records that have
COMMENT IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByCommentAsync(List<String> values)
Fetch records that have
COMMENT IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByCompanyId(String... values)
Fetch records that have
COMPANY_ID IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByCompanyIdAsync(List<String> values)
Fetch records that have
COMPANY_ID IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByCreatedAt(LocalDateTime... values)
Fetch records that have
CREATED_AT IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByCreatedAtAsync(List<LocalDateTime> values)
Fetch records that have
CREATED_AT IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByCreatedBy(String... values)
Fetch records that have
CREATED_BY IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByCreatedByAsync(List<String> values)
Fetch records that have
CREATED_BY IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByDeptId(String... values)
Fetch records that have
DEPT_ID IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByDeptIdAsync(List<String> values)
Fetch records that have
DEPT_ID IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByKey(String... values)
Fetch records that have
KEY IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByKeyAsync(List<String> values)
Fetch records that have
KEY IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByLanguage(String... values)
Fetch records that have
LANGUAGE IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByLanguageAsync(List<String> values)
Fetch records that have
LANGUAGE IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByManagerId(String... values)
Fetch records that have
MANAGER_ID IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByManagerIdAsync(List<String> values)
Fetch records that have
MANAGER_ID IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByManagerName(String... values)
Fetch records that have
MANAGER_NAME IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByManagerNameAsync(List<String> values)
Fetch records that have
MANAGER_NAME IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByMetadata(String... values)
Fetch records that have
METADATA IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByMetadataAsync(List<String> values)
Fetch records that have
METADATA IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByName(String... values)
Fetch records that have
NAME IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByNameAsync(List<String> values)
Fetch records that have
NAME IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchBySigma(String... values)
Fetch records that have
SIGMA IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchBySigmaAsync(List<String> values)
Fetch records that have
SIGMA IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByUpdatedAt(LocalDateTime... values)
Fetch records that have
UPDATED_AT IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByUpdatedAtAsync(List<LocalDateTime> values)
Fetch records that have
UPDATED_AT IN (values) asynchronously |
List<EDept> |
EDeptDao.fetchByUpdatedBy(String... values)
Fetch records that have
UPDATED_BY IN (values) |
CompletableFuture<List<EDept>> |
EDeptDao.fetchByUpdatedByAsync(List<String> values)
Fetch records that have
UPDATED_BY IN (values) asynchronously |
CompletableFuture<EDept> |
EDeptDao.fetchOneByKeyAsync(String value)
Fetch a unique record that has
KEY = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
EDeptDao.getId(EDept object) |
| Modifier and Type | Method and Description |
|---|---|
EDept |
EDept.setActive(Boolean active) |
EDept |
EDept.setCode(String code) |
EDept |
EDept.setComment(String comment) |
EDept |
EDept.setCompanyId(String companyId) |
EDept |
EDept.setCreatedAt(LocalDateTime createdAt) |
EDept |
EDept.setCreatedBy(String createdBy) |
EDept |
EDept.setDeptId(String deptId) |
EDept |
EDept.setKey(String key) |
EDept |
EDept.setLanguage(String language) |
EDept |
EDept.setManagerId(String managerId) |
EDept |
EDept.setManagerName(String managerName) |
EDept |
EDept.setMetadata(String metadata) |
EDept |
EDept.setName(String name) |
EDept |
EDept.setSigma(String sigma) |
EDept |
EDept.setUpdatedAt(LocalDateTime updatedAt) |
EDept |
EDept.setUpdatedBy(String updatedBy) |
| Constructor and Description |
|---|
EDept(EDept value) |
Copyright © 2021. All rights reserved.