| Package | Description |
|---|---|
| up.god.jooq.domain.tables.daos | |
| up.god.jooq.domain.tables.pojos |
| Modifier and Type | Method and Description |
|---|---|
SecUser |
SecUserDao.fetchOneByPkId(String value)
Fetch a unique record that has
PK_ID = value |
| Modifier and Type | Method and Description |
|---|---|
List<SecUser> |
SecUserDao.fetchByIsActive(Boolean... values)
Fetch records that have
IS_ACTIVE IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByIsActiveAsync(List<Boolean> values)
Fetch records that have
IS_ACTIVE IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByJConfig(String... values)
Fetch records that have
J_CONFIG IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByJConfigAsync(List<String> values)
Fetch records that have
J_CONFIG IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByPkId(String... values)
Fetch records that have
PK_ID IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByPkIdAsync(List<String> values)
Fetch records that have
PK_ID IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySAlipay(String... values)
Fetch records that have
S_ALIPAY IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySAlipayAsync(List<String> values)
Fetch records that have
S_ALIPAY IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySCode(String... values)
Fetch records that have
S_CODE IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySCodeAsync(List<String> values)
Fetch records that have
S_CODE IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySEmail(String... values)
Fetch records that have
S_EMAIL IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySEmailAsync(List<String> values)
Fetch records that have
S_EMAIL IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySMobile(String... values)
Fetch records that have
S_MOBILE IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySMobileAsync(List<String> values)
Fetch records that have
S_MOBILE IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySPassword(String... values)
Fetch records that have
S_PASSWORD IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySPasswordAsync(List<String> values)
Fetch records that have
S_PASSWORD IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySQq(String... values)
Fetch records that have
S_QQ IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySQqAsync(List<String> values)
Fetch records that have
S_QQ IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySSecret(String... values)
Fetch records that have
S_SECRET IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySSecretAsync(List<String> values)
Fetch records that have
S_SECRET IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySTaobao(String... values)
Fetch records that have
S_TAOBAO IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySTaobaoAsync(List<String> values)
Fetch records that have
S_TAOBAO IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySUsername(String... values)
Fetch records that have
S_USERNAME IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySUsernameAsync(List<String> values)
Fetch records that have
S_USERNAME IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySWechat(String... values)
Fetch records that have
S_WECHAT IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySWechatAsync(List<String> values)
Fetch records that have
S_WECHAT IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchBySWeibo(String... values)
Fetch records that have
S_WEIBO IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchBySWeiboAsync(List<String> values)
Fetch records that have
S_WEIBO IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByZCreateBy(String... values)
Fetch records that have
Z_CREATE_BY IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByZCreateByAsync(List<String> values)
Fetch records that have
Z_CREATE_BY IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByZCreateTime(Timestamp... values)
Fetch records that have
Z_CREATE_TIME IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByZCreateTimeAsync(List<Timestamp> values)
Fetch records that have
Z_CREATE_TIME IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByZLanguage(String... values)
Fetch records that have
Z_LANGUAGE IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByZLanguageAsync(List<String> values)
Fetch records that have
Z_LANGUAGE IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByZSigma(String... values)
Fetch records that have
Z_SIGMA IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByZSigmaAsync(List<String> values)
Fetch records that have
Z_SIGMA IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByZUpdateBy(String... values)
Fetch records that have
Z_UPDATE_BY IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByZUpdateByAsync(List<String> values)
Fetch records that have
Z_UPDATE_BY IN (values) asynchronously |
List<SecUser> |
SecUserDao.fetchByZUpdateTime(Timestamp... values)
Fetch records that have
Z_UPDATE_TIME IN (values) |
CompletableFuture<List<SecUser>> |
SecUserDao.fetchByZUpdateTimeAsync(List<Timestamp> values)
Fetch records that have
Z_UPDATE_TIME IN (values) asynchronously |
CompletableFuture<SecUser> |
SecUserDao.fetchOneByPkIdAsync(String value)
Fetch a unique record that has
PK_ID = value asynchronously |
| Modifier and Type | Method and Description |
|---|---|
protected String |
SecUserDao.getId(SecUser object) |
| Modifier and Type | Method and Description |
|---|---|
SecUser |
SecUser.setIsActive(Boolean isActive) |
SecUser |
SecUser.setJConfig(String jConfig) |
SecUser |
SecUser.setPkId(String pkId) |
SecUser |
SecUser.setSAlipay(String sAlipay) |
SecUser |
SecUser.setSCode(String sCode) |
SecUser |
SecUser.setSEmail(String sEmail) |
SecUser |
SecUser.setSMobile(String sMobile) |
SecUser |
SecUser.setSPassword(String sPassword) |
SecUser |
SecUser.setSQq(String sQq) |
SecUser |
SecUser.setSSecret(String sSecret) |
SecUser |
SecUser.setSTaobao(String sTaobao) |
SecUser |
SecUser.setSUsername(String sUsername) |
SecUser |
SecUser.setSWechat(String sWechat) |
SecUser |
SecUser.setSWeibo(String sWeibo) |
SecUser |
SecUser.setZCreateBy(String zCreateBy) |
SecUser |
SecUser.setZCreateTime(Timestamp zCreateTime) |
SecUser |
SecUser.setZLanguage(String zLanguage) |
SecUser |
SecUser.setZSigma(String zSigma) |
SecUser |
SecUser.setZUpdateBy(String zUpdateBy) |
SecUser |
SecUser.setZUpdateTime(Timestamp zUpdateTime) |
| Constructor and Description |
|---|
SecUser(SecUser value) |
Copyright © 2018. All rights reserved.