init
This commit is contained in:
parent
7d18c3a3ca
commit
2d17db6496
|
|
@ -28,4 +28,7 @@ public class YMcodeController {
|
|||
map.put("code", "");
|
||||
return R.SUCCESS(map);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,9 +3,7 @@ package jj.tech.paolu.biz.webadmin.service;
|
|||
import jj.tech.paolu.biz.webadmin.dao.TreeMapper;
|
||||
import jj.tech.paolu.biz.webadmin.vo.MenuTree;
|
||||
import jj.tech.paolu.repository.mybatis.dao.SysMenuMapper;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.SysAdminRoleDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.SysMenuDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.SysRoleMenuDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.entity.SysMenu;
|
||||
import jj.tech.paolu.utils.R;
|
||||
import org.mybatis.dynamic.sql.render.RenderingStrategies;
|
||||
|
|
@ -39,24 +37,8 @@ public class MenuService {
|
|||
menuList.addAll(list);
|
||||
return menuList;
|
||||
}
|
||||
else{//其他用户,根据角色来查询
|
||||
var adminrole = select(SysAdminRoleDynamicSqlSupport.roleid)
|
||||
.from(SysAdminRoleDynamicSqlSupport.sysAdminRole)
|
||||
.where(SysAdminRoleDynamicSqlSupport.adminid, isEqualTo(userId));
|
||||
|
||||
var rolemenu = select(SysRoleMenuDynamicSqlSupport.menuid)
|
||||
.from(SysRoleMenuDynamicSqlSupport.sysRoleMenu)
|
||||
.where(SysRoleMenuDynamicSqlSupport.roleid, isIn(adminrole));
|
||||
|
||||
var sysmenu = select(SysMenuMapper.selectList)
|
||||
.from(SysMenuDynamicSqlSupport.sysMenu)
|
||||
.where(SysMenuDynamicSqlSupport.id, isIn(rolemenu))
|
||||
.orderBy(SysMenuDynamicSqlSupport.sort)
|
||||
.build()
|
||||
.render(RenderingStrategies.MYBATIS3);
|
||||
List<MenuTree> list = treeMapper.selectManyMenu(sysmenu);
|
||||
menuList.addAll(list);
|
||||
return menuList;
|
||||
else{
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,32 +1,23 @@
|
|||
package jj.tech.paolu.biz.webadmin.service;
|
||||
|
||||
import static org.mybatis.dynamic.sql.SqlBuilder.isEqualTo;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import jj.tech.paolu.config.enums.CertificateApplyCheckStatus;
|
||||
import jj.tech.paolu.config.enums.UserType;
|
||||
import jj.tech.paolu.repository.mybatis.dao.SysAdminMapper;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.CertificateApplyRecordDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.SysAdminDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.SysAdminRoleDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.entity.CertificateApplyRecord;
|
||||
import jj.tech.paolu.repository.mybatis.entity.SysAdmin;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import org.mybatis.dynamic.sql.SqlBuilder;
|
||||
import org.mybatis.dynamic.sql.render.RenderingStrategies;
|
||||
import org.mybatis.dynamic.sql.select.render.DefaultSelectStatementProvider;
|
||||
import org.mybatis.dynamic.sql.select.render.SelectStatementProvider;
|
||||
import org.mybatis.dynamic.sql.where.WhereApplier;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import jj.tech.paolu.biz.webadmin.dao.TreeMapper;
|
||||
import jj.tech.paolu.biz.webadmin.vo.OrgTree;
|
||||
import jj.tech.paolu.config.enums.UserType;
|
||||
import jj.tech.paolu.repository.mybatis.dao.SysAdminMapper;
|
||||
import jj.tech.paolu.repository.mybatis.dao.SysOrgMapper;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.SysAdminDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.entity.SysAdmin;
|
||||
import jj.tech.paolu.repository.mybatis.entity.SysOrg;
|
||||
|
||||
import static org.mybatis.dynamic.sql.SqlBuilder.*;
|
||||
|
||||
@Service
|
||||
public class OrgService {
|
||||
@Autowired SysOrgMapper sysOrgMapper;
|
||||
|
|
|
|||
|
|
@ -1,32 +0,0 @@
|
|||
package jj.tech.paolu.biz.webadmin.service;
|
||||
|
||||
import jj.tech.paolu.repository.mybatis.dao.SysAdminMapper;
|
||||
import jj.tech.paolu.repository.mybatis.dao.SysAdminWeidMapper;
|
||||
import jj.tech.paolu.repository.mybatis.dao.support.SysAdminWeidDynamicSqlSupport;
|
||||
import jj.tech.paolu.repository.mybatis.entity.SysAdminWeid;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
import static org.mybatis.dynamic.sql.SqlBuilder.isEqualTo;
|
||||
|
||||
@Service
|
||||
public class SysAdminWeidService {
|
||||
@Autowired
|
||||
SysAdminMapper sysAdminMapper;
|
||||
|
||||
@Autowired
|
||||
SysAdminWeidMapper sysAdminWeidMapper;
|
||||
|
||||
public SysAdminWeid selectByUserId(String userId){
|
||||
SysAdminWeid bean =
|
||||
sysAdminWeidMapper.selectOne(s->s
|
||||
.where(SysAdminWeidDynamicSqlSupport.admin_id, isEqualTo(userId))
|
||||
.limit(1)
|
||||
).orElse(null);
|
||||
return bean;
|
||||
}
|
||||
|
||||
public int deleteByUserId(String userId){
|
||||
return sysAdminWeidMapper.delete(s->s.where(SysAdminWeidDynamicSqlSupport.admin_id, isEqualTo(userId)));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
package jj.tech.paolu.biz.webadmin.vo;
|
||||
|
||||
import jj.tech.paolu.repository.mybatis.entity.ReadLog;
|
||||
|
||||
public class ReadLogVo extends ReadLog {
|
||||
private long timestamp;
|
||||
|
||||
public long getTimestamp() {
|
||||
return timestamp;
|
||||
}
|
||||
|
||||
public void setTimestamp(long timestamp) {
|
||||
this.timestamp = timestamp;
|
||||
}
|
||||
}
|
||||
|
|
@ -26,9 +26,9 @@ public class DefaultCatalog extends CatalogImpl {
|
|||
public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();
|
||||
|
||||
/**
|
||||
* The schema <code>public</code>.
|
||||
* The schema <code>yx</code>.
|
||||
*/
|
||||
public final Public PUBLIC = Public.PUBLIC;
|
||||
public final Yx YX = Yx.YX;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
|
|
@ -40,15 +40,15 @@ public class DefaultCatalog extends CatalogImpl {
|
|||
@Override
|
||||
public final List<Schema> getSchemas() {
|
||||
return Arrays.asList(
|
||||
Public.PUBLIC
|
||||
Yx.YX
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* A reference to the 3.18 minor release of the code generator. If this
|
||||
* A reference to the 3.19 minor release of the code generator. If this
|
||||
* doesn't compile, it's because the runtime library uses an older minor
|
||||
* release, namely: 3.18. You can turn off the generation of this reference
|
||||
* release, namely: 3.19. You can turn off the generation of this reference
|
||||
* by specifying /configuration/generator/generate/jooqVersionReference
|
||||
*/
|
||||
private static final String REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_18;
|
||||
private static final String REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_19;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,35 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq;
|
||||
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectory;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectoryFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysArea;
|
||||
|
||||
import org.jooq.Index;
|
||||
import org.jooq.OrderField;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.Internal;
|
||||
|
||||
|
||||
/**
|
||||
* A class modelling indexes of tables in public.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Indexes {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// INDEX definitions
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final Index FILES_APPLY_DOCS_FILES_APPLY_ID_IDX = Internal.createIndex(DSL.name("files_apply_docs_files_apply_id_idx"), FilesApplyDocs.FILES_APPLY_DOCS, new OrderField[] { FilesApplyDocs.FILES_APPLY_DOCS.FILES_APPLY_ID }, false);
|
||||
public static final Index IDX_PARENT_CODE = Internal.createIndex(DSL.name("idx_parent_code"), SysArea.SYS_AREA, new OrderField[] { SysArea.SYS_AREA.PARENT_CODE }, false);
|
||||
public static final Index IDX_SYN_DIREC_PID = Internal.createIndex(DSL.name("idx_syn_direc_pid"), SynDirectory.SYN_DIRECTORY, new OrderField[] { SynDirectory.SYN_DIRECTORY.P_ID }, false);
|
||||
public static final Index IDX_SYN_DIRECTOR_FILE_PID = Internal.createIndex(DSL.name("idx_syn_director_file_pid"), SynDirectoryFile.SYN_DIRECTORY_FILE, new OrderField[] { SynDirectoryFile.SYN_DIRECTORY_FILE.P_ID }, false);
|
||||
public static final Index IDX_SYN_FILE_PID = Internal.createIndex(DSL.name("idx_syn_file_pid"), SynFile.SYN_FILE, new OrderField[] { SynFile.SYN_FILE.P_ID }, false);
|
||||
public static final Index UK_CODE = Internal.createIndex(DSL.name("uk_code"), SysArea.SYS_AREA, new OrderField[] { SysArea.SYS_AREA.AREA_CODE }, false);
|
||||
}
|
||||
|
|
@ -4,63 +4,26 @@
|
|||
package jj.tech.paolu.repository.jooq;
|
||||
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.ArchiveSynLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateDetail;
|
||||
import jj.tech.paolu.repository.jooq.tables.DecryptLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.DownloadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyCheckRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDirectoryDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDownloadRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.Project;
|
||||
import jj.tech.paolu.repository.jooq.tables.ReadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedRuleConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedSynAll;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectory;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectoryFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdmin;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminWeid;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysArea;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysOrg;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleSign;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleUrl;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysUrls;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ArchiveSynLogRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateApplyRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateApplyRecordRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateDetailRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.DecryptLogRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.DownloadLogRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyCheckRecordRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDirectoryDocsRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDocsRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDownloadRecordRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ProjectRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ReadLogRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SharedRuleConfigRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SharedSynAllRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynDirectoryFileRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynDirectoryRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynFileRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminMenuRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminRoleRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminWeidRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAreaRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysConfigRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysMenuRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysOrgRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleMenuRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysResourceRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleSignRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleResourceRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleUrlRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysUrlsRecord;
|
||||
|
||||
|
|
@ -71,8 +34,7 @@ import org.jooq.impl.Internal;
|
|||
|
||||
|
||||
/**
|
||||
* A class modelling foreign key relationships and constraints of tables in
|
||||
* public.
|
||||
* A class modelling foreign key relationships and constraints of tables in yx.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Keys {
|
||||
|
|
@ -81,42 +43,19 @@ public class Keys {
|
|||
// UNIQUE and PRIMARY KEY definitions
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final UniqueKey<ArchiveSynLogRecord> ARCHIVE_SYN_LOG_PKEY = Internal.createUniqueKey(ArchiveSynLog.ARCHIVE_SYN_LOG, DSL.name("archive_syn_log_pkey"), new TableField[] { ArchiveSynLog.ARCHIVE_SYN_LOG.ID }, true);
|
||||
public static final UniqueKey<CertificateApplyRecord> CERTIFICATE_APPLY_CER_ID_KEY = Internal.createUniqueKey(CertificateApply.CERTIFICATE_APPLY, DSL.name("certificate_apply_cer_id_key"), new TableField[] { CertificateApply.CERTIFICATE_APPLY.CER_ID }, true);
|
||||
public static final UniqueKey<CertificateApplyRecord> CERTIFICATE_APPLY_PKEY = Internal.createUniqueKey(CertificateApply.CERTIFICATE_APPLY, DSL.name("certificate_apply_pkey"), new TableField[] { CertificateApply.CERTIFICATE_APPLY.ID }, true);
|
||||
public static final UniqueKey<CertificateApplyRecordRecord> CERTIFICATE_APPLY_RECORD_PKEY = Internal.createUniqueKey(jj.tech.paolu.repository.jooq.tables.CertificateApplyRecord.CERTIFICATE_APPLY_RECORD, DSL.name("certificate_apply_record_pkey"), new TableField[] { jj.tech.paolu.repository.jooq.tables.CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.ID }, true);
|
||||
public static final UniqueKey<CertificateDetailRecord> CERTIFICATE_DETAIL_PKEY = Internal.createUniqueKey(CertificateDetail.CERTIFICATE_DETAIL, DSL.name("certificate_detail_pkey"), new TableField[] { CertificateDetail.CERTIFICATE_DETAIL.ID }, true);
|
||||
public static final UniqueKey<DecryptLogRecord> DECRYPT_PKEY = Internal.createUniqueKey(DecryptLog.DECRYPT_LOG, DSL.name("decrypt_pkey"), new TableField[] { DecryptLog.DECRYPT_LOG.ID }, true);
|
||||
public static final UniqueKey<DownloadLogRecord> DOWNLOAD_LOG_PKEY = Internal.createUniqueKey(DownloadLog.DOWNLOAD_LOG, DSL.name("download_log_pkey"), new TableField[] { DownloadLog.DOWNLOAD_LOG.ID }, true);
|
||||
public static final UniqueKey<FilesApplyRecord> FILES_APPLY_PKEY = Internal.createUniqueKey(FilesApply.FILES_APPLY, DSL.name("files_apply_pkey"), new TableField[] { FilesApply.FILES_APPLY.ID }, true);
|
||||
public static final UniqueKey<FilesApplyCheckRecordRecord> FILES_APPLY_CHECK_RECORD_PKEY = Internal.createUniqueKey(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD, DSL.name("files_apply_check_record_pkey"), new TableField[] { FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.ID }, true);
|
||||
public static final UniqueKey<FilesApplyDirectoryDocsRecord> FILES_APPLY_DIRECTORY_DOCS_PKEY = Internal.createUniqueKey(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS, DSL.name("files_apply_directory_docs_pkey"), new TableField[] { FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ID }, true);
|
||||
public static final UniqueKey<FilesApplyDocsRecord> FILES_APPLY_DOCS_PKEY = Internal.createUniqueKey(FilesApplyDocs.FILES_APPLY_DOCS, DSL.name("files_apply_docs_pkey"), new TableField[] { FilesApplyDocs.FILES_APPLY_DOCS.ID }, true);
|
||||
public static final UniqueKey<FilesApplyDownloadRecordRecord> FILES_APPLY_DOWNLOAD_RECORD_PKEY = Internal.createUniqueKey(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD, DSL.name("files_apply_download_record_pkey"), new TableField[] { FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ID }, true);
|
||||
public static final UniqueKey<ProjectRecord> PROJECT_PKEY = Internal.createUniqueKey(Project.PROJECT, DSL.name("project_pkey"), new TableField[] { Project.PROJECT.ID }, true);
|
||||
public static final UniqueKey<ReadLogRecord> READ_LOG_PKEY = Internal.createUniqueKey(ReadLog.READ_LOG, DSL.name("read_log_pkey"), new TableField[] { ReadLog.READ_LOG.ID }, true);
|
||||
public static final UniqueKey<SharedRuleConfigRecord> SHARED_RULE_CONFIG_PKEY = Internal.createUniqueKey(SharedRuleConfig.SHARED_RULE_CONFIG, DSL.name("shared_rule_config_pkey"), new TableField[] { SharedRuleConfig.SHARED_RULE_CONFIG.ID }, true);
|
||||
public static final UniqueKey<SharedSynAllRecord> SHARED_SYN_ALL_PKEY = Internal.createUniqueKey(SharedSynAll.SHARED_SYN_ALL, DSL.name("shared_syn_all_pkey"), new TableField[] { SharedSynAll.SHARED_SYN_ALL.ID }, true);
|
||||
public static final UniqueKey<SharedSynAllRecord> SHARED_SYN_ALL_SYN_ID_KEY = Internal.createUniqueKey(SharedSynAll.SHARED_SYN_ALL, DSL.name("shared_syn_all_syn_id_key"), new TableField[] { SharedSynAll.SHARED_SYN_ALL.SYN_ID }, true);
|
||||
public static final UniqueKey<SharedSynAllRecord> SHARED_SYN_ALL_SYN_ID_SYN_TYPE_KEY = Internal.createUniqueKey(SharedSynAll.SHARED_SYN_ALL, DSL.name("shared_syn_all_syn_id_syn_type_key"), new TableField[] { SharedSynAll.SHARED_SYN_ALL.SYN_ID, SharedSynAll.SHARED_SYN_ALL.SYN_TYPE }, true);
|
||||
public static final UniqueKey<SynDirectoryRecord> SYN_DIRECTORY_PKEY = Internal.createUniqueKey(SynDirectory.SYN_DIRECTORY, DSL.name("syn_directory_pkey"), new TableField[] { SynDirectory.SYN_DIRECTORY.ID }, true);
|
||||
public static final UniqueKey<SynDirectoryFileRecord> SYN_DIRECTORY_FILE_PKEY = Internal.createUniqueKey(SynDirectoryFile.SYN_DIRECTORY_FILE, DSL.name("syn_directory_file_pkey"), new TableField[] { SynDirectoryFile.SYN_DIRECTORY_FILE.ID }, true);
|
||||
public static final UniqueKey<SynFileRecord> SYN_FILE_PKEY = Internal.createUniqueKey(SynFile.SYN_FILE, DSL.name("syn_file_pkey"), new TableField[] { SynFile.SYN_FILE.ID }, true);
|
||||
public static final UniqueKey<SysAdminRecord> SYS_ADMIN_PKEY = Internal.createUniqueKey(SysAdmin.SYS_ADMIN, DSL.name("sys_admin_pkey"), new TableField[] { SysAdmin.SYS_ADMIN.ID }, true);
|
||||
public static final UniqueKey<SysAdminRecord> SYS_ADMIN_USERNAME_KEY = Internal.createUniqueKey(SysAdmin.SYS_ADMIN, DSL.name("sys_admin_username_key"), new TableField[] { SysAdmin.SYS_ADMIN.USERNAME }, true);
|
||||
public static final UniqueKey<SysAdminRoleRecord> SYS_ADMIN_ROLE_PKEY = Internal.createUniqueKey(SysAdminRole.SYS_ADMIN_ROLE, DSL.name("sys_admin_role_pkey"), new TableField[] { SysAdminRole.SYS_ADMIN_ROLE.ID }, true);
|
||||
public static final UniqueKey<SysAdminWeidRecord> SYS_ADMIN_WEID_ADMIN_ID_KEY = Internal.createUniqueKey(SysAdminWeid.SYS_ADMIN_WEID, DSL.name("sys_admin_weid_admin_id_key"), new TableField[] { SysAdminWeid.SYS_ADMIN_WEID.ADMIN_ID }, true);
|
||||
public static final UniqueKey<SysAdminWeidRecord> SYS_ADMIN_WEID_PKEY = Internal.createUniqueKey(SysAdminWeid.SYS_ADMIN_WEID, DSL.name("sys_admin_weid_pkey"), new TableField[] { SysAdminWeid.SYS_ADMIN_WEID.ID }, true);
|
||||
public static final UniqueKey<SysAreaRecord> SYS_AREA_PKEY = Internal.createUniqueKey(SysArea.SYS_AREA, DSL.name("sys_area_pkey"), new TableField[] { SysArea.SYS_AREA.ID }, true);
|
||||
public static final UniqueKey<SysConfigRecord> SYS_CONFIG_KEYS_KEY = Internal.createUniqueKey(SysConfig.SYS_CONFIG, DSL.name("sys_config_keys_key"), new TableField[] { SysConfig.SYS_CONFIG.KEYS }, true);
|
||||
public static final UniqueKey<SysConfigRecord> SYS_CONFIG_PKEY = Internal.createUniqueKey(SysConfig.SYS_CONFIG, DSL.name("sys_config_pkey"), new TableField[] { SysConfig.SYS_CONFIG.ID }, true);
|
||||
public static final UniqueKey<SysMenuRecord> SYS_MENU_PKEY = Internal.createUniqueKey(SysMenu.SYS_MENU, DSL.name("sys_menu_pkey"), new TableField[] { SysMenu.SYS_MENU.ID }, true);
|
||||
public static final UniqueKey<SysOrgRecord> SYS_ORG_PKEY1 = Internal.createUniqueKey(SysOrg.SYS_ORG, DSL.name("sys_org_pkey1"), new TableField[] { SysOrg.SYS_ORG.ID }, true);
|
||||
public static final UniqueKey<SysRoleRecord> SYS_ROLE_PKEY = Internal.createUniqueKey(SysRole.SYS_ROLE, DSL.name("sys_role_pkey"), new TableField[] { SysRole.SYS_ROLE.ID }, true);
|
||||
public static final UniqueKey<SysRoleMenuRecord> SYS_ROLE_MENU_PKEY = Internal.createUniqueKey(SysRoleMenu.SYS_ROLE_MENU, DSL.name("sys_role_menu_pkey"), new TableField[] { SysRoleMenu.SYS_ROLE_MENU.ID }, true);
|
||||
public static final UniqueKey<SysRoleMenuRecord> SYS_ROLE_MENU_ROLEID_RESID_KEY = Internal.createUniqueKey(SysRoleMenu.SYS_ROLE_MENU, DSL.name("sys_role_menu_roleid_resid_key"), new TableField[] { SysRoleMenu.SYS_ROLE_MENU.ROLEID, SysRoleMenu.SYS_ROLE_MENU.MENUID }, true);
|
||||
public static final UniqueKey<SysRoleSignRecord> SYS_ROLE_SIGN_PKEY = Internal.createUniqueKey(SysRoleSign.SYS_ROLE_SIGN, DSL.name("sys_role_sign_pkey"), new TableField[] { SysRoleSign.SYS_ROLE_SIGN.ID }, true);
|
||||
public static final UniqueKey<SysRoleUrlRecord> SYS_ROLE_URL_PKEY = Internal.createUniqueKey(SysRoleUrl.SYS_ROLE_URL, DSL.name("sys_role_url_pkey"), new TableField[] { SysRoleUrl.SYS_ROLE_URL.ID }, true);
|
||||
public static final UniqueKey<SysUrlsRecord> SYS_URLS_PKEY = Internal.createUniqueKey(SysUrls.SYS_URLS, DSL.name("sys_urls_pkey"), new TableField[] { SysUrls.SYS_URLS.ID }, true);
|
||||
public static final UniqueKey<SysUrlsRecord> SYS_URLS_URL_KEY = Internal.createUniqueKey(SysUrls.SYS_URLS, DSL.name("sys_urls_url_key"), new TableField[] { SysUrls.SYS_URLS.URL }, true);
|
||||
public static final UniqueKey<SysAdminRecord> KEY_SYS_ADMIN_PRIMARY = Internal.createUniqueKey(SysAdmin.SYS_ADMIN, DSL.name("KEY_sys_admin_PRIMARY"), new TableField[] { SysAdmin.SYS_ADMIN.ID }, true);
|
||||
public static final UniqueKey<SysAdminRecord> KEY_SYS_ADMIN_USERNAME = Internal.createUniqueKey(SysAdmin.SYS_ADMIN, DSL.name("KEY_sys_admin_username"), new TableField[] { SysAdmin.SYS_ADMIN.USERNAME }, true);
|
||||
public static final UniqueKey<SysAdminMenuRecord> KEY_SYS_ADMIN_MENU_ADMINID = Internal.createUniqueKey(SysAdminMenu.SYS_ADMIN_MENU, DSL.name("KEY_sys_admin_menu_adminid"), new TableField[] { SysAdminMenu.SYS_ADMIN_MENU.ADMINID, SysAdminMenu.SYS_ADMIN_MENU.MEMUID }, true);
|
||||
public static final UniqueKey<SysAdminMenuRecord> KEY_SYS_ADMIN_MENU_PRIMARY = Internal.createUniqueKey(SysAdminMenu.SYS_ADMIN_MENU, DSL.name("KEY_sys_admin_menu_PRIMARY"), new TableField[] { SysAdminMenu.SYS_ADMIN_MENU.ID }, true);
|
||||
public static final UniqueKey<SysAdminRoleRecord> KEY_SYS_ADMIN_ROLE_PRIMARY = Internal.createUniqueKey(SysAdminRole.SYS_ADMIN_ROLE, DSL.name("KEY_sys_admin_role_PRIMARY"), new TableField[] { SysAdminRole.SYS_ADMIN_ROLE.ID }, true);
|
||||
public static final UniqueKey<SysConfigRecord> KEY_SYS_CONFIG_K = Internal.createUniqueKey(SysConfig.SYS_CONFIG, DSL.name("KEY_sys_config_k"), new TableField[] { SysConfig.SYS_CONFIG.K }, true);
|
||||
public static final UniqueKey<SysConfigRecord> KEY_SYS_CONFIG_PRIMARY = Internal.createUniqueKey(SysConfig.SYS_CONFIG, DSL.name("KEY_sys_config_PRIMARY"), new TableField[] { SysConfig.SYS_CONFIG.ID }, true);
|
||||
public static final UniqueKey<SysMenuRecord> KEY_SYS_MENU_PRIMARY = Internal.createUniqueKey(SysMenu.SYS_MENU, DSL.name("KEY_sys_menu_PRIMARY"), new TableField[] { SysMenu.SYS_MENU.ID }, true);
|
||||
public static final UniqueKey<SysOrgRecord> KEY_SYS_ORG_PRIMARY = Internal.createUniqueKey(SysOrg.SYS_ORG, DSL.name("KEY_sys_org_PRIMARY"), new TableField[] { SysOrg.SYS_ORG.ID }, true);
|
||||
public static final UniqueKey<SysResourceRecord> KEY_SYS_RESOURCE_PRIMARY = Internal.createUniqueKey(SysResource.SYS_RESOURCE, DSL.name("KEY_sys_resource_PRIMARY"), new TableField[] { SysResource.SYS_RESOURCE.ID }, true);
|
||||
public static final UniqueKey<SysRoleRecord> KEY_SYS_ROLE_PRIMARY = Internal.createUniqueKey(SysRole.SYS_ROLE, DSL.name("KEY_sys_role_PRIMARY"), new TableField[] { SysRole.SYS_ROLE.ID }, true);
|
||||
public static final UniqueKey<SysRoleResourceRecord> KEY_SYS_ROLE_RESOURCE_PRIMARY = Internal.createUniqueKey(SysRoleResource.SYS_ROLE_RESOURCE, DSL.name("KEY_sys_role_resource_PRIMARY"), new TableField[] { SysRoleResource.SYS_ROLE_RESOURCE.ROLEID, SysRoleResource.SYS_ROLE_RESOURCE.RESID }, true);
|
||||
public static final UniqueKey<SysRoleUrlRecord> KEY_SYS_ROLE_URL_PRIMARY = Internal.createUniqueKey(SysRoleUrl.SYS_ROLE_URL, DSL.name("KEY_sys_role_url_PRIMARY"), new TableField[] { SysRoleUrl.SYS_ROLE_URL.ID }, true);
|
||||
public static final UniqueKey<SysUrlsRecord> KEY_SYS_URLS_PRIMARY = Internal.createUniqueKey(SysUrls.SYS_URLS, DSL.name("KEY_sys_urls_PRIMARY"), new TableField[] { SysUrls.SYS_URLS.ID }, true);
|
||||
public static final UniqueKey<SysUrlsRecord> KEY_SYS_URLS_URL = Internal.createUniqueKey(SysUrls.SYS_URLS, DSL.name("KEY_sys_urls_url"), new TableField[] { SysUrls.SYS_URLS.URL }, true);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,257 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.ArchiveSynLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateApplyRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateDetail;
|
||||
import jj.tech.paolu.repository.jooq.tables.DecryptLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.DownloadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyCheckRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDirectoryDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDownloadRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.Project;
|
||||
import jj.tech.paolu.repository.jooq.tables.ReadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedRuleConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedSynAll;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectory;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectoryFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdmin;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminWeid;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysArea;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysOrg;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleSign;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleUrl;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysUrls;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.impl.SchemaImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Public extends SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public</code>
|
||||
*/
|
||||
public static final Public PUBLIC = new Public();
|
||||
|
||||
/**
|
||||
* 从电子档案系统同步档案目录数据的过程日志
|
||||
*/
|
||||
public final ArchiveSynLog ARCHIVE_SYN_LOG = ArchiveSynLog.ARCHIVE_SYN_LOG;
|
||||
|
||||
/**
|
||||
* The table <code>public.certificate_apply</code>.
|
||||
*/
|
||||
public final CertificateApply CERTIFICATE_APPLY = CertificateApply.CERTIFICATE_APPLY;
|
||||
|
||||
/**
|
||||
* The table <code>public.certificate_apply_record</code>.
|
||||
*/
|
||||
public final CertificateApplyRecord CERTIFICATE_APPLY_RECORD = CertificateApplyRecord.CERTIFICATE_APPLY_RECORD;
|
||||
|
||||
/**
|
||||
* The table <code>public.certificate_detail</code>.
|
||||
*/
|
||||
public final CertificateDetail CERTIFICATE_DETAIL = CertificateDetail.CERTIFICATE_DETAIL;
|
||||
|
||||
/**
|
||||
* 解密情况
|
||||
*/
|
||||
public final DecryptLog DECRYPT_LOG = DecryptLog.DECRYPT_LOG;
|
||||
|
||||
/**
|
||||
* 下载行为记录
|
||||
*/
|
||||
public final DownloadLog DOWNLOAD_LOG = DownloadLog.DOWNLOAD_LOG;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply</code>.
|
||||
*/
|
||||
public final FilesApply FILES_APPLY = FilesApply.FILES_APPLY;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_check_record</code>.
|
||||
*/
|
||||
public final FilesApplyCheckRecord FILES_APPLY_CHECK_RECORD = FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_directory_docs</code>.
|
||||
*/
|
||||
public final FilesApplyDirectoryDocs FILES_APPLY_DIRECTORY_DOCS = FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_docs</code>.
|
||||
*/
|
||||
public final FilesApplyDocs FILES_APPLY_DOCS = FilesApplyDocs.FILES_APPLY_DOCS;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_download_record</code>.
|
||||
*/
|
||||
public final FilesApplyDownloadRecord FILES_APPLY_DOWNLOAD_RECORD = FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD;
|
||||
|
||||
/**
|
||||
* The table <code>public.project</code>.
|
||||
*/
|
||||
public final Project PROJECT = Project.PROJECT;
|
||||
|
||||
/**
|
||||
* 阅读情况
|
||||
*/
|
||||
public final ReadLog READ_LOG = ReadLog.READ_LOG;
|
||||
|
||||
/**
|
||||
* The table <code>public.shared_rule_config</code>.
|
||||
*/
|
||||
public final SharedRuleConfig SHARED_RULE_CONFIG = SharedRuleConfig.SHARED_RULE_CONFIG;
|
||||
|
||||
/**
|
||||
* The table <code>public.shared_syn_all</code>.
|
||||
*/
|
||||
public final SharedSynAll SHARED_SYN_ALL = SharedSynAll.SHARED_SYN_ALL;
|
||||
|
||||
/**
|
||||
* The table <code>public.syn_directory</code>.
|
||||
*/
|
||||
public final SynDirectory SYN_DIRECTORY = SynDirectory.SYN_DIRECTORY;
|
||||
|
||||
/**
|
||||
* The table <code>public.syn_directory_file</code>.
|
||||
*/
|
||||
public final SynDirectoryFile SYN_DIRECTORY_FILE = SynDirectoryFile.SYN_DIRECTORY_FILE;
|
||||
|
||||
/**
|
||||
* The table <code>public.syn_file</code>.
|
||||
*/
|
||||
public final SynFile SYN_FILE = SynFile.SYN_FILE;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_admin</code>.
|
||||
*/
|
||||
public final SysAdmin SYS_ADMIN = SysAdmin.SYS_ADMIN;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_admin_role</code>.
|
||||
*/
|
||||
public final SysAdminRole SYS_ADMIN_ROLE = SysAdminRole.SYS_ADMIN_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_admin_weid</code>.
|
||||
*/
|
||||
public final SysAdminWeid SYS_ADMIN_WEID = SysAdminWeid.SYS_ADMIN_WEID;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_area</code>.
|
||||
*/
|
||||
public final SysArea SYS_AREA = SysArea.SYS_AREA;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_config</code>.
|
||||
*/
|
||||
public final SysConfig SYS_CONFIG = SysConfig.SYS_CONFIG;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_menu</code>.
|
||||
*/
|
||||
public final SysMenu SYS_MENU = SysMenu.SYS_MENU;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_org</code>.
|
||||
*/
|
||||
public final SysOrg SYS_ORG = SysOrg.SYS_ORG;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role</code>.
|
||||
*/
|
||||
public final SysRole SYS_ROLE = SysRole.SYS_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role_menu</code>.
|
||||
*/
|
||||
public final SysRoleMenu SYS_ROLE_MENU = SysRoleMenu.SYS_ROLE_MENU;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role_sign</code>.
|
||||
*/
|
||||
public final SysRoleSign SYS_ROLE_SIGN = SysRoleSign.SYS_ROLE_SIGN;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role_url</code>.
|
||||
*/
|
||||
public final SysRoleUrl SYS_ROLE_URL = SysRoleUrl.SYS_ROLE_URL;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_urls</code>.
|
||||
*/
|
||||
public final SysUrls SYS_URLS = SysUrls.SYS_URLS;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private Public() {
|
||||
super("public", null);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Catalog getCatalog() {
|
||||
return DefaultCatalog.DEFAULT_CATALOG;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final List<Table<?>> getTables() {
|
||||
return Arrays.asList(
|
||||
ArchiveSynLog.ARCHIVE_SYN_LOG,
|
||||
CertificateApply.CERTIFICATE_APPLY,
|
||||
CertificateApplyRecord.CERTIFICATE_APPLY_RECORD,
|
||||
CertificateDetail.CERTIFICATE_DETAIL,
|
||||
DecryptLog.DECRYPT_LOG,
|
||||
DownloadLog.DOWNLOAD_LOG,
|
||||
FilesApply.FILES_APPLY,
|
||||
FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD,
|
||||
FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS,
|
||||
FilesApplyDocs.FILES_APPLY_DOCS,
|
||||
FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD,
|
||||
Project.PROJECT,
|
||||
ReadLog.READ_LOG,
|
||||
SharedRuleConfig.SHARED_RULE_CONFIG,
|
||||
SharedSynAll.SHARED_SYN_ALL,
|
||||
SynDirectory.SYN_DIRECTORY,
|
||||
SynDirectoryFile.SYN_DIRECTORY_FILE,
|
||||
SynFile.SYN_FILE,
|
||||
SysAdmin.SYS_ADMIN,
|
||||
SysAdminRole.SYS_ADMIN_ROLE,
|
||||
SysAdminWeid.SYS_ADMIN_WEID,
|
||||
SysArea.SYS_AREA,
|
||||
SysConfig.SYS_CONFIG,
|
||||
SysMenu.SYS_MENU,
|
||||
SysOrg.SYS_ORG,
|
||||
SysRole.SYS_ROLE,
|
||||
SysRoleMenu.SYS_ROLE_MENU,
|
||||
SysRoleSign.SYS_ROLE_SIGN,
|
||||
SysRoleUrl.SYS_ROLE_URL,
|
||||
SysUrls.SYS_URLS
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -4,191 +4,77 @@
|
|||
package jj.tech.paolu.repository.jooq;
|
||||
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.ArchiveSynLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateApplyRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateDetail;
|
||||
import jj.tech.paolu.repository.jooq.tables.DecryptLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.DownloadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyCheckRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDirectoryDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDownloadRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.Project;
|
||||
import jj.tech.paolu.repository.jooq.tables.ReadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedRuleConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedSynAll;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectory;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectoryFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SynFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdmin;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminWeid;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysArea;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysOrg;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleSign;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleUrl;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysUrls;
|
||||
|
||||
|
||||
/**
|
||||
* Convenience access to all tables in public.
|
||||
* Convenience access to all tables in yx.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Tables {
|
||||
|
||||
/**
|
||||
* 从电子档案系统同步档案目录数据的过程日志
|
||||
*/
|
||||
public static final ArchiveSynLog ARCHIVE_SYN_LOG = ArchiveSynLog.ARCHIVE_SYN_LOG;
|
||||
|
||||
/**
|
||||
* The table <code>public.certificate_apply</code>.
|
||||
*/
|
||||
public static final CertificateApply CERTIFICATE_APPLY = CertificateApply.CERTIFICATE_APPLY;
|
||||
|
||||
/**
|
||||
* The table <code>public.certificate_apply_record</code>.
|
||||
*/
|
||||
public static final CertificateApplyRecord CERTIFICATE_APPLY_RECORD = CertificateApplyRecord.CERTIFICATE_APPLY_RECORD;
|
||||
|
||||
/**
|
||||
* The table <code>public.certificate_detail</code>.
|
||||
*/
|
||||
public static final CertificateDetail CERTIFICATE_DETAIL = CertificateDetail.CERTIFICATE_DETAIL;
|
||||
|
||||
/**
|
||||
* 解密情况
|
||||
*/
|
||||
public static final DecryptLog DECRYPT_LOG = DecryptLog.DECRYPT_LOG;
|
||||
|
||||
/**
|
||||
* 下载行为记录
|
||||
*/
|
||||
public static final DownloadLog DOWNLOAD_LOG = DownloadLog.DOWNLOAD_LOG;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply</code>.
|
||||
*/
|
||||
public static final FilesApply FILES_APPLY = FilesApply.FILES_APPLY;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_check_record</code>.
|
||||
*/
|
||||
public static final FilesApplyCheckRecord FILES_APPLY_CHECK_RECORD = FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_directory_docs</code>.
|
||||
*/
|
||||
public static final FilesApplyDirectoryDocs FILES_APPLY_DIRECTORY_DOCS = FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_docs</code>.
|
||||
*/
|
||||
public static final FilesApplyDocs FILES_APPLY_DOCS = FilesApplyDocs.FILES_APPLY_DOCS;
|
||||
|
||||
/**
|
||||
* The table <code>public.files_apply_download_record</code>.
|
||||
*/
|
||||
public static final FilesApplyDownloadRecord FILES_APPLY_DOWNLOAD_RECORD = FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD;
|
||||
|
||||
/**
|
||||
* The table <code>public.project</code>.
|
||||
*/
|
||||
public static final Project PROJECT = Project.PROJECT;
|
||||
|
||||
/**
|
||||
* 阅读情况
|
||||
*/
|
||||
public static final ReadLog READ_LOG = ReadLog.READ_LOG;
|
||||
|
||||
/**
|
||||
* The table <code>public.shared_rule_config</code>.
|
||||
*/
|
||||
public static final SharedRuleConfig SHARED_RULE_CONFIG = SharedRuleConfig.SHARED_RULE_CONFIG;
|
||||
|
||||
/**
|
||||
* The table <code>public.shared_syn_all</code>.
|
||||
*/
|
||||
public static final SharedSynAll SHARED_SYN_ALL = SharedSynAll.SHARED_SYN_ALL;
|
||||
|
||||
/**
|
||||
* The table <code>public.syn_directory</code>.
|
||||
*/
|
||||
public static final SynDirectory SYN_DIRECTORY = SynDirectory.SYN_DIRECTORY;
|
||||
|
||||
/**
|
||||
* The table <code>public.syn_directory_file</code>.
|
||||
*/
|
||||
public static final SynDirectoryFile SYN_DIRECTORY_FILE = SynDirectoryFile.SYN_DIRECTORY_FILE;
|
||||
|
||||
/**
|
||||
* The table <code>public.syn_file</code>.
|
||||
*/
|
||||
public static final SynFile SYN_FILE = SynFile.SYN_FILE;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_admin</code>.
|
||||
* The table <code>yx.sys_admin</code>.
|
||||
*/
|
||||
public static final SysAdmin SYS_ADMIN = SysAdmin.SYS_ADMIN;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_admin_role</code>.
|
||||
* The table <code>yx.sys_admin_menu</code>.
|
||||
*/
|
||||
public static final SysAdminMenu SYS_ADMIN_MENU = SysAdminMenu.SYS_ADMIN_MENU;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_admin_role</code>.
|
||||
*/
|
||||
public static final SysAdminRole SYS_ADMIN_ROLE = SysAdminRole.SYS_ADMIN_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_admin_weid</code>.
|
||||
*/
|
||||
public static final SysAdminWeid SYS_ADMIN_WEID = SysAdminWeid.SYS_ADMIN_WEID;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_area</code>.
|
||||
*/
|
||||
public static final SysArea SYS_AREA = SysArea.SYS_AREA;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_config</code>.
|
||||
* The table <code>yx.sys_config</code>.
|
||||
*/
|
||||
public static final SysConfig SYS_CONFIG = SysConfig.SYS_CONFIG;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_menu</code>.
|
||||
* The table <code>yx.sys_menu</code>.
|
||||
*/
|
||||
public static final SysMenu SYS_MENU = SysMenu.SYS_MENU;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_org</code>.
|
||||
* The table <code>yx.sys_org</code>.
|
||||
*/
|
||||
public static final SysOrg SYS_ORG = SysOrg.SYS_ORG;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role</code>.
|
||||
* The table <code>yx.sys_resource</code>.
|
||||
*/
|
||||
public static final SysResource SYS_RESOURCE = SysResource.SYS_RESOURCE;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_role</code>.
|
||||
*/
|
||||
public static final SysRole SYS_ROLE = SysRole.SYS_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role_menu</code>.
|
||||
* The table <code>yx.sys_role_resource</code>.
|
||||
*/
|
||||
public static final SysRoleMenu SYS_ROLE_MENU = SysRoleMenu.SYS_ROLE_MENU;
|
||||
public static final SysRoleResource SYS_ROLE_RESOURCE = SysRoleResource.SYS_ROLE_RESOURCE;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role_sign</code>.
|
||||
*/
|
||||
public static final SysRoleSign SYS_ROLE_SIGN = SysRoleSign.SYS_ROLE_SIGN;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_role_url</code>.
|
||||
* The table <code>yx.sys_role_url</code>.
|
||||
*/
|
||||
public static final SysRoleUrl SYS_ROLE_URL = SysRoleUrl.SYS_ROLE_URL;
|
||||
|
||||
/**
|
||||
* The table <code>public.sys_urls</code>.
|
||||
* The table <code>yx.sys_urls</code>.
|
||||
*/
|
||||
public static final SysUrls SYS_URLS = SysUrls.SYS_URLS;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,124 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdmin;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysOrg;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRole;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleUrl;
|
||||
import jj.tech.paolu.repository.jooq.tables.SysUrls;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.impl.SchemaImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Yx extends SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>yx</code>
|
||||
*/
|
||||
public static final Yx YX = new Yx();
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_admin</code>.
|
||||
*/
|
||||
public final SysAdmin SYS_ADMIN = SysAdmin.SYS_ADMIN;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_admin_menu</code>.
|
||||
*/
|
||||
public final SysAdminMenu SYS_ADMIN_MENU = SysAdminMenu.SYS_ADMIN_MENU;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_admin_role</code>.
|
||||
*/
|
||||
public final SysAdminRole SYS_ADMIN_ROLE = SysAdminRole.SYS_ADMIN_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_config</code>.
|
||||
*/
|
||||
public final SysConfig SYS_CONFIG = SysConfig.SYS_CONFIG;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_menu</code>.
|
||||
*/
|
||||
public final SysMenu SYS_MENU = SysMenu.SYS_MENU;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_org</code>.
|
||||
*/
|
||||
public final SysOrg SYS_ORG = SysOrg.SYS_ORG;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_resource</code>.
|
||||
*/
|
||||
public final SysResource SYS_RESOURCE = SysResource.SYS_RESOURCE;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_role</code>.
|
||||
*/
|
||||
public final SysRole SYS_ROLE = SysRole.SYS_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_role_resource</code>.
|
||||
*/
|
||||
public final SysRoleResource SYS_ROLE_RESOURCE = SysRoleResource.SYS_ROLE_RESOURCE;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_role_url</code>.
|
||||
*/
|
||||
public final SysRoleUrl SYS_ROLE_URL = SysRoleUrl.SYS_ROLE_URL;
|
||||
|
||||
/**
|
||||
* The table <code>yx.sys_urls</code>.
|
||||
*/
|
||||
public final SysUrls SYS_URLS = SysUrls.SYS_URLS;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private Yx() {
|
||||
super("yx", null);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Catalog getCatalog() {
|
||||
return DefaultCatalog.DEFAULT_CATALOG;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final List<Table<?>> getTables() {
|
||||
return Arrays.asList(
|
||||
SysAdmin.SYS_ADMIN,
|
||||
SysAdminMenu.SYS_ADMIN_MENU,
|
||||
SysAdminRole.SYS_ADMIN_ROLE,
|
||||
SysConfig.SYS_CONFIG,
|
||||
SysMenu.SYS_MENU,
|
||||
SysOrg.SYS_ORG,
|
||||
SysResource.SYS_RESOURCE,
|
||||
SysRole.SYS_ROLE,
|
||||
SysRoleResource.SYS_ROLE_RESOURCE,
|
||||
SysRoleUrl.SYS_ROLE_URL,
|
||||
SysUrls.SYS_URLS
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,223 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ArchiveSynLogRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function13;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row13;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* 从电子档案系统同步档案目录数据的过程日志
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ArchiveSynLog extends TableImpl<ArchiveSynLogRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.archive_syn_log</code>
|
||||
*/
|
||||
public static final ArchiveSynLog ARCHIVE_SYN_LOG = new ArchiveSynLog();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<ArchiveSynLogRecord> getRecordType() {
|
||||
return ArchiveSynLogRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.start_time</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, LocalDateTime> START_TIME = createField(DSL.name("start_time"), SQLDataType.LOCALDATETIME(6).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.insert_dir_count</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> INSERT_DIR_COUNT = createField(DSL.name("insert_dir_count"), SQLDataType.BIGINT.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.update_dir_count</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> UPDATE_DIR_COUNT = createField(DSL.name("update_dir_count"), SQLDataType.BIGINT.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.insert_dirfile_count</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> INSERT_DIRFILE_COUNT = createField(DSL.name("insert_dirfile_count"), SQLDataType.BIGINT.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.update_dirfile_count</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> UPDATE_DIRFILE_COUNT = createField(DSL.name("update_dirfile_count"), SQLDataType.BIGINT.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.insert_file_count</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> INSERT_FILE_COUNT = createField(DSL.name("insert_file_count"), SQLDataType.BIGINT.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.update_file_count</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> UPDATE_FILE_COUNT = createField(DSL.name("update_file_count"), SQLDataType.BIGINT.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.description</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.run_result</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, String> RUN_RESULT = createField(DSL.name("run_result"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.update_timestamp</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> UPDATE_TIMESTAMP = createField(DSL.name("update_timestamp"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.id</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.next_update_timestamp</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, Long> NEXT_UPDATE_TIMESTAMP = createField(DSL.name("next_update_timestamp"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.archive_syn_log.end_time</code>.
|
||||
*/
|
||||
public final TableField<ArchiveSynLogRecord, LocalDateTime> END_TIME = createField(DSL.name("end_time"), SQLDataType.LOCALDATETIME(6).nullable(false), this, "");
|
||||
|
||||
private ArchiveSynLog(Name alias, Table<ArchiveSynLogRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private ArchiveSynLog(Name alias, Table<ArchiveSynLogRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment("从电子档案系统同步档案目录数据的过程日志"), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.archive_syn_log</code> table reference
|
||||
*/
|
||||
public ArchiveSynLog(String alias) {
|
||||
this(DSL.name(alias), ARCHIVE_SYN_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.archive_syn_log</code> table reference
|
||||
*/
|
||||
public ArchiveSynLog(Name alias) {
|
||||
this(alias, ARCHIVE_SYN_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.archive_syn_log</code> table reference
|
||||
*/
|
||||
public ArchiveSynLog() {
|
||||
this(DSL.name("archive_syn_log"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> ArchiveSynLog(Table<O> child, ForeignKey<O, ArchiveSynLogRecord> key) {
|
||||
super(child, key, ARCHIVE_SYN_LOG);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<ArchiveSynLogRecord> getPrimaryKey() {
|
||||
return Keys.ARCHIVE_SYN_LOG_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArchiveSynLog as(String alias) {
|
||||
return new ArchiveSynLog(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArchiveSynLog as(Name alias) {
|
||||
return new ArchiveSynLog(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ArchiveSynLog as(Table<?> alias) {
|
||||
return new ArchiveSynLog(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ArchiveSynLog rename(String name) {
|
||||
return new ArchiveSynLog(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ArchiveSynLog rename(Name name) {
|
||||
return new ArchiveSynLog(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ArchiveSynLog rename(Table<?> name) {
|
||||
return new ArchiveSynLog(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row13 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row13<LocalDateTime, Long, Long, Long, Long, Long, Long, String, String, Long, String, Long, LocalDateTime> fieldsRow() {
|
||||
return (Row13) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function13<? super LocalDateTime, ? super Long, ? super Long, ? super Long, ? super Long, ? super Long, ? super Long, ? super String, ? super String, ? super Long, ? super String, ? super Long, ? super LocalDateTime, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function13<? super LocalDateTime, ? super Long, ? super Long, ? super Long, ? super Long, ? super Long, ? super Long, ? super String, ? super String, ? super Long, ? super String, ? super Long, ? super LocalDateTime, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,250 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateApplyRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function17;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row17;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CertificateApply extends TableImpl<CertificateApplyRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.certificate_apply</code>
|
||||
*/
|
||||
public static final CertificateApply CERTIFICATE_APPLY = new CertificateApply();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<CertificateApplyRecord> getRecordType() {
|
||||
return CertificateApplyRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.is_org</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, Integer> IS_ORG = createField(DSL.name("is_org"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.user_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> USER_ID = createField(DSL.name("user_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.user_name</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> USER_NAME = createField(DSL.name("user_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.user_real_name</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> USER_REAL_NAME = createField(DSL.name("user_real_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.user_phone</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> USER_PHONE = createField(DSL.name("user_phone"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.user_org_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> USER_ORG_ID = createField(DSL.name("user_org_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.user_org_name</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> USER_ORG_NAME = createField(DSL.name("user_org_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.apply_type</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, Integer> APPLY_TYPE = createField(DSL.name("apply_type"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.status</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, Integer> STATUS = createField(DSL.name("status"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.apply_time</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, LocalDateTime> APPLY_TIME = createField(DSL.name("apply_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.apply_finish_time</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, LocalDateTime> APPLY_FINISH_TIME = createField(DSL.name("apply_finish_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.apply_reason</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> APPLY_REASON = createField(DSL.name("apply_reason"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.next_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> NEXT_CHECK_ORG_ID = createField(DSL.name("next_check_org_id"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.end_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> END_CHECK_ORG_ID = createField(DSL.name("end_check_org_id"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.cer_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> CER_ID = createField(DSL.name("cer_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply.company_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecord, String> COMPANY_ID = createField(DSL.name("company_id"), SQLDataType.VARCHAR(32).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
private CertificateApply(Name alias, Table<CertificateApplyRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private CertificateApply(Name alias, Table<CertificateApplyRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.certificate_apply</code> table reference
|
||||
*/
|
||||
public CertificateApply(String alias) {
|
||||
this(DSL.name(alias), CERTIFICATE_APPLY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.certificate_apply</code> table reference
|
||||
*/
|
||||
public CertificateApply(Name alias) {
|
||||
this(alias, CERTIFICATE_APPLY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.certificate_apply</code> table reference
|
||||
*/
|
||||
public CertificateApply() {
|
||||
this(DSL.name("certificate_apply"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> CertificateApply(Table<O> child, ForeignKey<O, CertificateApplyRecord> key) {
|
||||
super(child, key, CERTIFICATE_APPLY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<CertificateApplyRecord> getPrimaryKey() {
|
||||
return Keys.CERTIFICATE_APPLY_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<CertificateApplyRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.CERTIFICATE_APPLY_CER_ID_KEY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateApply as(String alias) {
|
||||
return new CertificateApply(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateApply as(Name alias) {
|
||||
return new CertificateApply(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateApply as(Table<?> alias) {
|
||||
return new CertificateApply(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateApply rename(String name) {
|
||||
return new CertificateApply(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateApply rename(Name name) {
|
||||
return new CertificateApply(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateApply rename(Table<?> name) {
|
||||
return new CertificateApply(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row17 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row17<String, Integer, String, String, String, String, String, String, Integer, Integer, LocalDateTime, LocalDateTime, String, String, String, String, String> fieldsRow() {
|
||||
return (Row17) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function17<? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super LocalDateTime, ? super LocalDateTime, ? super String, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function17<? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super LocalDateTime, ? super LocalDateTime, ? super String, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,240 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateApplyRecordRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function15;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row15;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CertificateApplyRecord extends TableImpl<CertificateApplyRecordRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.certificate_apply_record</code>
|
||||
*/
|
||||
public static final CertificateApplyRecord CERTIFICATE_APPLY_RECORD = new CertificateApplyRecord();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<CertificateApplyRecordRecord> getRecordType() {
|
||||
return CertificateApplyRecordRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.certificate_apply_record.certificate_apply_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CERTIFICATE_APPLY_ID = createField(DSL.name("certificate_apply_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.certificate_apply_record.certificate_apply_user_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CERTIFICATE_APPLY_USER_ID = createField(DSL.name("certificate_apply_user_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.certificate_apply_record.certificate_apply_user_org_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CERTIFICATE_APPLY_USER_ORG_ID = createField(DSL.name("certificate_apply_user_org_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.is_org</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, Integer> IS_ORG = createField(DSL.name("is_org"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.apply_type</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, Integer> APPLY_TYPE = createField(DSL.name("apply_type"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.check_user_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CHECK_USER_ID = createField(DSL.name("check_user_id"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.check_user_name</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CHECK_USER_NAME = createField(DSL.name("check_user_name"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.check_org_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CHECK_ORG_ID = createField(DSL.name("check_org_id"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.check_org_name</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CHECK_ORG_NAME = createField(DSL.name("check_org_name"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.check_describe</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> CHECK_DESCRIBE = createField(DSL.name("check_describe"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.check_status</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, Integer> CHECK_STATUS = createField(DSL.name("check_status"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_apply_record.check_time</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, LocalDateTime> CHECK_TIME = createField(DSL.name("check_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.certificate_apply_record.next_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> NEXT_CHECK_ORG_ID = createField(DSL.name("next_check_org_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.certificate_apply_record.next_check_org_name</code>.
|
||||
*/
|
||||
public final TableField<CertificateApplyRecordRecord, String> NEXT_CHECK_ORG_NAME = createField(DSL.name("next_check_org_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
private CertificateApplyRecord(Name alias, Table<CertificateApplyRecordRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private CertificateApplyRecord(Name alias, Table<CertificateApplyRecordRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.certificate_apply_record</code> table
|
||||
* reference
|
||||
*/
|
||||
public CertificateApplyRecord(String alias) {
|
||||
this(DSL.name(alias), CERTIFICATE_APPLY_RECORD);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.certificate_apply_record</code> table
|
||||
* reference
|
||||
*/
|
||||
public CertificateApplyRecord(Name alias) {
|
||||
this(alias, CERTIFICATE_APPLY_RECORD);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.certificate_apply_record</code> table reference
|
||||
*/
|
||||
public CertificateApplyRecord() {
|
||||
this(DSL.name("certificate_apply_record"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> CertificateApplyRecord(Table<O> child, ForeignKey<O, CertificateApplyRecordRecord> key) {
|
||||
super(child, key, CERTIFICATE_APPLY_RECORD);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<CertificateApplyRecordRecord> getPrimaryKey() {
|
||||
return Keys.CERTIFICATE_APPLY_RECORD_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateApplyRecord as(String alias) {
|
||||
return new CertificateApplyRecord(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateApplyRecord as(Name alias) {
|
||||
return new CertificateApplyRecord(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateApplyRecord as(Table<?> alias) {
|
||||
return new CertificateApplyRecord(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateApplyRecord rename(String name) {
|
||||
return new CertificateApplyRecord(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateApplyRecord rename(Name name) {
|
||||
return new CertificateApplyRecord(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateApplyRecord rename(Table<?> name) {
|
||||
return new CertificateApplyRecord(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row15 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row15<String, String, String, String, Integer, Integer, String, String, String, String, String, Integer, LocalDateTime, String, String> fieldsRow() {
|
||||
return (Row15) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function15<? super String, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super LocalDateTime, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function15<? super String, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super LocalDateTime, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,228 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateDetailRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function14;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row14;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CertificateDetail extends TableImpl<CertificateDetailRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.certificate_detail</code>
|
||||
*/
|
||||
public static final CertificateDetail CERTIFICATE_DETAIL = new CertificateDetail();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<CertificateDetailRecord> getRecordType() {
|
||||
return CertificateDetailRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.id</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.certificate_apply_id</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> CERTIFICATE_APPLY_ID = createField(DSL.name("certificate_apply_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.work_start_time</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, LocalDateTime> WORK_START_TIME = createField(DSL.name("work_start_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.work_end_time</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, LocalDateTime> WORK_END_TIME = createField(DSL.name("work_end_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.status</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, Integer> STATUS = createField(DSL.name("status"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.cert_file_content</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> CERT_FILE_CONTENT = createField(DSL.name("cert_file_content"), SQLDataType.VARCHAR(2048), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.is_up_chain</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, Integer> IS_UP_CHAIN = createField(DSL.name("is_up_chain"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.weid</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> WEID = createField(DSL.name("weid"), SQLDataType.VARCHAR(64), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.private_key_hex_str</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> PRIVATE_KEY_HEX_STR = createField(DSL.name("private_key_hex_str"), SQLDataType.VARCHAR(128), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.x509_serial_number</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> X509_SERIAL_NUMBER = createField(DSL.name("x509_serial_number"), SQLDataType.VARCHAR(256), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.x509_subject</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> X509_SUBJECT = createField(DSL.name("x509_subject"), SQLDataType.VARCHAR(256), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.x509_issuer</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> X509_ISSUER = createField(DSL.name("x509_issuer"), SQLDataType.VARCHAR(256), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.x509_public_key</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> X509_PUBLIC_KEY = createField(DSL.name("x509_public_key"), SQLDataType.VARCHAR(256), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.certificate_detail.x509_sig_alg_name</code>.
|
||||
*/
|
||||
public final TableField<CertificateDetailRecord, String> X509_SIG_ALG_NAME = createField(DSL.name("x509_sig_alg_name"), SQLDataType.VARCHAR(256), this, "");
|
||||
|
||||
private CertificateDetail(Name alias, Table<CertificateDetailRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private CertificateDetail(Name alias, Table<CertificateDetailRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.certificate_detail</code> table reference
|
||||
*/
|
||||
public CertificateDetail(String alias) {
|
||||
this(DSL.name(alias), CERTIFICATE_DETAIL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.certificate_detail</code> table reference
|
||||
*/
|
||||
public CertificateDetail(Name alias) {
|
||||
this(alias, CERTIFICATE_DETAIL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.certificate_detail</code> table reference
|
||||
*/
|
||||
public CertificateDetail() {
|
||||
this(DSL.name("certificate_detail"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> CertificateDetail(Table<O> child, ForeignKey<O, CertificateDetailRecord> key) {
|
||||
super(child, key, CERTIFICATE_DETAIL);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<CertificateDetailRecord> getPrimaryKey() {
|
||||
return Keys.CERTIFICATE_DETAIL_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateDetail as(String alias) {
|
||||
return new CertificateDetail(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateDetail as(Name alias) {
|
||||
return new CertificateDetail(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CertificateDetail as(Table<?> alias) {
|
||||
return new CertificateDetail(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateDetail rename(String name) {
|
||||
return new CertificateDetail(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateDetail rename(Name name) {
|
||||
return new CertificateDetail(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CertificateDetail rename(Table<?> name) {
|
||||
return new CertificateDetail(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row14 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row14<String, String, LocalDateTime, LocalDateTime, Integer, String, Integer, String, String, String, String, String, String, String> fieldsRow() {
|
||||
return (Row14) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function14<? super String, ? super String, ? super LocalDateTime, ? super LocalDateTime, ? super Integer, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function14<? super String, ? super String, ? super LocalDateTime, ? super LocalDateTime, ? super Integer, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,203 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.DecryptLogRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function9;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row9;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* 解密情况
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class DecryptLog extends TableImpl<DecryptLogRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.decrypt_log</code>
|
||||
*/
|
||||
public static final DecryptLog DECRYPT_LOG = new DecryptLog();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<DecryptLogRecord> getRecordType() {
|
||||
return DecryptLogRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.id</code>.
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.weid</code>. 申请人id
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, String> WEID = createField(DSL.name("weid"), SQLDataType.VARCHAR(255), this, "申请人id");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.content_type</code>. 档案类型(0件/1件内文件)
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, Integer> CONTENT_TYPE = createField(DSL.name("content_type"), SQLDataType.INTEGER, this, "档案类型(0件/1件内文件)");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.content_id</code>. 档案id
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, String> CONTENT_ID = createField(DSL.name("content_id"), SQLDataType.VARCHAR(255), this, "档案id");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.dec_time</code>. 解密时间
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, LocalDateTime> DEC_TIME = createField(DSL.name("dec_time"), SQLDataType.LOCALDATETIME(6), this, "解密时间");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.location</code>. 区域
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, String> LOCATION = createField(DSL.name("location"), SQLDataType.VARCHAR(255), this, "区域");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.sm9hibeid</code>. 秘钥id
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, String> SM9HIBEID = createField(DSL.name("sm9hibeid"), SQLDataType.VARCHAR(255), this, "秘钥id");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.status</code>. 解密结果(0失败1成功)
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, Integer> STATUS = createField(DSL.name("status"), SQLDataType.INTEGER, this, "解密结果(0失败1成功)");
|
||||
|
||||
/**
|
||||
* The column <code>public.decrypt_log.sign</code>. 数字签名
|
||||
*/
|
||||
public final TableField<DecryptLogRecord, String> SIGN = createField(DSL.name("sign"), SQLDataType.VARCHAR(255), this, "数字签名");
|
||||
|
||||
private DecryptLog(Name alias, Table<DecryptLogRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private DecryptLog(Name alias, Table<DecryptLogRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment("解密情况"), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.decrypt_log</code> table reference
|
||||
*/
|
||||
public DecryptLog(String alias) {
|
||||
this(DSL.name(alias), DECRYPT_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.decrypt_log</code> table reference
|
||||
*/
|
||||
public DecryptLog(Name alias) {
|
||||
this(alias, DECRYPT_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.decrypt_log</code> table reference
|
||||
*/
|
||||
public DecryptLog() {
|
||||
this(DSL.name("decrypt_log"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> DecryptLog(Table<O> child, ForeignKey<O, DecryptLogRecord> key) {
|
||||
super(child, key, DECRYPT_LOG);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<DecryptLogRecord> getPrimaryKey() {
|
||||
return Keys.DECRYPT_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DecryptLog as(String alias) {
|
||||
return new DecryptLog(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DecryptLog as(Name alias) {
|
||||
return new DecryptLog(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DecryptLog as(Table<?> alias) {
|
||||
return new DecryptLog(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public DecryptLog rename(String name) {
|
||||
return new DecryptLog(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public DecryptLog rename(Name name) {
|
||||
return new DecryptLog(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public DecryptLog rename(Table<?> name) {
|
||||
return new DecryptLog(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row9 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row9<String, String, Integer, String, LocalDateTime, String, String, Integer, String> fieldsRow() {
|
||||
return (Row9) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function9<? super String, ? super String, ? super Integer, ? super String, ? super LocalDateTime, ? super String, ? super String, ? super Integer, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function9<? super String, ? super String, ? super Integer, ? super String, ? super LocalDateTime, ? super String, ? super String, ? super Integer, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,195 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.DownloadLogRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function7;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row7;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* 下载行为记录
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class DownloadLog extends TableImpl<DownloadLogRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.download_log</code>
|
||||
*/
|
||||
public static final DownloadLog DOWNLOAD_LOG = new DownloadLog();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<DownloadLogRecord> getRecordType() {
|
||||
return DownloadLogRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.download_log.id</code>.
|
||||
*/
|
||||
public final TableField<DownloadLogRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.download_log.weid</code>. weid
|
||||
*/
|
||||
public final TableField<DownloadLogRecord, String> WEID = createField(DSL.name("weid"), SQLDataType.VARCHAR(32), this, "weid");
|
||||
|
||||
/**
|
||||
* The column <code>public.download_log.downloadtime</code>. 下载时间
|
||||
*/
|
||||
public final TableField<DownloadLogRecord, LocalDateTime> DOWNLOADTIME = createField(DSL.name("downloadtime"), SQLDataType.LOCALDATETIME(0), this, "下载时间");
|
||||
|
||||
/**
|
||||
* The column <code>public.download_log.filenum</code>. 下载文件数
|
||||
*/
|
||||
public final TableField<DownloadLogRecord, Integer> FILENUM = createField(DSL.name("filenum"), SQLDataType.INTEGER, this, "下载文件数");
|
||||
|
||||
/**
|
||||
* The column <code>public.download_log.content_type</code>.
|
||||
* 下载类型(1文件包/2单个附件(SyncFile)/3单个件(DirecotryFile))
|
||||
*/
|
||||
public final TableField<DownloadLogRecord, Integer> CONTENT_TYPE = createField(DSL.name("content_type"), SQLDataType.INTEGER, this, "下载类型(1文件包/2单个附件(SyncFile)/3单个件(DirecotryFile))");
|
||||
|
||||
/**
|
||||
* The column <code>public.download_log.contentid</code>.
|
||||
* 下载记录ID(如果是单个文件,就取ID,如果是包,就是包内包含的文件的ID列表)
|
||||
*/
|
||||
public final TableField<DownloadLogRecord, String> CONTENTID = createField(DSL.name("contentid"), SQLDataType.VARCHAR(255), this, "下载记录ID(如果是单个文件,就取ID,如果是包,就是包内包含的文件的ID列表)");
|
||||
|
||||
/**
|
||||
* The column <code>public.download_log.sign</code>. 数字签名
|
||||
*/
|
||||
public final TableField<DownloadLogRecord, String> SIGN = createField(DSL.name("sign"), SQLDataType.VARCHAR(255), this, "数字签名");
|
||||
|
||||
private DownloadLog(Name alias, Table<DownloadLogRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private DownloadLog(Name alias, Table<DownloadLogRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment("下载行为记录"), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.download_log</code> table reference
|
||||
*/
|
||||
public DownloadLog(String alias) {
|
||||
this(DSL.name(alias), DOWNLOAD_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.download_log</code> table reference
|
||||
*/
|
||||
public DownloadLog(Name alias) {
|
||||
this(alias, DOWNLOAD_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.download_log</code> table reference
|
||||
*/
|
||||
public DownloadLog() {
|
||||
this(DSL.name("download_log"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> DownloadLog(Table<O> child, ForeignKey<O, DownloadLogRecord> key) {
|
||||
super(child, key, DOWNLOAD_LOG);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<DownloadLogRecord> getPrimaryKey() {
|
||||
return Keys.DOWNLOAD_LOG_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public DownloadLog as(String alias) {
|
||||
return new DownloadLog(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DownloadLog as(Name alias) {
|
||||
return new DownloadLog(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DownloadLog as(Table<?> alias) {
|
||||
return new DownloadLog(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public DownloadLog rename(String name) {
|
||||
return new DownloadLog(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public DownloadLog rename(Name name) {
|
||||
return new DownloadLog(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public DownloadLog rename(Table<?> name) {
|
||||
return new DownloadLog(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row7 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row7<String, String, LocalDateTime, Integer, Integer, String, String> fieldsRow() {
|
||||
return (Row7) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function7<? super String, ? super String, ? super LocalDateTime, ? super Integer, ? super Integer, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function7<? super String, ? super String, ? super LocalDateTime, ? super Integer, ? super Integer, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,366 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApply extends TableImpl<FilesApplyRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.files_apply</code>
|
||||
*/
|
||||
public static final FilesApply FILES_APPLY = new FilesApply();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<FilesApplyRecord> getRecordType() {
|
||||
return FilesApplyRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_user_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_USER_ID = createField(DSL.name("apply_user_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_user_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_USER_NAME = createField(DSL.name("apply_user_name"), SQLDataType.VARCHAR(200).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_user_phone</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_USER_PHONE = createField(DSL.name("apply_user_phone"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_user_email</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_USER_EMAIL = createField(DSL.name("apply_user_email"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_ORG_ID = createField(DSL.name("apply_org_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_ORG_NAME = createField(DSL.name("apply_org_name"), SQLDataType.VARCHAR(200).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_in_check_user_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_IN_CHECK_USER_ID = createField(DSL.name("apply_in_check_user_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_in_check_user_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_IN_CHECK_USER_NAME = createField(DSL.name("apply_in_check_user_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_in_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_IN_CHECK_ORG_ID = createField(DSL.name("apply_in_check_org_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_in_check_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_IN_CHECK_ORG_NAME = createField(DSL.name("apply_in_check_org_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_next_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_NEXT_CHECK_ORG_ID = createField(DSL.name("apply_next_check_org_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_next_check_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_NEXT_CHECK_ORG_NAME = createField(DSL.name("apply_next_check_org_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_end_check_user_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_END_CHECK_USER_ID = createField(DSL.name("apply_end_check_user_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_end_check_user_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_END_CHECK_USER_NAME = createField(DSL.name("apply_end_check_user_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_end_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_END_CHECK_ORG_ID = createField(DSL.name("apply_end_check_org_id"), SQLDataType.VARCHAR(32).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_end_check_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_END_CHECK_ORG_NAME = createField(DSL.name("apply_end_check_org_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_days</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> APPLY_DAYS = createField(DSL.name("apply_days"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_feedback</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_FEEDBACK = createField(DSL.name("apply_feedback"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_reason</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_REASON = createField(DSL.name("apply_reason"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_cancel_reason</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> APPLY_CANCEL_REASON = createField(DSL.name("apply_cancel_reason"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_view_type_print</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> APPLY_VIEW_TYPE_PRINT = createField(DSL.name("apply_view_type_print"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_view_type_online</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> APPLY_VIEW_TYPE_ONLINE = createField(DSL.name("apply_view_type_online"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_file_num</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> APPLY_FILE_NUM = createField(DSL.name("apply_file_num"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_time</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, LocalDateTime> APPLY_TIME = createField(DSL.name("apply_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.apply_check_is_finish</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> APPLY_CHECK_IS_FINISH = createField(DSL.name("apply_check_is_finish"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_ORG_ID = createField(DSL.name("provider_org_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_ORG_NAME = createField(DSL.name("provider_org_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_file_properties</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> PROVIDER_FILE_PROPERTIES = createField(DSL.name("provider_file_properties"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_use_start_time</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, LocalDateTime> PROVIDER_USE_START_TIME = createField(DSL.name("provider_use_start_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_use_end_time</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, LocalDateTime> PROVIDER_USE_END_TIME = createField(DSL.name("provider_use_end_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_in_check_user_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_IN_CHECK_USER_ID = createField(DSL.name("provider_in_check_user_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_in_check_user_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_IN_CHECK_USER_NAME = createField(DSL.name("provider_in_check_user_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_in_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_IN_CHECK_ORG_ID = createField(DSL.name("provider_in_check_org_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_in_check_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_IN_CHECK_ORG_NAME = createField(DSL.name("provider_in_check_org_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply.provider_next_check_role_sign_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_NEXT_CHECK_ROLE_SIGN_ID = createField(DSL.name("provider_next_check_role_sign_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply.provider_next_check_role_sign_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_NEXT_CHECK_ROLE_SIGN_NAME = createField(DSL.name("provider_next_check_role_sign_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_end_check_user_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_END_CHECK_USER_ID = createField(DSL.name("provider_end_check_user_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_end_check_user_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_END_CHECK_USER_NAME = createField(DSL.name("provider_end_check_user_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_end_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_END_CHECK_ORG_ID = createField(DSL.name("provider_end_check_org_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_end_check_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROVIDER_END_CHECK_ORG_NAME = createField(DSL.name("provider_end_check_org_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.provider_check_is_finish</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> PROVIDER_CHECK_IS_FINISH = createField(DSL.name("provider_check_is_finish"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.secret_key</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> SECRET_KEY = createField(DSL.name("secret_key"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.status</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, Integer> STATUS = createField(DSL.name("status"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.project_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROJECT_ID = createField(DSL.name("project_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.project_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> PROJECT_NAME = createField(DSL.name("project_name"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply.sign</code>. 签名
|
||||
*/
|
||||
public final TableField<FilesApplyRecord, String> SIGN = createField(DSL.name("sign"), SQLDataType.VARCHAR(500), this, "签名");
|
||||
|
||||
private FilesApply(Name alias, Table<FilesApplyRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private FilesApply(Name alias, Table<FilesApplyRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply</code> table reference
|
||||
*/
|
||||
public FilesApply(String alias) {
|
||||
this(DSL.name(alias), FILES_APPLY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply</code> table reference
|
||||
*/
|
||||
public FilesApply(Name alias) {
|
||||
this(alias, FILES_APPLY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.files_apply</code> table reference
|
||||
*/
|
||||
public FilesApply() {
|
||||
this(DSL.name("files_apply"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> FilesApply(Table<O> child, ForeignKey<O, FilesApplyRecord> key) {
|
||||
super(child, key, FILES_APPLY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<FilesApplyRecord> getPrimaryKey() {
|
||||
return Keys.FILES_APPLY_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApply as(String alias) {
|
||||
return new FilesApply(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApply as(Name alias) {
|
||||
return new FilesApply(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApply as(Table<?> alias) {
|
||||
return new FilesApply(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApply rename(String name) {
|
||||
return new FilesApply(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApply rename(Name name) {
|
||||
return new FilesApply(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApply rename(Table<?> name) {
|
||||
return new FilesApply(name.getQualifiedName(), null);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,240 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyCheckRecordRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function15;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row15;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyCheckRecord extends TableImpl<FilesApplyCheckRecordRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.files_apply_check_record</code>
|
||||
*/
|
||||
public static final FilesApplyCheckRecord FILES_APPLY_CHECK_RECORD = new FilesApplyCheckRecord();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<FilesApplyCheckRecordRecord> getRecordType() {
|
||||
return FilesApplyCheckRecordRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.files_apply_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> FILES_APPLY_ID = createField(DSL.name("files_apply_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_check_record.is_apply_provider</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, Integer> IS_APPLY_PROVIDER = createField(DSL.name("is_apply_provider"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.check_user_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> CHECK_USER_ID = createField(DSL.name("check_user_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.check_user_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> CHECK_USER_NAME = createField(DSL.name("check_user_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.check_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> CHECK_ORG_ID = createField(DSL.name("check_org_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.check_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> CHECK_ORG_NAME = createField(DSL.name("check_org_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_check_record.next_check_org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> NEXT_CHECK_ORG_ID = createField(DSL.name("next_check_org_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_check_record.next_check_org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> NEXT_CHECK_ORG_NAME = createField(DSL.name("next_check_org_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.check_describe</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> CHECK_DESCRIBE = createField(DSL.name("check_describe"), SQLDataType.VARCHAR(500).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.check_status</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, Integer> CHECK_STATUS = createField(DSL.name("check_status"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.check_time</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, LocalDateTime> CHECK_TIME = createField(DSL.name("check_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_check_record.provider_next_check_role_sign_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> PROVIDER_NEXT_CHECK_ROLE_SIGN_ID = createField(DSL.name("provider_next_check_role_sign_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_check_record.provider_next_check_role_sign_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> PROVIDER_NEXT_CHECK_ROLE_SIGN_NAME = createField(DSL.name("provider_next_check_role_sign_name"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_check_record.sign</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyCheckRecordRecord, String> SIGN = createField(DSL.name("sign"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
private FilesApplyCheckRecord(Name alias, Table<FilesApplyCheckRecordRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private FilesApplyCheckRecord(Name alias, Table<FilesApplyCheckRecordRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_check_record</code> table
|
||||
* reference
|
||||
*/
|
||||
public FilesApplyCheckRecord(String alias) {
|
||||
this(DSL.name(alias), FILES_APPLY_CHECK_RECORD);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_check_record</code> table
|
||||
* reference
|
||||
*/
|
||||
public FilesApplyCheckRecord(Name alias) {
|
||||
this(alias, FILES_APPLY_CHECK_RECORD);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.files_apply_check_record</code> table reference
|
||||
*/
|
||||
public FilesApplyCheckRecord() {
|
||||
this(DSL.name("files_apply_check_record"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> FilesApplyCheckRecord(Table<O> child, ForeignKey<O, FilesApplyCheckRecordRecord> key) {
|
||||
super(child, key, FILES_APPLY_CHECK_RECORD);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<FilesApplyCheckRecordRecord> getPrimaryKey() {
|
||||
return Keys.FILES_APPLY_CHECK_RECORD_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyCheckRecord as(String alias) {
|
||||
return new FilesApplyCheckRecord(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyCheckRecord as(Name alias) {
|
||||
return new FilesApplyCheckRecord(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyCheckRecord as(Table<?> alias) {
|
||||
return new FilesApplyCheckRecord(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyCheckRecord rename(String name) {
|
||||
return new FilesApplyCheckRecord(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyCheckRecord rename(Name name) {
|
||||
return new FilesApplyCheckRecord(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyCheckRecord rename(Table<?> name) {
|
||||
return new FilesApplyCheckRecord(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row15 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row15<String, String, Integer, String, String, String, String, String, String, String, Integer, LocalDateTime, String, String, String> fieldsRow() {
|
||||
return (Row15) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function15<? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super LocalDateTime, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function15<? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super LocalDateTime, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,246 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDirectoryDocsRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyDirectoryDocs extends TableImpl<FilesApplyDirectoryDocsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.files_apply_directory_docs</code>
|
||||
*/
|
||||
public static final FilesApplyDirectoryDocs FILES_APPLY_DIRECTORY_DOCS = new FilesApplyDirectoryDocs();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<FilesApplyDirectoryDocsRecord> getRecordType() {
|
||||
return FilesApplyDirectoryDocsRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.files_apply_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> FILES_APPLY_ID = createField(DSL.name("files_apply_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_directory_docs.directory_file_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> DIRECTORY_FILE_ID = createField(DSL.name("directory_file_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_directory_docs.directory_file_p_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> DIRECTORY_FILE_P_ID = createField(DSL.name("directory_file_p_id"), SQLDataType.VARCHAR(50), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.filesuper</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> FILESUPER = createField(DSL.name("filesuper"), SQLDataType.VARCHAR(500).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.filecount</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, Integer> FILECOUNT = createField(DSL.name("filecount"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.dutyperson</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> DUTYPERSON = createField(DSL.name("dutyperson"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.eweavedate</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> EWEAVEDATE = createField(DSL.name("eweavedate"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.filepage</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, Integer> FILEPAGE = createField(DSL.name("filepage"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.sortorder</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> SORTORDER = createField(DSL.name("sortorder"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.bpeg</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> BPEG = createField(DSL.name("bpeg"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.epeg</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> EPEG = createField(DSL.name("epeg"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.filenum</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> FILENUM = createField(DSL.name("filenum"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.remark</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> REMARK = createField(DSL.name("remark"), SQLDataType.VARCHAR(300).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.recordnum</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> RECORDNUM = createField(DSL.name("recordnum"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.piecenumber</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> PIECENUMBER = createField(DSL.name("piecenumber"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.adddate</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> ADDDATE = createField(DSL.name("adddate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.editdate</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> EDITDATE = createField(DSL.name("editdate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.time_stamp</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> TIME_STAMP = createField(DSL.name("time_stamp"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.isdel</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, Integer> ISDEL = createField(DSL.name("isdel"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.catalogpdfurl</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> CATALOGPDFURL = createField(DSL.name("catalogpdfurl"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.signtag</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> SIGNTAG = createField(DSL.name("signtag"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_directory_docs.collecttag</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDirectoryDocsRecord, String> COLLECTTAG = createField(DSL.name("collecttag"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
private FilesApplyDirectoryDocs(Name alias, Table<FilesApplyDirectoryDocsRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private FilesApplyDirectoryDocs(Name alias, Table<FilesApplyDirectoryDocsRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_directory_docs</code> table
|
||||
* reference
|
||||
*/
|
||||
public FilesApplyDirectoryDocs(String alias) {
|
||||
this(DSL.name(alias), FILES_APPLY_DIRECTORY_DOCS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_directory_docs</code> table
|
||||
* reference
|
||||
*/
|
||||
public FilesApplyDirectoryDocs(Name alias) {
|
||||
this(alias, FILES_APPLY_DIRECTORY_DOCS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.files_apply_directory_docs</code> table reference
|
||||
*/
|
||||
public FilesApplyDirectoryDocs() {
|
||||
this(DSL.name("files_apply_directory_docs"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> FilesApplyDirectoryDocs(Table<O> child, ForeignKey<O, FilesApplyDirectoryDocsRecord> key) {
|
||||
super(child, key, FILES_APPLY_DIRECTORY_DOCS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<FilesApplyDirectoryDocsRecord> getPrimaryKey() {
|
||||
return Keys.FILES_APPLY_DIRECTORY_DOCS_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDirectoryDocs as(String alias) {
|
||||
return new FilesApplyDirectoryDocs(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDirectoryDocs as(Name alias) {
|
||||
return new FilesApplyDirectoryDocs(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDirectoryDocs as(Table<?> alias) {
|
||||
return new FilesApplyDirectoryDocs(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDirectoryDocs rename(String name) {
|
||||
return new FilesApplyDirectoryDocs(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDirectoryDocs rename(Name name) {
|
||||
return new FilesApplyDirectoryDocs(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDirectoryDocs rename(Table<?> name) {
|
||||
return new FilesApplyDirectoryDocs(name.getQualifiedName(), null);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,271 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Indexes;
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDocsRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function21;
|
||||
import org.jooq.Index;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row21;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyDocs extends TableImpl<FilesApplyDocsRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.files_apply_docs</code>
|
||||
*/
|
||||
public static final FilesApplyDocs FILES_APPLY_DOCS = new FilesApplyDocs();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<FilesApplyDocsRecord> getRecordType() {
|
||||
return FilesApplyDocsRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.files_apply_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> FILES_APPLY_ID = createField(DSL.name("files_apply_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.syn_file_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> SYN_FILE_ID = createField(DSL.name("syn_file_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.syn_file_p_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> SYN_FILE_P_ID = createField(DSL.name("syn_file_p_id"), SQLDataType.VARCHAR(50), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.tablenumber</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> TABLENUMBER = createField(DSL.name("tablenumber"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.annexname</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> ANNEXNAME = createField(DSL.name("annexname"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.projectname</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> PROJECTNAME = createField(DSL.name("projectname"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.eweavedate</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> EWEAVEDATE = createField(DSL.name("eweavedate"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.checkdate</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> CHECKDATE = createField(DSL.name("checkdate"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.annexpage</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, Integer> ANNEXPAGE = createField(DSL.name("annexpage"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.sortorder</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> SORTORDER = createField(DSL.name("sortorder"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.filefrom</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> FILEFROM = createField(DSL.name("filefrom"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.archivestag</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> ARCHIVESTAG = createField(DSL.name("archivestag"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.adddate</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> ADDDATE = createField(DSL.name("adddate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.editdate</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> EDITDATE = createField(DSL.name("editdate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.time_stamp</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> TIME_STAMP = createField(DSL.name("time_stamp"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.isdel</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, Integer> ISDEL = createField(DSL.name("isdel"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.downurl</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, String> DOWNURL = createField(DSL.name("downurl"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.filesize</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, Integer> FILESIZE = createField(DSL.name("filesize"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.apply_view_type_print</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, Integer> APPLY_VIEW_TYPE_PRINT = createField(DSL.name("apply_view_type_print"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_docs.apply_view_type_online</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDocsRecord, Integer> APPLY_VIEW_TYPE_ONLINE = createField(DSL.name("apply_view_type_online"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
private FilesApplyDocs(Name alias, Table<FilesApplyDocsRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private FilesApplyDocs(Name alias, Table<FilesApplyDocsRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_docs</code> table reference
|
||||
*/
|
||||
public FilesApplyDocs(String alias) {
|
||||
this(DSL.name(alias), FILES_APPLY_DOCS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_docs</code> table reference
|
||||
*/
|
||||
public FilesApplyDocs(Name alias) {
|
||||
this(alias, FILES_APPLY_DOCS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.files_apply_docs</code> table reference
|
||||
*/
|
||||
public FilesApplyDocs() {
|
||||
this(DSL.name("files_apply_docs"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> FilesApplyDocs(Table<O> child, ForeignKey<O, FilesApplyDocsRecord> key) {
|
||||
super(child, key, FILES_APPLY_DOCS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Index> getIndexes() {
|
||||
return Arrays.asList(Indexes.FILES_APPLY_DOCS_FILES_APPLY_ID_IDX);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<FilesApplyDocsRecord> getPrimaryKey() {
|
||||
return Keys.FILES_APPLY_DOCS_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDocs as(String alias) {
|
||||
return new FilesApplyDocs(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDocs as(Name alias) {
|
||||
return new FilesApplyDocs(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDocs as(Table<?> alias) {
|
||||
return new FilesApplyDocs(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDocs rename(String name) {
|
||||
return new FilesApplyDocs(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDocs rename(Name name) {
|
||||
return new FilesApplyDocs(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDocs rename(Table<?> name) {
|
||||
return new FilesApplyDocs(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row21 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row21<String, String, String, String, String, String, String, String, String, Integer, String, String, String, String, String, String, Integer, String, Integer, Integer, Integer> fieldsRow() {
|
||||
return (Row21) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function21<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? super Integer, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function21<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? super Integer, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,216 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDownloadRecordRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function11;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row11;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyDownloadRecord extends TableImpl<FilesApplyDownloadRecordRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.files_apply_download_record</code>
|
||||
*/
|
||||
public static final FilesApplyDownloadRecord FILES_APPLY_DOWNLOAD_RECORD = new FilesApplyDownloadRecord();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<FilesApplyDownloadRecordRecord> getRecordType() {
|
||||
return FilesApplyDownloadRecordRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>public.files_apply_download_record.files_apply_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> FILES_APPLY_ID = createField(DSL.name("files_apply_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.is_dir_file</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, Integer> IS_DIR_FILE = createField(DSL.name("is_dir_file"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.syn_file_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> SYN_FILE_ID = createField(DSL.name("syn_file_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.syn_file_p_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> SYN_FILE_P_ID = createField(DSL.name("syn_file_p_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.syn_file_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> SYN_FILE_NAME = createField(DSL.name("syn_file_name"), SQLDataType.VARCHAR(200).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.user_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> USER_ID = createField(DSL.name("user_id"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.user_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> USER_NAME = createField(DSL.name("user_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.org_id</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> ORG_ID = createField(DSL.name("org_id"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.org_name</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, String> ORG_NAME = createField(DSL.name("org_name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.files_apply_download_record.download_time</code>.
|
||||
*/
|
||||
public final TableField<FilesApplyDownloadRecordRecord, LocalDateTime> DOWNLOAD_TIME = createField(DSL.name("download_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
private FilesApplyDownloadRecord(Name alias, Table<FilesApplyDownloadRecordRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private FilesApplyDownloadRecord(Name alias, Table<FilesApplyDownloadRecordRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_download_record</code> table
|
||||
* reference
|
||||
*/
|
||||
public FilesApplyDownloadRecord(String alias) {
|
||||
this(DSL.name(alias), FILES_APPLY_DOWNLOAD_RECORD);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.files_apply_download_record</code> table
|
||||
* reference
|
||||
*/
|
||||
public FilesApplyDownloadRecord(Name alias) {
|
||||
this(alias, FILES_APPLY_DOWNLOAD_RECORD);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.files_apply_download_record</code> table reference
|
||||
*/
|
||||
public FilesApplyDownloadRecord() {
|
||||
this(DSL.name("files_apply_download_record"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> FilesApplyDownloadRecord(Table<O> child, ForeignKey<O, FilesApplyDownloadRecordRecord> key) {
|
||||
super(child, key, FILES_APPLY_DOWNLOAD_RECORD);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<FilesApplyDownloadRecordRecord> getPrimaryKey() {
|
||||
return Keys.FILES_APPLY_DOWNLOAD_RECORD_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDownloadRecord as(String alias) {
|
||||
return new FilesApplyDownloadRecord(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDownloadRecord as(Name alias) {
|
||||
return new FilesApplyDownloadRecord(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FilesApplyDownloadRecord as(Table<?> alias) {
|
||||
return new FilesApplyDownloadRecord(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDownloadRecord rename(String name) {
|
||||
return new FilesApplyDownloadRecord(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDownloadRecord rename(Name name) {
|
||||
return new FilesApplyDownloadRecord(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public FilesApplyDownloadRecord rename(Table<?> name) {
|
||||
return new FilesApplyDownloadRecord(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row11 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row11<String, String, Integer, String, String, String, String, String, String, String, LocalDateTime> fieldsRow() {
|
||||
return (Row11) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function11<? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super LocalDateTime, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function11<? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super LocalDateTime, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,177 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ProjectRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function4;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row4;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Project extends TableImpl<ProjectRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.project</code>
|
||||
*/
|
||||
public static final Project PROJECT = new Project();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<ProjectRecord> getRecordType() {
|
||||
return ProjectRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.project.id</code>.
|
||||
*/
|
||||
public final TableField<ProjectRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.project.project_name</code>.
|
||||
*/
|
||||
public final TableField<ProjectRecord, String> PROJECT_NAME = createField(DSL.name("project_name"), SQLDataType.VARCHAR.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.project.org_id</code>.
|
||||
*/
|
||||
public final TableField<ProjectRecord, String> ORG_ID = createField(DSL.name("org_id"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.project.org_name</code>.
|
||||
*/
|
||||
public final TableField<ProjectRecord, String> ORG_NAME = createField(DSL.name("org_name"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
private Project(Name alias, Table<ProjectRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private Project(Name alias, Table<ProjectRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.project</code> table reference
|
||||
*/
|
||||
public Project(String alias) {
|
||||
this(DSL.name(alias), PROJECT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.project</code> table reference
|
||||
*/
|
||||
public Project(Name alias) {
|
||||
this(alias, PROJECT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.project</code> table reference
|
||||
*/
|
||||
public Project() {
|
||||
this(DSL.name("project"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> Project(Table<O> child, ForeignKey<O, ProjectRecord> key) {
|
||||
super(child, key, PROJECT);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<ProjectRecord> getPrimaryKey() {
|
||||
return Keys.PROJECT_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Project as(String alias) {
|
||||
return new Project(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Project as(Name alias) {
|
||||
return new Project(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Project as(Table<?> alias) {
|
||||
return new Project(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Project rename(String name) {
|
||||
return new Project(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Project rename(Name name) {
|
||||
return new Project(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Project rename(Table<?> name) {
|
||||
return new Project(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row4 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row4<String, String, String, String> fieldsRow() {
|
||||
return (Row4) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function4<? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function4<? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,223 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ReadLogRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function13;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row13;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* 阅读情况
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ReadLog extends TableImpl<ReadLogRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.read_log</code>
|
||||
*/
|
||||
public static final ReadLog READ_LOG = new ReadLog();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<ReadLogRecord> getRecordType() {
|
||||
return ReadLogRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.id</code>.
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.weid</code>. 申请人id
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> WEID = createField(DSL.name("weid"), SQLDataType.VARCHAR(255), this, "申请人id");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.content_id</code>. 档案id
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> CONTENT_ID = createField(DSL.name("content_id"), SQLDataType.VARCHAR(255), this, "档案id");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.starttime</code>. 开始时间
|
||||
*/
|
||||
public final TableField<ReadLogRecord, LocalDateTime> STARTTIME = createField(DSL.name("starttime"), SQLDataType.LOCALDATETIME(6), this, "开始时间");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.endtime</code>. 结束时间
|
||||
*/
|
||||
public final TableField<ReadLogRecord, LocalDateTime> ENDTIME = createField(DSL.name("endtime"), SQLDataType.LOCALDATETIME(6), this, "结束时间");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.ip</code>. ip地址
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> IP = createField(DSL.name("ip"), SQLDataType.VARCHAR(32), this, "ip地址");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.location</code>. 区域
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> LOCATION = createField(DSL.name("location"), SQLDataType.VARCHAR(255), this, "区域");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.downloadtype</code>. 下载类型(1文件包/0单文件)
|
||||
*/
|
||||
public final TableField<ReadLogRecord, Integer> DOWNLOADTYPE = createField(DSL.name("downloadtype"), SQLDataType.INTEGER, this, "下载类型(1文件包/0单文件)");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.sign</code>. 数字签名
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> SIGN = createField(DSL.name("sign"), SQLDataType.VARCHAR(255), this, "数字签名");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.readid</code>. 一次阅读凭证id
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> READID = createField(DSL.name("readid"), SQLDataType.VARCHAR(32), this, "一次阅读凭证id");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.sm9hibeid</code>. 秘钥id
|
||||
*/
|
||||
public final TableField<ReadLogRecord, String> SM9HIBEID = createField(DSL.name("sm9hibeid"), SQLDataType.VARCHAR(255), this, "秘钥id");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.content_type</code>. 档案类型
|
||||
*/
|
||||
public final TableField<ReadLogRecord, Integer> CONTENT_TYPE = createField(DSL.name("content_type"), SQLDataType.INTEGER, this, "档案类型");
|
||||
|
||||
/**
|
||||
* The column <code>public.read_log.ischeck</code>. 是否上链(1是,0否)
|
||||
*/
|
||||
public final TableField<ReadLogRecord, Integer> ISCHECK = createField(DSL.name("ischeck"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "是否上链(1是,0否)");
|
||||
|
||||
private ReadLog(Name alias, Table<ReadLogRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private ReadLog(Name alias, Table<ReadLogRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment("阅读情况"), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.read_log</code> table reference
|
||||
*/
|
||||
public ReadLog(String alias) {
|
||||
this(DSL.name(alias), READ_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.read_log</code> table reference
|
||||
*/
|
||||
public ReadLog(Name alias) {
|
||||
this(alias, READ_LOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.read_log</code> table reference
|
||||
*/
|
||||
public ReadLog() {
|
||||
this(DSL.name("read_log"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> ReadLog(Table<O> child, ForeignKey<O, ReadLogRecord> key) {
|
||||
super(child, key, READ_LOG);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<ReadLogRecord> getPrimaryKey() {
|
||||
return Keys.READ_LOG_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReadLog as(String alias) {
|
||||
return new ReadLog(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReadLog as(Name alias) {
|
||||
return new ReadLog(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ReadLog as(Table<?> alias) {
|
||||
return new ReadLog(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ReadLog rename(String name) {
|
||||
return new ReadLog(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ReadLog rename(Name name) {
|
||||
return new ReadLog(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ReadLog rename(Table<?> name) {
|
||||
return new ReadLog(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row13 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row13<String, String, String, LocalDateTime, LocalDateTime, String, String, Integer, String, String, String, Integer, Integer> fieldsRow() {
|
||||
return (Row13) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function13<? super String, ? super String, ? super String, ? super LocalDateTime, ? super LocalDateTime, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function13<? super String, ? super String, ? super String, ? super LocalDateTime, ? super LocalDateTime, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,187 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SharedRuleConfigRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function6;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row6;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SharedRuleConfig extends TableImpl<SharedRuleConfigRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.shared_rule_config</code>
|
||||
*/
|
||||
public static final SharedRuleConfig SHARED_RULE_CONFIG = new SharedRuleConfig();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SharedRuleConfigRecord> getRecordType() {
|
||||
return SharedRuleConfigRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_rule_config.id</code>.
|
||||
*/
|
||||
public final TableField<SharedRuleConfigRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_rule_config.name</code>.
|
||||
*/
|
||||
public final TableField<SharedRuleConfigRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_rule_config.describe</code>.
|
||||
*/
|
||||
public final TableField<SharedRuleConfigRecord, String> DESCRIBE = createField(DSL.name("describe"), SQLDataType.VARCHAR.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_rule_config.status</code>.
|
||||
*/
|
||||
public final TableField<SharedRuleConfigRecord, Integer> STATUS = createField(DSL.name("status"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_rule_config.sort</code>.
|
||||
*/
|
||||
public final TableField<SharedRuleConfigRecord, Integer> SORT = createField(DSL.name("sort"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_rule_config.project_name</code>.
|
||||
*/
|
||||
public final TableField<SharedRuleConfigRecord, String> PROJECT_NAME = createField(DSL.name("project_name"), SQLDataType.VARCHAR.nullable(false), this, "");
|
||||
|
||||
private SharedRuleConfig(Name alias, Table<SharedRuleConfigRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SharedRuleConfig(Name alias, Table<SharedRuleConfigRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.shared_rule_config</code> table reference
|
||||
*/
|
||||
public SharedRuleConfig(String alias) {
|
||||
this(DSL.name(alias), SHARED_RULE_CONFIG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.shared_rule_config</code> table reference
|
||||
*/
|
||||
public SharedRuleConfig(Name alias) {
|
||||
this(alias, SHARED_RULE_CONFIG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.shared_rule_config</code> table reference
|
||||
*/
|
||||
public SharedRuleConfig() {
|
||||
this(DSL.name("shared_rule_config"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SharedRuleConfig(Table<O> child, ForeignKey<O, SharedRuleConfigRecord> key) {
|
||||
super(child, key, SHARED_RULE_CONFIG);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SharedRuleConfigRecord> getPrimaryKey() {
|
||||
return Keys.SHARED_RULE_CONFIG_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SharedRuleConfig as(String alias) {
|
||||
return new SharedRuleConfig(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SharedRuleConfig as(Name alias) {
|
||||
return new SharedRuleConfig(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SharedRuleConfig as(Table<?> alias) {
|
||||
return new SharedRuleConfig(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SharedRuleConfig rename(String name) {
|
||||
return new SharedRuleConfig(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SharedRuleConfig rename(Name name) {
|
||||
return new SharedRuleConfig(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SharedRuleConfig rename(Table<?> name) {
|
||||
return new SharedRuleConfig(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row6 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row6<String, String, String, Integer, Integer, String> fieldsRow() {
|
||||
return (Row6) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function6<? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function6<? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,209 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SharedSynAllRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function9;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row9;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SharedSynAll extends TableImpl<SharedSynAllRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.shared_syn_all</code>
|
||||
*/
|
||||
public static final SharedSynAll SHARED_SYN_ALL = new SharedSynAll();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SharedSynAllRecord> getRecordType() {
|
||||
return SharedSynAllRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.id</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.syn_id</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, String> SYN_ID = createField(DSL.name("syn_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.syn_type</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, Integer> SYN_TYPE = createField(DSL.name("syn_type"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.is_config_rule</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, Integer> IS_CONFIG_RULE = createField(DSL.name("is_config_rule"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.shared_status</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, Integer> SHARED_STATUS = createField(DSL.name("shared_status"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.syn_status</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, Integer> SYN_STATUS = createField(DSL.name("syn_status"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.block_number</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, String> BLOCK_NUMBER = createField(DSL.name("block_number"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.block_hash</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, String> BLOCK_HASH = createField(DSL.name("block_hash"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.shared_syn_all.block_time</code>.
|
||||
*/
|
||||
public final TableField<SharedSynAllRecord, String> BLOCK_TIME = createField(DSL.name("block_time"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
private SharedSynAll(Name alias, Table<SharedSynAllRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SharedSynAll(Name alias, Table<SharedSynAllRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.shared_syn_all</code> table reference
|
||||
*/
|
||||
public SharedSynAll(String alias) {
|
||||
this(DSL.name(alias), SHARED_SYN_ALL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.shared_syn_all</code> table reference
|
||||
*/
|
||||
public SharedSynAll(Name alias) {
|
||||
this(alias, SHARED_SYN_ALL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.shared_syn_all</code> table reference
|
||||
*/
|
||||
public SharedSynAll() {
|
||||
this(DSL.name("shared_syn_all"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SharedSynAll(Table<O> child, ForeignKey<O, SharedSynAllRecord> key) {
|
||||
super(child, key, SHARED_SYN_ALL);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SharedSynAllRecord> getPrimaryKey() {
|
||||
return Keys.SHARED_SYN_ALL_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<SharedSynAllRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.SHARED_SYN_ALL_SYN_ID_KEY, Keys.SHARED_SYN_ALL_SYN_ID_SYN_TYPE_KEY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SharedSynAll as(String alias) {
|
||||
return new SharedSynAll(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SharedSynAll as(Name alias) {
|
||||
return new SharedSynAll(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SharedSynAll as(Table<?> alias) {
|
||||
return new SharedSynAll(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SharedSynAll rename(String name) {
|
||||
return new SharedSynAll(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SharedSynAll rename(Name name) {
|
||||
return new SharedSynAll(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SharedSynAll rename(Table<?> name) {
|
||||
return new SharedSynAll(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row9 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row9<String, String, Integer, Integer, Integer, Integer, String, String, String> fieldsRow() {
|
||||
return (Row9) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function9<? super String, ? super String, ? super Integer, ? super Integer, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function9<? super String, ? super String, ? super Integer, ? super Integer, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,206 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Indexes;
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynDirectoryRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function8;
|
||||
import org.jooq.Index;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row8;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SynDirectory extends TableImpl<SynDirectoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.syn_directory</code>
|
||||
*/
|
||||
public static final SynDirectory SYN_DIRECTORY = new SynDirectory();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SynDirectoryRecord> getRecordType() {
|
||||
return SynDirectoryRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.id</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.p_id</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, String> P_ID = createField(DSL.name("p_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.wbs_id</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, String> WBS_ID = createField(DSL.name("wbs_id"), SQLDataType.VARCHAR(50), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.time_stamp</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, String> TIME_STAMP = createField(DSL.name("time_stamp"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.sortorder</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, Integer> SORTORDER = createField(DSL.name("sortorder"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.tname</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, String> TNAME = createField(DSL.name("tname"), SQLDataType.VARCHAR(300).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.subjoin</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, Integer> SUBJOIN = createField(DSL.name("subjoin"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory.isdel</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryRecord, Integer> ISDEL = createField(DSL.name("isdel"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
private SynDirectory(Name alias, Table<SynDirectoryRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SynDirectory(Name alias, Table<SynDirectoryRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.syn_directory</code> table reference
|
||||
*/
|
||||
public SynDirectory(String alias) {
|
||||
this(DSL.name(alias), SYN_DIRECTORY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.syn_directory</code> table reference
|
||||
*/
|
||||
public SynDirectory(Name alias) {
|
||||
this(alias, SYN_DIRECTORY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.syn_directory</code> table reference
|
||||
*/
|
||||
public SynDirectory() {
|
||||
this(DSL.name("syn_directory"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SynDirectory(Table<O> child, ForeignKey<O, SynDirectoryRecord> key) {
|
||||
super(child, key, SYN_DIRECTORY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Index> getIndexes() {
|
||||
return Arrays.asList(Indexes.IDX_SYN_DIREC_PID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SynDirectoryRecord> getPrimaryKey() {
|
||||
return Keys.SYN_DIRECTORY_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynDirectory as(String alias) {
|
||||
return new SynDirectory(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynDirectory as(Name alias) {
|
||||
return new SynDirectory(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynDirectory as(Table<?> alias) {
|
||||
return new SynDirectory(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynDirectory rename(String name) {
|
||||
return new SynDirectory(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynDirectory rename(Name name) {
|
||||
return new SynDirectory(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynDirectory rename(Table<?> name) {
|
||||
return new SynDirectory(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row8 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row8<String, String, String, String, Integer, String, Integer, Integer> fieldsRow() {
|
||||
return (Row8) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function8<? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function8<? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,271 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Indexes;
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynDirectoryFileRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function21;
|
||||
import org.jooq.Index;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row21;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SynDirectoryFile extends TableImpl<SynDirectoryFileRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.syn_directory_file</code>
|
||||
*/
|
||||
public static final SynDirectoryFile SYN_DIRECTORY_FILE = new SynDirectoryFile();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SynDirectoryFileRecord> getRecordType() {
|
||||
return SynDirectoryFileRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.id</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.p_id</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> P_ID = createField(DSL.name("p_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.filesuper</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> FILESUPER = createField(DSL.name("filesuper"), SQLDataType.VARCHAR(500).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.filecount</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, Integer> FILECOUNT = createField(DSL.name("filecount"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.dutyperson</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> DUTYPERSON = createField(DSL.name("dutyperson"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.eweavedate</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> EWEAVEDATE = createField(DSL.name("eweavedate"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.filepage</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, Integer> FILEPAGE = createField(DSL.name("filepage"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.sortorder</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> SORTORDER = createField(DSL.name("sortorder"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.bpeg</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> BPEG = createField(DSL.name("bpeg"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.epeg</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> EPEG = createField(DSL.name("epeg"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.filenum</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> FILENUM = createField(DSL.name("filenum"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.remark</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> REMARK = createField(DSL.name("remark"), SQLDataType.VARCHAR(300).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.recordnum</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> RECORDNUM = createField(DSL.name("recordnum"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.piecenumber</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> PIECENUMBER = createField(DSL.name("piecenumber"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.adddate</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> ADDDATE = createField(DSL.name("adddate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.editdate</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> EDITDATE = createField(DSL.name("editdate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.time_stamp</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> TIME_STAMP = createField(DSL.name("time_stamp"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.isdel</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, Integer> ISDEL = createField(DSL.name("isdel"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.catalogpdfurl</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> CATALOGPDFURL = createField(DSL.name("catalogpdfurl"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.signtag</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> SIGNTAG = createField(DSL.name("signtag"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_directory_file.collecttag</code>.
|
||||
*/
|
||||
public final TableField<SynDirectoryFileRecord, String> COLLECTTAG = createField(DSL.name("collecttag"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
private SynDirectoryFile(Name alias, Table<SynDirectoryFileRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SynDirectoryFile(Name alias, Table<SynDirectoryFileRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.syn_directory_file</code> table reference
|
||||
*/
|
||||
public SynDirectoryFile(String alias) {
|
||||
this(DSL.name(alias), SYN_DIRECTORY_FILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.syn_directory_file</code> table reference
|
||||
*/
|
||||
public SynDirectoryFile(Name alias) {
|
||||
this(alias, SYN_DIRECTORY_FILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.syn_directory_file</code> table reference
|
||||
*/
|
||||
public SynDirectoryFile() {
|
||||
this(DSL.name("syn_directory_file"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SynDirectoryFile(Table<O> child, ForeignKey<O, SynDirectoryFileRecord> key) {
|
||||
super(child, key, SYN_DIRECTORY_FILE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Index> getIndexes() {
|
||||
return Arrays.asList(Indexes.IDX_SYN_DIRECTOR_FILE_PID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SynDirectoryFileRecord> getPrimaryKey() {
|
||||
return Keys.SYN_DIRECTORY_FILE_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynDirectoryFile as(String alias) {
|
||||
return new SynDirectoryFile(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynDirectoryFile as(Name alias) {
|
||||
return new SynDirectoryFile(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynDirectoryFile as(Table<?> alias) {
|
||||
return new SynDirectoryFile(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynDirectoryFile rename(String name) {
|
||||
return new SynDirectoryFile(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynDirectoryFile rename(Name name) {
|
||||
return new SynDirectoryFile(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynDirectoryFile rename(Table<?> name) {
|
||||
return new SynDirectoryFile(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row21 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row21<String, String, String, Integer, String, String, Integer, String, String, String, String, String, String, String, String, String, String, Integer, String, String, String> fieldsRow() {
|
||||
return (Row21) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function21<? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function21<? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,251 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Indexes;
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynFileRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function17;
|
||||
import org.jooq.Index;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row17;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SynFile extends TableImpl<SynFileRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.syn_file</code>
|
||||
*/
|
||||
public static final SynFile SYN_FILE = new SynFile();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SynFileRecord> getRecordType() {
|
||||
return SynFileRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.id</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.p_id</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> P_ID = createField(DSL.name("p_id"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.tablenumber</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> TABLENUMBER = createField(DSL.name("tablenumber"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.annexname</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> ANNEXNAME = createField(DSL.name("annexname"), SQLDataType.VARCHAR(500).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.projectname</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> PROJECTNAME = createField(DSL.name("projectname"), SQLDataType.VARCHAR(500).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.eweavedate</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> EWEAVEDATE = createField(DSL.name("eweavedate"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.checkdate</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> CHECKDATE = createField(DSL.name("checkdate"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.annexpage</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, Integer> ANNEXPAGE = createField(DSL.name("annexpage"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.sortorder</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> SORTORDER = createField(DSL.name("sortorder"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.filefrom</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> FILEFROM = createField(DSL.name("filefrom"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.archivestag</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> ARCHIVESTAG = createField(DSL.name("archivestag"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.adddate</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> ADDDATE = createField(DSL.name("adddate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.editdate</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> EDITDATE = createField(DSL.name("editdate"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.time_stamp</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> TIME_STAMP = createField(DSL.name("time_stamp"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.isdel</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, Integer> ISDEL = createField(DSL.name("isdel"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.downurl</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, String> DOWNURL = createField(DSL.name("downurl"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.syn_file.filesize</code>.
|
||||
*/
|
||||
public final TableField<SynFileRecord, Integer> FILESIZE = createField(DSL.name("filesize"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
private SynFile(Name alias, Table<SynFileRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SynFile(Name alias, Table<SynFileRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.syn_file</code> table reference
|
||||
*/
|
||||
public SynFile(String alias) {
|
||||
this(DSL.name(alias), SYN_FILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.syn_file</code> table reference
|
||||
*/
|
||||
public SynFile(Name alias) {
|
||||
this(alias, SYN_FILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.syn_file</code> table reference
|
||||
*/
|
||||
public SynFile() {
|
||||
this(DSL.name("syn_file"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SynFile(Table<O> child, ForeignKey<O, SynFileRecord> key) {
|
||||
super(child, key, SYN_FILE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Index> getIndexes() {
|
||||
return Arrays.asList(Indexes.IDX_SYN_FILE_PID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SynFileRecord> getPrimaryKey() {
|
||||
return Keys.SYN_FILE_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynFile as(String alias) {
|
||||
return new SynFile(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynFile as(Name alias) {
|
||||
return new SynFile(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SynFile as(Table<?> alias) {
|
||||
return new SynFile(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynFile rename(String name) {
|
||||
return new SynFile(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynFile rename(Name name) {
|
||||
return new SynFile(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SynFile rename(Table<?> name) {
|
||||
return new SynFile(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row17 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row17<String, String, String, String, String, String, String, Integer, String, String, String, String, String, String, Integer, String, Integer> fieldsRow() {
|
||||
return (Row17) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function17<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function17<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -5,22 +5,22 @@ package jj.tech.paolu.repository.jooq.tables;
|
|||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function14;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row14;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -39,7 +39,7 @@ public class SysAdmin extends TableImpl<SysAdminRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_admin</code>
|
||||
* The reference instance of <code>yx.sys_admin</code>
|
||||
*/
|
||||
public static final SysAdmin SYS_ADMIN = new SysAdmin();
|
||||
|
||||
|
|
@ -52,121 +52,82 @@ public class SysAdmin extends TableImpl<SysAdminRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.id</code>.
|
||||
* The column <code>yx.sys_admin.id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysAdminRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.org_id</code>.
|
||||
* The column <code>yx.sys_admin.org_id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> ORG_ID = createField(DSL.name("org_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysAdminRecord, String> ORG_ID = createField(DSL.name("org_id"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.realname</code>.
|
||||
* The column <code>yx.sys_admin.type</code>. 0管理员,1普通用户
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> REALNAME = createField(DSL.name("realname"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysAdminRecord, Integer> TYPE = createField(DSL.name("type"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "0管理员,1普通用户");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.username</code>.
|
||||
* The column <code>yx.sys_admin.realname</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> USERNAME = createField(DSL.name("username"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
public final TableField<SysAdminRecord, String> REALNAME = createField(DSL.name("realname"), SQLDataType.VARCHAR(100).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.password</code>.
|
||||
* The column <code>yx.sys_admin.username</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> PASSWORD = createField(DSL.name("password"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
public final TableField<SysAdminRecord, String> USERNAME = createField(DSL.name("username"), SQLDataType.VARCHAR(100).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.phone</code>.
|
||||
* The column <code>yx.sys_admin.password</code>. sha3_256hex
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> PHONE = createField(DSL.name("phone"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
public final TableField<SysAdminRecord, String> PASSWORD = createField(DSL.name("password"), SQLDataType.VARCHAR(100).nullable(false), this, "sha3_256hex");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.email</code>.
|
||||
* The column <code>yx.sys_admin.islock</code>. 0正常,1锁定
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> EMAIL = createField(DSL.name("email"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.job</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> JOB = createField(DSL.name("job"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.gender</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, Integer> GENDER = createField(DSL.name("gender"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.islock</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, Integer> ISLOCK = createField(DSL.name("islock"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.type</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, Integer> TYPE = createField(DSL.name("type"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.sort</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, Integer> SORT = createField(DSL.name("sort"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.cer_id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> CER_ID = createField(DSL.name("cer_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin.company_id</code>. 公司ID,组织ID的最高级
|
||||
*/
|
||||
public final TableField<SysAdminRecord, String> COMPANY_ID = createField(DSL.name("company_id"), SQLDataType.VARCHAR(32), this, "公司ID,组织ID的最高级");
|
||||
public final TableField<SysAdminRecord, Integer> ISLOCK = createField(DSL.name("islock"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "0正常,1锁定");
|
||||
|
||||
private SysAdmin(Name alias, Table<SysAdminRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysAdmin(Name alias, Table<SysAdminRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysAdmin(Name alias, Table<SysAdminRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_admin</code> table reference
|
||||
* Create an aliased <code>yx.sys_admin</code> table reference
|
||||
*/
|
||||
public SysAdmin(String alias) {
|
||||
this(DSL.name(alias), SYS_ADMIN);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_admin</code> table reference
|
||||
* Create an aliased <code>yx.sys_admin</code> table reference
|
||||
*/
|
||||
public SysAdmin(Name alias) {
|
||||
this(alias, SYS_ADMIN);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_admin</code> table reference
|
||||
* Create a <code>yx.sys_admin</code> table reference
|
||||
*/
|
||||
public SysAdmin() {
|
||||
this(DSL.name("sys_admin"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysAdmin(Table<O> child, ForeignKey<O, SysAdminRecord> key) {
|
||||
super(child, key, SYS_ADMIN);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysAdminRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ADMIN_PKEY;
|
||||
return Keys.KEY_SYS_ADMIN_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<SysAdminRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.SYS_ADMIN_USERNAME_KEY);
|
||||
return Arrays.asList(Keys.KEY_SYS_ADMIN_USERNAME);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -208,27 +169,87 @@ public class SysAdmin extends TableImpl<SysAdminRecord> {
|
|||
return new SysAdmin(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row14 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Row14<String, String, String, String, String, String, String, String, Integer, Integer, Integer, Integer, String, String> fieldsRow() {
|
||||
return (Row14) super.fieldsRow();
|
||||
public SysAdmin where(Condition condition) {
|
||||
return new SysAdmin(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function14<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super Integer, ? super Integer, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
@Override
|
||||
public SysAdmin where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function14<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super Integer, ? super Integer, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
@Override
|
||||
public SysAdmin where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdmin where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdmin where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdmin where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdmin where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdmin where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdmin whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdmin whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,235 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminMenuRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysAdminMenu extends TableImpl<SysAdminMenuRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>yx.sys_admin_menu</code>
|
||||
*/
|
||||
public static final SysAdminMenu SYS_ADMIN_MENU = new SysAdminMenu();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SysAdminMenuRecord> getRecordType() {
|
||||
return SysAdminMenuRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_admin_menu.id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminMenuRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_admin_menu.adminid</code>.
|
||||
*/
|
||||
public final TableField<SysAdminMenuRecord, String> ADMINID = createField(DSL.name("adminid"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_admin_menu.memuid</code>.
|
||||
*/
|
||||
public final TableField<SysAdminMenuRecord, String> MEMUID = createField(DSL.name("memuid"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
private SysAdminMenu(Name alias, Table<SysAdminMenuRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysAdminMenu(Name alias, Table<SysAdminMenuRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>yx.sys_admin_menu</code> table reference
|
||||
*/
|
||||
public SysAdminMenu(String alias) {
|
||||
this(DSL.name(alias), SYS_ADMIN_MENU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>yx.sys_admin_menu</code> table reference
|
||||
*/
|
||||
public SysAdminMenu(Name alias) {
|
||||
this(alias, SYS_ADMIN_MENU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>yx.sys_admin_menu</code> table reference
|
||||
*/
|
||||
public SysAdminMenu() {
|
||||
this(DSL.name("sys_admin_menu"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysAdminMenuRecord> getPrimaryKey() {
|
||||
return Keys.KEY_SYS_ADMIN_MENU_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<SysAdminMenuRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.KEY_SYS_ADMIN_MENU_ADMINID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysAdminMenu as(String alias) {
|
||||
return new SysAdminMenu(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysAdminMenu as(Name alias) {
|
||||
return new SysAdminMenu(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysAdminMenu as(Table<?> alias) {
|
||||
return new SysAdminMenu(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu rename(String name) {
|
||||
return new SysAdminMenu(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu rename(Name name) {
|
||||
return new SysAdminMenu(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu rename(Table<?> name) {
|
||||
return new SysAdminMenu(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu where(Condition condition) {
|
||||
return new SysAdminMenu(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminMenu where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminMenu where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminMenu where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminMenu where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminMenu whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -4,21 +4,21 @@
|
|||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.function.Function;
|
||||
import java.util.Collection;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminRoleRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function3;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row3;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -37,7 +37,7 @@ public class SysAdminRole extends TableImpl<SysAdminRoleRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_admin_role</code>
|
||||
* The reference instance of <code>yx.sys_admin_role</code>
|
||||
*/
|
||||
public static final SysAdminRole SYS_ADMIN_ROLE = new SysAdminRole();
|
||||
|
||||
|
|
@ -50,61 +50,57 @@ public class SysAdminRole extends TableImpl<SysAdminRoleRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_role.id</code>.
|
||||
* The column <code>yx.sys_admin_role.id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRoleRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysAdminRoleRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_role.adminid</code>.
|
||||
* The column <code>yx.sys_admin_role.admin_id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRoleRecord, String> ADMINID = createField(DSL.name("adminid"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysAdminRoleRecord, String> ADMIN_ID = createField(DSL.name("admin_id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_role.roleid</code>.
|
||||
* The column <code>yx.sys_admin_role.role_id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminRoleRecord, String> ROLEID = createField(DSL.name("roleid"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysAdminRoleRecord, Integer> ROLE_ID = createField(DSL.name("role_id"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
private SysAdminRole(Name alias, Table<SysAdminRoleRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysAdminRole(Name alias, Table<SysAdminRoleRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysAdminRole(Name alias, Table<SysAdminRoleRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_admin_role</code> table reference
|
||||
* Create an aliased <code>yx.sys_admin_role</code> table reference
|
||||
*/
|
||||
public SysAdminRole(String alias) {
|
||||
this(DSL.name(alias), SYS_ADMIN_ROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_admin_role</code> table reference
|
||||
* Create an aliased <code>yx.sys_admin_role</code> table reference
|
||||
*/
|
||||
public SysAdminRole(Name alias) {
|
||||
this(alias, SYS_ADMIN_ROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_admin_role</code> table reference
|
||||
* Create a <code>yx.sys_admin_role</code> table reference
|
||||
*/
|
||||
public SysAdminRole() {
|
||||
this(DSL.name("sys_admin_role"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysAdminRole(Table<O> child, ForeignKey<O, SysAdminRoleRecord> key) {
|
||||
super(child, key, SYS_ADMIN_ROLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysAdminRoleRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ADMIN_ROLE_PKEY;
|
||||
return Keys.KEY_SYS_ADMIN_ROLE_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -146,27 +142,87 @@ public class SysAdminRole extends TableImpl<SysAdminRoleRecord> {
|
|||
return new SysAdminRole(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row3 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Row3<String, String, String> fieldsRow() {
|
||||
return (Row3) super.fieldsRow();
|
||||
public SysAdminRole where(Condition condition) {
|
||||
return new SysAdminRole(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function3<? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
@Override
|
||||
public SysAdminRole where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function3<? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
@Override
|
||||
public SysAdminRole where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminRole where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminRole where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminRole where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminRole where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysAdminRole where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminRole whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminRole whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,200 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminWeidRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function7;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row7;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysAdminWeid extends TableImpl<SysAdminWeidRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_admin_weid</code>
|
||||
*/
|
||||
public static final SysAdminWeid SYS_ADMIN_WEID = new SysAdminWeid();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SysAdminWeidRecord> getRecordType() {
|
||||
return SysAdminWeidRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_weid.id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminWeidRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_weid.admin_id</code>.
|
||||
*/
|
||||
public final TableField<SysAdminWeidRecord, String> ADMIN_ID = createField(DSL.name("admin_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_weid.wid</code>.
|
||||
*/
|
||||
public final TableField<SysAdminWeidRecord, String> WID = createField(DSL.name("wid"), SQLDataType.VARCHAR(255).defaultValue(DSL.field(DSL.raw("NULL::character varying"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_weid.wprivate_key</code>.
|
||||
*/
|
||||
public final TableField<SysAdminWeidRecord, String> WPRIVATE_KEY = createField(DSL.name("wprivate_key"), SQLDataType.VARCHAR(500).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_weid.add_time</code>.
|
||||
*/
|
||||
public final TableField<SysAdminWeidRecord, LocalDateTime> ADD_TIME = createField(DSL.name("add_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_weid.certificate_hash</code>. 存证哈希
|
||||
*/
|
||||
public final TableField<SysAdminWeidRecord, String> CERTIFICATE_HASH = createField(DSL.name("certificate_hash"), SQLDataType.VARCHAR(200), this, "存证哈希");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_admin_weid.chain_block</code>.
|
||||
*/
|
||||
public final TableField<SysAdminWeidRecord, String> CHAIN_BLOCK = createField(DSL.name("chain_block"), SQLDataType.VARCHAR, this, "");
|
||||
|
||||
private SysAdminWeid(Name alias, Table<SysAdminWeidRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SysAdminWeid(Name alias, Table<SysAdminWeidRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_admin_weid</code> table reference
|
||||
*/
|
||||
public SysAdminWeid(String alias) {
|
||||
this(DSL.name(alias), SYS_ADMIN_WEID);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_admin_weid</code> table reference
|
||||
*/
|
||||
public SysAdminWeid(Name alias) {
|
||||
this(alias, SYS_ADMIN_WEID);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_admin_weid</code> table reference
|
||||
*/
|
||||
public SysAdminWeid() {
|
||||
this(DSL.name("sys_admin_weid"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysAdminWeid(Table<O> child, ForeignKey<O, SysAdminWeidRecord> key) {
|
||||
super(child, key, SYS_ADMIN_WEID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysAdminWeidRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ADMIN_WEID_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<SysAdminWeidRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.SYS_ADMIN_WEID_ADMIN_ID_KEY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysAdminWeid as(String alias) {
|
||||
return new SysAdminWeid(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysAdminWeid as(Name alias) {
|
||||
return new SysAdminWeid(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysAdminWeid as(Table<?> alias) {
|
||||
return new SysAdminWeid(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminWeid rename(String name) {
|
||||
return new SysAdminWeid(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminWeid rename(Name name) {
|
||||
return new SysAdminWeid(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysAdminWeid rename(Table<?> name) {
|
||||
return new SysAdminWeid(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row7 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row7<String, String, String, String, LocalDateTime, String, String> fieldsRow() {
|
||||
return (Row7) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function7<? super String, ? super String, ? super String, ? super String, ? super LocalDateTime, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function7<? super String, ? super String, ? super String, ? super String, ? super LocalDateTime, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,201 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Indexes;
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAreaRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function7;
|
||||
import org.jooq.Index;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row7;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysArea extends TableImpl<SysAreaRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_area</code>
|
||||
*/
|
||||
public static final SysArea SYS_AREA = new SysArea();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SysAreaRecord> getRecordType() {
|
||||
return SysAreaRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_area.id</code>.
|
||||
*/
|
||||
public final TableField<SysAreaRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_area.level_code</code>.
|
||||
*/
|
||||
public final TableField<SysAreaRecord, Short> LEVEL_CODE = createField(DSL.name("level_code"), SQLDataType.SMALLINT, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_area.parent_code</code>.
|
||||
*/
|
||||
public final TableField<SysAreaRecord, String> PARENT_CODE = createField(DSL.name("parent_code"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_area.area_code</code>.
|
||||
*/
|
||||
public final TableField<SysAreaRecord, String> AREA_CODE = createField(DSL.name("area_code"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_area.name</code>.
|
||||
*/
|
||||
public final TableField<SysAreaRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_area.pid</code>.
|
||||
*/
|
||||
public final TableField<SysAreaRecord, String> PID = createField(DSL.name("pid"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_area.pids</code>.
|
||||
*/
|
||||
public final TableField<SysAreaRecord, String> PIDS = createField(DSL.name("pids"), SQLDataType.VARCHAR(1000), this, "");
|
||||
|
||||
private SysArea(Name alias, Table<SysAreaRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SysArea(Name alias, Table<SysAreaRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_area</code> table reference
|
||||
*/
|
||||
public SysArea(String alias) {
|
||||
this(DSL.name(alias), SYS_AREA);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_area</code> table reference
|
||||
*/
|
||||
public SysArea(Name alias) {
|
||||
this(alias, SYS_AREA);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_area</code> table reference
|
||||
*/
|
||||
public SysArea() {
|
||||
this(DSL.name("sys_area"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysArea(Table<O> child, ForeignKey<O, SysAreaRecord> key) {
|
||||
super(child, key, SYS_AREA);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Index> getIndexes() {
|
||||
return Arrays.asList(Indexes.IDX_PARENT_CODE, Indexes.UK_CODE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysAreaRecord> getPrimaryKey() {
|
||||
return Keys.SYS_AREA_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysArea as(String alias) {
|
||||
return new SysArea(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysArea as(Name alias) {
|
||||
return new SysArea(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysArea as(Table<?> alias) {
|
||||
return new SysArea(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysArea rename(String name) {
|
||||
return new SysArea(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysArea rename(Name name) {
|
||||
return new SysArea(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysArea rename(Table<?> name) {
|
||||
return new SysArea(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row7 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row7<String, Short, String, String, String, String, String> fieldsRow() {
|
||||
return (Row7) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function7<? super String, ? super Short, ? super String, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function7<? super String, ? super Short, ? super String, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -6,22 +6,22 @@ package jj.tech.paolu.repository.jooq.tables;
|
|||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysConfigRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function7;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row7;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -40,7 +40,7 @@ public class SysConfig extends TableImpl<SysConfigRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_config</code>
|
||||
* The reference instance of <code>yx.sys_config</code>
|
||||
*/
|
||||
public static final SysConfig SYS_CONFIG = new SysConfig();
|
||||
|
||||
|
|
@ -53,86 +53,82 @@ public class SysConfig extends TableImpl<SysConfigRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_config.id</code>.
|
||||
* The column <code>yx.sys_config.id</code>.
|
||||
*/
|
||||
public final TableField<SysConfigRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysConfigRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_config.subgroup</code>.
|
||||
* The column <code>yx.sys_config.subgroup</code>. 分组
|
||||
*/
|
||||
public final TableField<SysConfigRecord, String> SUBGROUP = createField(DSL.name("subgroup"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
public final TableField<SysConfigRecord, String> SUBGROUP = createField(DSL.name("subgroup"), SQLDataType.VARCHAR(500).nullable(false), this, "分组");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_config.keys</code>.
|
||||
* The column <code>yx.sys_config.k</code>. 键
|
||||
*/
|
||||
public final TableField<SysConfigRecord, String> KEYS = createField(DSL.name("keys"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
public final TableField<SysConfigRecord, String> K = createField(DSL.name("k"), SQLDataType.VARCHAR(1000).nullable(false), this, "键");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_config.val</code>.
|
||||
* The column <code>yx.sys_config.val</code>. 值
|
||||
*/
|
||||
public final TableField<SysConfigRecord, String> VAL = createField(DSL.name("val"), SQLDataType.VARCHAR(1024), this, "");
|
||||
public final TableField<SysConfigRecord, String> VAL = createField(DSL.name("val"), SQLDataType.VARCHAR(14000).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "值");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_config.admin_id</code>.
|
||||
* The column <code>yx.sys_config.admin_id</code>. 管理员id
|
||||
*/
|
||||
public final TableField<SysConfigRecord, String> ADMIN_ID = createField(DSL.name("admin_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
public final TableField<SysConfigRecord, String> ADMIN_ID = createField(DSL.name("admin_id"), SQLDataType.VARCHAR(20).nullable(false), this, "管理员id");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_config.adminname</code>.
|
||||
* The column <code>yx.sys_config.adminname</code>. 管理员名称
|
||||
*/
|
||||
public final TableField<SysConfigRecord, String> ADMINNAME = createField(DSL.name("adminname"), SQLDataType.VARCHAR(32), this, "");
|
||||
public final TableField<SysConfigRecord, String> ADMINNAME = createField(DSL.name("adminname"), SQLDataType.VARCHAR(100).nullable(false), this, "管理员名称");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_config.edittime</code>.
|
||||
* The column <code>yx.sys_config.edittime</code>. 最后编辑时间
|
||||
*/
|
||||
public final TableField<SysConfigRecord, LocalDateTime> EDITTIME = createField(DSL.name("edittime"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
public final TableField<SysConfigRecord, LocalDateTime> EDITTIME = createField(DSL.name("edittime"), SQLDataType.LOCALDATETIME(0).defaultValue(DSL.field(DSL.raw("current_timestamp()"), SQLDataType.LOCALDATETIME)), this, "最后编辑时间");
|
||||
|
||||
private SysConfig(Name alias, Table<SysConfigRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysConfig(Name alias, Table<SysConfigRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysConfig(Name alias, Table<SysConfigRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_config</code> table reference
|
||||
* Create an aliased <code>yx.sys_config</code> table reference
|
||||
*/
|
||||
public SysConfig(String alias) {
|
||||
this(DSL.name(alias), SYS_CONFIG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_config</code> table reference
|
||||
* Create an aliased <code>yx.sys_config</code> table reference
|
||||
*/
|
||||
public SysConfig(Name alias) {
|
||||
this(alias, SYS_CONFIG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_config</code> table reference
|
||||
* Create a <code>yx.sys_config</code> table reference
|
||||
*/
|
||||
public SysConfig() {
|
||||
this(DSL.name("sys_config"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysConfig(Table<O> child, ForeignKey<O, SysConfigRecord> key) {
|
||||
super(child, key, SYS_CONFIG);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysConfigRecord> getPrimaryKey() {
|
||||
return Keys.SYS_CONFIG_PKEY;
|
||||
return Keys.KEY_SYS_CONFIG_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<SysConfigRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.SYS_CONFIG_KEYS_KEY);
|
||||
return Arrays.asList(Keys.KEY_SYS_CONFIG_K);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -174,27 +170,87 @@ public class SysConfig extends TableImpl<SysConfigRecord> {
|
|||
return new SysConfig(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row7 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Row7<String, String, String, String, String, String, LocalDateTime> fieldsRow() {
|
||||
return (Row7) super.fieldsRow();
|
||||
public SysConfig where(Condition condition) {
|
||||
return new SysConfig(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function7<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super LocalDateTime, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
@Override
|
||||
public SysConfig where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function7<? super String, ? super String, ? super String, ? super String, ? super String, ? super String, ? super LocalDateTime, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
@Override
|
||||
public SysConfig where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysConfig where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysConfig where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysConfig where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysConfig where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysConfig where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysConfig whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysConfig whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,21 +4,21 @@
|
|||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.function.Function;
|
||||
import java.util.Collection;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysMenuRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function11;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row11;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -37,7 +37,7 @@ public class SysMenu extends TableImpl<SysMenuRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_menu</code>
|
||||
* The reference instance of <code>yx.sys_menu</code>
|
||||
*/
|
||||
public static final SysMenu SYS_MENU = new SysMenu();
|
||||
|
||||
|
|
@ -50,101 +50,92 @@ public class SysMenu extends TableImpl<SysMenuRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.id</code>.
|
||||
* The column <code>yx.sys_menu.id</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysMenuRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.parent_id</code>.
|
||||
* The column <code>yx.sys_menu.parent_id</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> PARENT_ID = createField(DSL.name("parent_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
public final TableField<SysMenuRecord, String> PARENT_ID = createField(DSL.name("parent_id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.level</code>.
|
||||
* The column <code>yx.sys_menu.level</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, Integer> LEVEL = createField(DSL.name("level"), SQLDataType.INTEGER, this, "");
|
||||
public final TableField<SysMenuRecord, Integer> LEVEL = createField(DSL.name("level"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.name</code>.
|
||||
* The column <code>yx.sys_menu.name</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysMenuRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.types</code>.
|
||||
* The column <code>yx.sys_menu.types</code>. menu,url
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> TYPES = createField(DSL.name("types"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysMenuRecord, String> TYPES = createField(DSL.name("types"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "menu,url");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.url</code>.
|
||||
* The column <code>yx.sys_menu.url</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> URL = createField(DSL.name("url"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysMenuRecord, String> URL = createField(DSL.name("url"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.icon</code>.
|
||||
* The column <code>yx.sys_menu.icon</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> ICON = createField(DSL.name("icon"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysMenuRecord, String> ICON = createField(DSL.name("icon"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.is_open</code>.
|
||||
* The column <code>yx.sys_menu.is_open</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, Integer> IS_OPEN = createField(DSL.name("is_open"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.description</code>.
|
||||
* The column <code>yx.sys_menu.description</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysMenuRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.sort</code>.
|
||||
* The column <code>yx.sys_menu.sort</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, Integer> SORT = createField(DSL.name("sort"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_menu.parentpath</code>.
|
||||
*/
|
||||
public final TableField<SysMenuRecord, String> PARENTPATH = createField(DSL.name("parentpath"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
private SysMenu(Name alias, Table<SysMenuRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysMenu(Name alias, Table<SysMenuRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysMenu(Name alias, Table<SysMenuRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_menu</code> table reference
|
||||
* Create an aliased <code>yx.sys_menu</code> table reference
|
||||
*/
|
||||
public SysMenu(String alias) {
|
||||
this(DSL.name(alias), SYS_MENU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_menu</code> table reference
|
||||
* Create an aliased <code>yx.sys_menu</code> table reference
|
||||
*/
|
||||
public SysMenu(Name alias) {
|
||||
this(alias, SYS_MENU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_menu</code> table reference
|
||||
* Create a <code>yx.sys_menu</code> table reference
|
||||
*/
|
||||
public SysMenu() {
|
||||
this(DSL.name("sys_menu"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysMenu(Table<O> child, ForeignKey<O, SysMenuRecord> key) {
|
||||
super(child, key, SYS_MENU);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysMenuRecord> getPrimaryKey() {
|
||||
return Keys.SYS_MENU_PKEY;
|
||||
return Keys.KEY_SYS_MENU_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -186,27 +177,87 @@ public class SysMenu extends TableImpl<SysMenuRecord> {
|
|||
return new SysMenu(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row11 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Row11<String, String, Integer, String, String, String, String, Integer, String, Integer, String> fieldsRow() {
|
||||
return (Row11) super.fieldsRow();
|
||||
public SysMenu where(Condition condition) {
|
||||
return new SysMenu(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function11<? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
@Override
|
||||
public SysMenu where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function11<? super String, ? super String, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? super Integer, ? super String, ? super Integer, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
@Override
|
||||
public SysMenu where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysMenu where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysMenu where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysMenu where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysMenu where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysMenu where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysMenu whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysMenu whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,17 +4,21 @@
|
|||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Collection;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysOrgRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -33,7 +37,7 @@ public class SysOrg extends TableImpl<SysOrgRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_org</code>
|
||||
* The reference instance of <code>yx.sys_org</code>
|
||||
*/
|
||||
public static final SysOrg SYS_ORG = new SysOrg();
|
||||
|
||||
|
|
@ -46,196 +50,62 @@ public class SysOrg extends TableImpl<SysOrgRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.id</code>.
|
||||
* The column <code>yx.sys_org.id</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysOrgRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.pid</code>.
|
||||
* The column <code>yx.sys_org.pid</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> PID = createField(DSL.name("pid"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysOrgRecord, String> PID = createField(DSL.name("pid"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.chinese_simple_name</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CHINESE_SIMPLE_NAME = createField(DSL.name("chinese_simple_name"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.english_simple_name</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> ENGLISH_SIMPLE_NAME = createField(DSL.name("english_simple_name"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.chinese_full_name</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CHINESE_FULL_NAME = createField(DSL.name("chinese_full_name"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.english_full_name</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> ENGLISH_FULL_NAME = createField(DSL.name("english_full_name"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.code</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CODE = createField(DSL.name("code"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.sort</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, Integer> SORT = createField(DSL.name("sort"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.status</code>.
|
||||
* The column <code>yx.sys_org.status</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, Integer> STATUS = createField(DSL.name("status"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.is_company_department</code>.
|
||||
* The column <code>yx.sys_org.org_type</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, Integer> IS_COMPANY_DEPARTMENT = createField(DSL.name("is_company_department"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.enterprise_legal_person</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> ENTERPRISE_LEGAL_PERSON = createField(DSL.name("enterprise_legal_person"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.contact_person</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CONTACT_PERSON = createField(DSL.name("contact_person"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.contact_phone</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CONTACT_PHONE = createField(DSL.name("contact_phone"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.remark</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> REMARK = createField(DSL.name("remark"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.create_time</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, LocalDateTime> CREATE_TIME = createField(DSL.name("create_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.create_user</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CREATE_USER = createField(DSL.name("create_user"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.update_time</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, LocalDateTime> UPDATE_TIME = createField(DSL.name("update_time"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.update_user</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> UPDATE_USER = createField(DSL.name("update_user"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.name</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.industry_name</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> INDUSTRY_NAME = createField(DSL.name("industry_name"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.industry_code</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> INDUSTRY_CODE = createField(DSL.name("industry_code"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.province_code</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> PROVINCE_CODE = createField(DSL.name("province_code"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.city_code</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CITY_CODE = createField(DSL.name("city_code"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.area_code</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> AREA_CODE = createField(DSL.name("area_code"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.addr</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> ADDR = createField(DSL.name("addr"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.uscc</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> USCC = createField(DSL.name("uscc"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.org_type</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> ORG_TYPE = createField(DSL.name("org_type"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.is_archives_dep</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, Integer> IS_ARCHIVES_DEP = createField(DSL.name("is_archives_dep"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.cer_id</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, String> CER_ID = createField(DSL.name("cer_id"), SQLDataType.VARCHAR(32), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_org.is_forbidden</code>.
|
||||
*/
|
||||
public final TableField<SysOrgRecord, Integer> IS_FORBIDDEN = createField(DSL.name("is_forbidden"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
public final TableField<SysOrgRecord, String> ORG_TYPE = createField(DSL.name("org_type"), SQLDataType.VARCHAR(20).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
private SysOrg(Name alias, Table<SysOrgRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysOrg(Name alias, Table<SysOrgRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysOrg(Name alias, Table<SysOrgRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_org</code> table reference
|
||||
* Create an aliased <code>yx.sys_org</code> table reference
|
||||
*/
|
||||
public SysOrg(String alias) {
|
||||
this(DSL.name(alias), SYS_ORG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_org</code> table reference
|
||||
* Create an aliased <code>yx.sys_org</code> table reference
|
||||
*/
|
||||
public SysOrg(Name alias) {
|
||||
this(alias, SYS_ORG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_org</code> table reference
|
||||
* Create a <code>yx.sys_org</code> table reference
|
||||
*/
|
||||
public SysOrg() {
|
||||
this(DSL.name("sys_org"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysOrg(Table<O> child, ForeignKey<O, SysOrgRecord> key) {
|
||||
super(child, key, SYS_ORG);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysOrgRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ORG_PKEY1;
|
||||
return Keys.KEY_SYS_ORG_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -276,4 +146,88 @@ public class SysOrg extends TableImpl<SysOrgRecord> {
|
|||
public SysOrg rename(Table<?> name) {
|
||||
return new SysOrg(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysOrg where(Condition condition) {
|
||||
return new SysOrg(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysOrg where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysOrg where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysOrg where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysOrg where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysOrg where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysOrg where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysOrg where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysOrg whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysOrg whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,258 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysResourceRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysResource extends TableImpl<SysResourceRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>yx.sys_resource</code>
|
||||
*/
|
||||
public static final SysResource SYS_RESOURCE = new SysResource();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SysResourceRecord> getRecordType() {
|
||||
return SysResourceRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.id</code>.
|
||||
*/
|
||||
public final TableField<SysResourceRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.parent_id</code>.
|
||||
*/
|
||||
public final TableField<SysResourceRecord, String> PARENT_ID = createField(DSL.name("parent_id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.level</code>. 菜单排列顺序
|
||||
*/
|
||||
public final TableField<SysResourceRecord, Short> LEVEL = createField(DSL.name("level"), SQLDataType.SMALLINT.defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.SMALLINT)), this, "菜单排列顺序");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.name</code>.
|
||||
*/
|
||||
public final TableField<SysResourceRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(50).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.types</code>. 资源类型
|
||||
*/
|
||||
public final TableField<SysResourceRecord, String> TYPES = createField(DSL.name("types"), SQLDataType.VARCHAR(40).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "资源类型");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.url</code>.
|
||||
*/
|
||||
public final TableField<SysResourceRecord, String> URL = createField(DSL.name("url"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.icon</code>. 菜单图标
|
||||
*/
|
||||
public final TableField<SysResourceRecord, String> ICON = createField(DSL.name("icon"), SQLDataType.VARCHAR(100).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "菜单图标");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.ishide</code>. 是否折叠隐藏
|
||||
*/
|
||||
public final TableField<SysResourceRecord, Byte> ISHIDE = createField(DSL.name("ishide"), SQLDataType.TINYINT.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.TINYINT)), this, "是否折叠隐藏");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_resource.description</code>.
|
||||
*/
|
||||
public final TableField<SysResourceRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
private SysResource(Name alias, Table<SysResourceRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysResource(Name alias, Table<SysResourceRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>yx.sys_resource</code> table reference
|
||||
*/
|
||||
public SysResource(String alias) {
|
||||
this(DSL.name(alias), SYS_RESOURCE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>yx.sys_resource</code> table reference
|
||||
*/
|
||||
public SysResource(Name alias) {
|
||||
this(alias, SYS_RESOURCE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>yx.sys_resource</code> table reference
|
||||
*/
|
||||
public SysResource() {
|
||||
this(DSL.name("sys_resource"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysResourceRecord> getPrimaryKey() {
|
||||
return Keys.KEY_SYS_RESOURCE_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysResource as(String alias) {
|
||||
return new SysResource(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysResource as(Name alias) {
|
||||
return new SysResource(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysResource as(Table<?> alias) {
|
||||
return new SysResource(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource rename(String name) {
|
||||
return new SysResource(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource rename(Name name) {
|
||||
return new SysResource(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource rename(Table<?> name) {
|
||||
return new SysResource(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource where(Condition condition) {
|
||||
return new SysResource(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysResource where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysResource where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysResource where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysResource where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysResource whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -4,21 +4,21 @@
|
|||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.function.Function;
|
||||
import java.util.Collection;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function9;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row9;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -37,7 +37,7 @@ public class SysRole extends TableImpl<SysRoleRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_role</code>
|
||||
* The reference instance of <code>yx.sys_role</code>
|
||||
*/
|
||||
public static final SysRole SYS_ROLE = new SysRole();
|
||||
|
||||
|
|
@ -50,91 +50,57 @@ public class SysRole extends TableImpl<SysRoleRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.id</code>.
|
||||
* The column <code>yx.sys_role.id</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysRoleRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.rolename</code>.
|
||||
* The column <code>yx.sys_role.rolename</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, String> ROLENAME = createField(DSL.name("rolename"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
public final TableField<SysRoleRecord, String> ROLENAME = createField(DSL.name("rolename"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.describe</code>.
|
||||
* The column <code>yx.sys_role.department</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, String> DESCRIBE = createField(DSL.name("describe"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.sort</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, Integer> SORT = createField(DSL.name("sort"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.is_open</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, Integer> IS_OPEN = createField(DSL.name("is_open"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.sign_name</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, String> SIGN_NAME = createField(DSL.name("sign_name"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.sign_id</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, String> SIGN_ID = createField(DSL.name("sign_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.company_id</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, String> COMPANY_ID = createField(DSL.name("company_id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role.company_name</code>.
|
||||
*/
|
||||
public final TableField<SysRoleRecord, String> COMPANY_NAME = createField(DSL.name("company_name"), SQLDataType.VARCHAR(100).nullable(false), this, "");
|
||||
public final TableField<SysRoleRecord, String> DEPARTMENT = createField(DSL.name("department"), SQLDataType.VARCHAR(50).nullable(false), this, "");
|
||||
|
||||
private SysRole(Name alias, Table<SysRoleRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysRole(Name alias, Table<SysRoleRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysRole(Name alias, Table<SysRoleRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role</code> table reference
|
||||
* Create an aliased <code>yx.sys_role</code> table reference
|
||||
*/
|
||||
public SysRole(String alias) {
|
||||
this(DSL.name(alias), SYS_ROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role</code> table reference
|
||||
* Create an aliased <code>yx.sys_role</code> table reference
|
||||
*/
|
||||
public SysRole(Name alias) {
|
||||
this(alias, SYS_ROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_role</code> table reference
|
||||
* Create a <code>yx.sys_role</code> table reference
|
||||
*/
|
||||
public SysRole() {
|
||||
this(DSL.name("sys_role"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysRole(Table<O> child, ForeignKey<O, SysRoleRecord> key) {
|
||||
super(child, key, SYS_ROLE);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysRoleRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ROLE_PKEY;
|
||||
return Keys.KEY_SYS_ROLE_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -176,27 +142,87 @@ public class SysRole extends TableImpl<SysRoleRecord> {
|
|||
return new SysRole(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row9 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Row9<String, String, String, Integer, Integer, String, String, String, String> fieldsRow() {
|
||||
return (Row9) super.fieldsRow();
|
||||
public SysRole where(Condition condition) {
|
||||
return new SysRole(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function9<? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
@Override
|
||||
public SysRole where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function9<? super String, ? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
@Override
|
||||
public SysRole where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRole where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRole where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRole where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRole where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRole where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRole whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRole whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,179 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleMenuRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function3;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row3;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysRoleMenu extends TableImpl<SysRoleMenuRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_role_menu</code>
|
||||
*/
|
||||
public static final SysRoleMenu SYS_ROLE_MENU = new SysRoleMenu();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SysRoleMenuRecord> getRecordType() {
|
||||
return SysRoleMenuRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_menu.id</code>.
|
||||
*/
|
||||
public final TableField<SysRoleMenuRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_menu.roleid</code>.
|
||||
*/
|
||||
public final TableField<SysRoleMenuRecord, String> ROLEID = createField(DSL.name("roleid"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_menu.menuid</code>.
|
||||
*/
|
||||
public final TableField<SysRoleMenuRecord, String> MENUID = createField(DSL.name("menuid"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
private SysRoleMenu(Name alias, Table<SysRoleMenuRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SysRoleMenu(Name alias, Table<SysRoleMenuRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role_menu</code> table reference
|
||||
*/
|
||||
public SysRoleMenu(String alias) {
|
||||
this(DSL.name(alias), SYS_ROLE_MENU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role_menu</code> table reference
|
||||
*/
|
||||
public SysRoleMenu(Name alias) {
|
||||
this(alias, SYS_ROLE_MENU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_role_menu</code> table reference
|
||||
*/
|
||||
public SysRoleMenu() {
|
||||
this(DSL.name("sys_role_menu"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysRoleMenu(Table<O> child, ForeignKey<O, SysRoleMenuRecord> key) {
|
||||
super(child, key, SYS_ROLE_MENU);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysRoleMenuRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ROLE_MENU_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<SysRoleMenuRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.SYS_ROLE_MENU_ROLEID_RESID_KEY);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleMenu as(String alias) {
|
||||
return new SysRoleMenu(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleMenu as(Name alias) {
|
||||
return new SysRoleMenu(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleMenu as(Table<?> alias) {
|
||||
return new SysRoleMenu(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleMenu rename(String name) {
|
||||
return new SysRoleMenu(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleMenu rename(Name name) {
|
||||
return new SysRoleMenu(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleMenu rename(Table<?> name) {
|
||||
return new SysRoleMenu(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row3 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row3<String, String, String> fieldsRow() {
|
||||
return (Row3) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function3<? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function3<? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,228 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleResourceRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysRoleResource extends TableImpl<SysRoleResourceRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>yx.sys_role_resource</code>
|
||||
*/
|
||||
public static final SysRoleResource SYS_ROLE_RESOURCE = new SysRoleResource();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SysRoleResourceRecord> getRecordType() {
|
||||
return SysRoleResourceRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_role_resource.id</code>.
|
||||
*/
|
||||
public final TableField<SysRoleResourceRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_role_resource.roleid</code>.
|
||||
*/
|
||||
public final TableField<SysRoleResourceRecord, String> ROLEID = createField(DSL.name("roleid"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>yx.sys_role_resource.resid</code>.
|
||||
*/
|
||||
public final TableField<SysRoleResourceRecord, String> RESID = createField(DSL.name("resid"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
private SysRoleResource(Name alias, Table<SysRoleResourceRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysRoleResource(Name alias, Table<SysRoleResourceRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>yx.sys_role_resource</code> table reference
|
||||
*/
|
||||
public SysRoleResource(String alias) {
|
||||
this(DSL.name(alias), SYS_ROLE_RESOURCE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>yx.sys_role_resource</code> table reference
|
||||
*/
|
||||
public SysRoleResource(Name alias) {
|
||||
this(alias, SYS_ROLE_RESOURCE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>yx.sys_role_resource</code> table reference
|
||||
*/
|
||||
public SysRoleResource() {
|
||||
this(DSL.name("sys_role_resource"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysRoleResourceRecord> getPrimaryKey() {
|
||||
return Keys.KEY_SYS_ROLE_RESOURCE_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleResource as(String alias) {
|
||||
return new SysRoleResource(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleResource as(Name alias) {
|
||||
return new SysRoleResource(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleResource as(Table<?> alias) {
|
||||
return new SysRoleResource(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource rename(String name) {
|
||||
return new SysRoleResource(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource rename(Name name) {
|
||||
return new SysRoleResource(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource rename(Table<?> name) {
|
||||
return new SysRoleResource(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource where(Condition condition) {
|
||||
return new SysRoleResource(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleResource where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleResource where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleResource where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleResource where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleResource whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,172 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleSignRecord;
|
||||
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function3;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row3;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysRoleSign extends TableImpl<SysRoleSignRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_role_sign</code>
|
||||
*/
|
||||
public static final SysRoleSign SYS_ROLE_SIGN = new SysRoleSign();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<SysRoleSignRecord> getRecordType() {
|
||||
return SysRoleSignRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_sign.id</code>.
|
||||
*/
|
||||
public final TableField<SysRoleSignRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_sign.sign_name</code>.
|
||||
*/
|
||||
public final TableField<SysRoleSignRecord, String> SIGN_NAME = createField(DSL.name("sign_name"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_sign.sign_code</code>.
|
||||
*/
|
||||
public final TableField<SysRoleSignRecord, String> SIGN_CODE = createField(DSL.name("sign_code"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
|
||||
private SysRoleSign(Name alias, Table<SysRoleSignRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
}
|
||||
|
||||
private SysRoleSign(Name alias, Table<SysRoleSignRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role_sign</code> table reference
|
||||
*/
|
||||
public SysRoleSign(String alias) {
|
||||
this(DSL.name(alias), SYS_ROLE_SIGN);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role_sign</code> table reference
|
||||
*/
|
||||
public SysRoleSign(Name alias) {
|
||||
this(alias, SYS_ROLE_SIGN);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_role_sign</code> table reference
|
||||
*/
|
||||
public SysRoleSign() {
|
||||
this(DSL.name("sys_role_sign"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysRoleSign(Table<O> child, ForeignKey<O, SysRoleSignRecord> key) {
|
||||
super(child, key, SYS_ROLE_SIGN);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysRoleSignRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ROLE_SIGN_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleSign as(String alias) {
|
||||
return new SysRoleSign(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleSign as(Name alias) {
|
||||
return new SysRoleSign(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SysRoleSign as(Table<?> alias) {
|
||||
return new SysRoleSign(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleSign rename(String name) {
|
||||
return new SysRoleSign(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleSign rename(Name name) {
|
||||
return new SysRoleSign(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleSign rename(Table<?> name) {
|
||||
return new SysRoleSign(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row3 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Row3<String, String, String> fieldsRow() {
|
||||
return (Row3) super.fieldsRow();
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function3<? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function3<? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
}
|
||||
}
|
||||
|
|
@ -4,21 +4,21 @@
|
|||
package jj.tech.paolu.repository.jooq.tables;
|
||||
|
||||
|
||||
import java.util.function.Function;
|
||||
import java.util.Collection;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleUrlRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function4;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row4;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -37,7 +37,7 @@ public class SysRoleUrl extends TableImpl<SysRoleUrlRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_role_url</code>
|
||||
* The reference instance of <code>yx.sys_role_url</code>
|
||||
*/
|
||||
public static final SysRoleUrl SYS_ROLE_URL = new SysRoleUrl();
|
||||
|
||||
|
|
@ -50,66 +50,62 @@ public class SysRoleUrl extends TableImpl<SysRoleUrlRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_url.id</code>.
|
||||
* The column <code>yx.sys_role_url.id</code>.
|
||||
*/
|
||||
public final TableField<SysRoleUrlRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysRoleUrlRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_url.roleid</code>.
|
||||
* The column <code>yx.sys_role_url.roleid</code>.
|
||||
*/
|
||||
public final TableField<SysRoleUrlRecord, String> ROLEID = createField(DSL.name("roleid"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysRoleUrlRecord, String> ROLEID = createField(DSL.name("roleid"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_url.url</code>.
|
||||
* The column <code>yx.sys_role_url.url</code>. 对应sys_urls的url
|
||||
*/
|
||||
public final TableField<SysRoleUrlRecord, String> URL = createField(DSL.name("url"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysRoleUrlRecord, String> URL = createField(DSL.name("url"), SQLDataType.VARCHAR(300).nullable(false), this, "对应sys_urls的url");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_role_url.urltypes</code>.
|
||||
* The column <code>yx.sys_role_url.urltypes</code>. 1:url,2:菜单
|
||||
*/
|
||||
public final TableField<SysRoleUrlRecord, Integer> URLTYPES = createField(DSL.name("urltypes"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
public final TableField<SysRoleUrlRecord, Integer> URLTYPES = createField(DSL.name("urltypes"), SQLDataType.INTEGER.nullable(false), this, "1:url,2:菜单");
|
||||
|
||||
private SysRoleUrl(Name alias, Table<SysRoleUrlRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysRoleUrl(Name alias, Table<SysRoleUrlRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysRoleUrl(Name alias, Table<SysRoleUrlRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role_url</code> table reference
|
||||
* Create an aliased <code>yx.sys_role_url</code> table reference
|
||||
*/
|
||||
public SysRoleUrl(String alias) {
|
||||
this(DSL.name(alias), SYS_ROLE_URL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_role_url</code> table reference
|
||||
* Create an aliased <code>yx.sys_role_url</code> table reference
|
||||
*/
|
||||
public SysRoleUrl(Name alias) {
|
||||
this(alias, SYS_ROLE_URL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_role_url</code> table reference
|
||||
* Create a <code>yx.sys_role_url</code> table reference
|
||||
*/
|
||||
public SysRoleUrl() {
|
||||
this(DSL.name("sys_role_url"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysRoleUrl(Table<O> child, ForeignKey<O, SysRoleUrlRecord> key) {
|
||||
super(child, key, SYS_ROLE_URL);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysRoleUrlRecord> getPrimaryKey() {
|
||||
return Keys.SYS_ROLE_URL_PKEY;
|
||||
return Keys.KEY_SYS_ROLE_URL_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -151,27 +147,87 @@ public class SysRoleUrl extends TableImpl<SysRoleUrlRecord> {
|
|||
return new SysRoleUrl(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row4 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Row4<String, String, String, Integer> fieldsRow() {
|
||||
return (Row4) super.fieldsRow();
|
||||
public SysRoleUrl where(Condition condition) {
|
||||
return new SysRoleUrl(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function4<? super String, ? super String, ? super String, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
@Override
|
||||
public SysRoleUrl where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function4<? super String, ? super String, ? super String, ? super Integer, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
@Override
|
||||
public SysRoleUrl where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleUrl where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleUrl where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleUrl where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleUrl where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysRoleUrl where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleUrl whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysRoleUrl whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,22 +5,22 @@ package jj.tech.paolu.repository.jooq.tables;
|
|||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.function.Function;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.Keys;
|
||||
import jj.tech.paolu.repository.jooq.Public;
|
||||
import jj.tech.paolu.repository.jooq.Yx;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysUrlsRecord;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Function7;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.Records;
|
||||
import org.jooq.Row7;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.SelectField;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
|
|
@ -39,7 +39,7 @@ public class SysUrls extends TableImpl<SysUrlsRecord> {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.sys_urls</code>
|
||||
* The reference instance of <code>yx.sys_urls</code>
|
||||
*/
|
||||
public static final SysUrls SYS_URLS = new SysUrls();
|
||||
|
||||
|
|
@ -52,86 +52,82 @@ public class SysUrls extends TableImpl<SysUrlsRecord> {
|
|||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_urls.id</code>.
|
||||
* The column <code>yx.sys_urls.id</code>.
|
||||
*/
|
||||
public final TableField<SysUrlsRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(32).nullable(false), this, "");
|
||||
public final TableField<SysUrlsRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(20).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_urls.pid</code>.
|
||||
* The column <code>yx.sys_urls.pid</code>. 父类id
|
||||
*/
|
||||
public final TableField<SysUrlsRecord, String> PID = createField(DSL.name("pid"), SQLDataType.VARCHAR(32), this, "");
|
||||
public final TableField<SysUrlsRecord, Integer> PID = createField(DSL.name("pid"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.INTEGER)), this, "父类id");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_urls.types</code>.
|
||||
* The column <code>yx.sys_urls.types</code>. 1:url,2:菜单
|
||||
*/
|
||||
public final TableField<SysUrlsRecord, Integer> TYPES = createField(DSL.name("types"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "");
|
||||
public final TableField<SysUrlsRecord, Integer> TYPES = createField(DSL.name("types"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("1"), SQLDataType.INTEGER)), this, "1:url,2:菜单");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_urls.level</code>.
|
||||
* The column <code>yx.sys_urls.level</code>. 0:url,1:一级菜单, 2:二级菜单
|
||||
*/
|
||||
public final TableField<SysUrlsRecord, Integer> LEVEL = createField(DSL.name("level"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
public final TableField<SysUrlsRecord, Integer> LEVEL = createField(DSL.name("level"), SQLDataType.INTEGER.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "0:url,1:一级菜单, 2:二级菜单");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_urls.url</code>.
|
||||
* The column <code>yx.sys_urls.url</code>.
|
||||
*/
|
||||
public final TableField<SysUrlsRecord, String> URL = createField(DSL.name("url"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysUrlsRecord, String> URL = createField(DSL.name("url"), SQLDataType.VARCHAR(300).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_urls.name</code>.
|
||||
* The column <code>yx.sys_urls.name</code>.
|
||||
*/
|
||||
public final TableField<SysUrlsRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysUrlsRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.sys_urls.method</code>.
|
||||
* The column <code>yx.sys_urls.method</code>.
|
||||
*/
|
||||
public final TableField<SysUrlsRecord, String> METHOD = createField(DSL.name("method"), SQLDataType.VARCHAR(255), this, "");
|
||||
public final TableField<SysUrlsRecord, String> METHOD = createField(DSL.name("method"), SQLDataType.VARCHAR(200).defaultValue(DSL.field(DSL.raw("NULL"), SQLDataType.VARCHAR)), this, "");
|
||||
|
||||
private SysUrls(Name alias, Table<SysUrlsRecord> aliased) {
|
||||
this(alias, aliased, null);
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private SysUrls(Name alias, Table<SysUrlsRecord> aliased, Field<?>[] parameters) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table());
|
||||
private SysUrls(Name alias, Table<SysUrlsRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_urls</code> table reference
|
||||
* Create an aliased <code>yx.sys_urls</code> table reference
|
||||
*/
|
||||
public SysUrls(String alias) {
|
||||
this(DSL.name(alias), SYS_URLS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.sys_urls</code> table reference
|
||||
* Create an aliased <code>yx.sys_urls</code> table reference
|
||||
*/
|
||||
public SysUrls(Name alias) {
|
||||
this(alias, SYS_URLS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.sys_urls</code> table reference
|
||||
* Create a <code>yx.sys_urls</code> table reference
|
||||
*/
|
||||
public SysUrls() {
|
||||
this(DSL.name("sys_urls"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> SysUrls(Table<O> child, ForeignKey<O, SysUrlsRecord> key) {
|
||||
super(child, key, SYS_URLS);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
return aliased() ? null : Yx.YX;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<SysUrlsRecord> getPrimaryKey() {
|
||||
return Keys.SYS_URLS_PKEY;
|
||||
return Keys.KEY_SYS_URLS_PRIMARY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<SysUrlsRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.SYS_URLS_URL_KEY);
|
||||
return Arrays.asList(Keys.KEY_SYS_URLS_URL);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -173,27 +169,87 @@ public class SysUrls extends TableImpl<SysUrlsRecord> {
|
|||
return new SysUrls(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Row7 type methods
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Row7<String, String, Integer, Integer, String, String, String> fieldsRow() {
|
||||
return (Row7) super.fieldsRow();
|
||||
public SysUrls where(Condition condition) {
|
||||
return new SysUrls(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Function7<? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(Records.mapping(from));
|
||||
@Override
|
||||
public SysUrls where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Convenience mapping calling {@link SelectField#convertFrom(Class,
|
||||
* Function)}.
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
public <U> SelectField<U> mapping(Class<U> toType, Function7<? super String, ? super String, ? super Integer, ? super Integer, ? super String, ? super String, ? super String, ? extends U> from) {
|
||||
return convertFrom(toType, Records.mapping(from));
|
||||
@Override
|
||||
public SysUrls where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysUrls where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysUrls where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysUrls where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysUrls where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public SysUrls where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysUrls whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public SysUrls whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,255 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.ArchiveSynLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ArchiveSynLogRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* 从电子档案系统同步档案目录数据的过程日志
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class ArchiveSynLogDao extends DAOImpl<ArchiveSynLogRecord, jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog, String> {
|
||||
|
||||
/**
|
||||
* Create a new ArchiveSynLogDao without any configuration
|
||||
*/
|
||||
public ArchiveSynLogDao() {
|
||||
super(ArchiveSynLog.ARCHIVE_SYN_LOG, jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new ArchiveSynLogDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public ArchiveSynLogDao(Configuration configuration) {
|
||||
super(ArchiveSynLog.ARCHIVE_SYN_LOG, jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>start_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfStartTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.START_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>start_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByStartTime(LocalDateTime... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.START_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>insert_dir_count BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfInsertDirCount(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.INSERT_DIR_COUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>insert_dir_count IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByInsertDirCount(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.INSERT_DIR_COUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_dir_count BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfUpdateDirCount(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_DIR_COUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_dir_count IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByUpdateDirCount(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_DIR_COUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>insert_dirfile_count BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfInsertDirfileCount(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.INSERT_DIRFILE_COUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>insert_dirfile_count IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByInsertDirfileCount(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.INSERT_DIRFILE_COUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_dirfile_count BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfUpdateDirfileCount(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_DIRFILE_COUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_dirfile_count IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByUpdateDirfileCount(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_DIRFILE_COUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>insert_file_count BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfInsertFileCount(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.INSERT_FILE_COUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>insert_file_count IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByInsertFileCount(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.INSERT_FILE_COUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_file_count BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfUpdateFileCount(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_FILE_COUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_file_count IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByUpdateFileCount(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_FILE_COUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>description BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfDescription(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.DESCRIPTION, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>description IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByDescription(String... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.DESCRIPTION, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>run_result BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfRunResult(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.RUN_RESULT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>run_result IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByRunResult(String... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.RUN_RESULT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_timestamp BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfUpdateTimestamp(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_TIMESTAMP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_timestamp IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByUpdateTimestamp(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.UPDATE_TIMESTAMP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchById(String... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog fetchOneById(String value) {
|
||||
return fetchOne(ArchiveSynLog.ARCHIVE_SYN_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchOptionalById(String value) {
|
||||
return fetchOptional(ArchiveSynLog.ARCHIVE_SYN_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_update_timestamp BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfNextUpdateTimestamp(Long lowerInclusive, Long upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.NEXT_UPDATE_TIMESTAMP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_update_timestamp IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByNextUpdateTimestamp(Long... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.NEXT_UPDATE_TIMESTAMP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>end_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchRangeOfEndTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(ArchiveSynLog.ARCHIVE_SYN_LOG.END_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>end_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ArchiveSynLog> fetchByEndTime(LocalDateTime... values) {
|
||||
return fetch(ArchiveSynLog.ARCHIVE_SYN_LOG.END_TIME, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,329 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateApplyRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class CertificateApplyDao extends DAOImpl<CertificateApplyRecord, jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply, String> {
|
||||
|
||||
/**
|
||||
* Create a new CertificateApplyDao without any configuration
|
||||
*/
|
||||
public CertificateApplyDao() {
|
||||
super(CertificateApply.CERTIFICATE_APPLY, jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new CertificateApplyDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public CertificateApplyDao(Configuration configuration) {
|
||||
super(CertificateApply.CERTIFICATE_APPLY, jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchById(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply fetchOneById(String value) {
|
||||
return fetchOne(CertificateApply.CERTIFICATE_APPLY.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchOptionalById(String value) {
|
||||
return fetchOptional(CertificateApply.CERTIFICATE_APPLY.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_org BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfIsOrg(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.IS_ORG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_org IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByIsOrg(Integer... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.IS_ORG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByUserId(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByUserName(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_real_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfUserRealName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.USER_REAL_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_real_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByUserRealName(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.USER_REAL_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_phone BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfUserPhone(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.USER_PHONE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_phone IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByUserPhone(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.USER_PHONE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfUserOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.USER_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByUserOrgId(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.USER_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_org_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfUserOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.USER_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByUserOrgName(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.USER_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfApplyType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.APPLY_TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByApplyType(Integer... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.APPLY_TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByStatus(Integer... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfApplyTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.APPLY_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByApplyTime(LocalDateTime... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.APPLY_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_finish_time BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfApplyFinishTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.APPLY_FINISH_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_finish_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByApplyFinishTime(LocalDateTime... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.APPLY_FINISH_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_reason BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfApplyReason(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.APPLY_REASON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_reason IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByApplyReason(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.APPLY_REASON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_id BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfNextCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.NEXT_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByNextCheckOrgId(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.NEXT_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>end_check_org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfEndCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.END_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>end_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByEndCheckOrgId(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.END_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cer_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfCerId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.CER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cer_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByCerId(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.CER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>cer_id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply fetchOneByCerId(String value) {
|
||||
return fetchOne(CertificateApply.CERTIFICATE_APPLY.CER_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>cer_id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchOptionalByCerId(String value) {
|
||||
return fetchOptional(CertificateApply.CERTIFICATE_APPLY.CER_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchRangeOfCompanyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApply.CERTIFICATE_APPLY.COMPANY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApply> fetchByCompanyId(String... values) {
|
||||
return fetch(CertificateApply.CERTIFICATE_APPLY.COMPANY_ID, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,287 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateApplyRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateApplyRecordRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class CertificateApplyRecordDao extends DAOImpl<CertificateApplyRecordRecord, jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord, String> {
|
||||
|
||||
/**
|
||||
* Create a new CertificateApplyRecordDao without any configuration
|
||||
*/
|
||||
public CertificateApplyRecordDao() {
|
||||
super(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD, jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new CertificateApplyRecordDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public CertificateApplyRecordDao(Configuration configuration) {
|
||||
super(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD, jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchById(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord fetchOneById(String value) {
|
||||
return fetchOne(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchOptionalById(String value) {
|
||||
return fetchOptional(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_id BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCertificateApplyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CERTIFICATE_APPLY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCertificateApplyId(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CERTIFICATE_APPLY_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_user_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCertificateApplyUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CERTIFICATE_APPLY_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_user_id IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCertificateApplyUserId(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CERTIFICATE_APPLY_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_user_org_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCertificateApplyUserOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CERTIFICATE_APPLY_USER_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_user_org_id IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCertificateApplyUserOrgId(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CERTIFICATE_APPLY_USER_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_org BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfIsOrg(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.IS_ORG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_org IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByIsOrg(Integer... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.IS_ORG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfApplyType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.APPLY_TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByApplyType(Integer... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.APPLY_TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCheckUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCheckUserId(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCheckUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCheckUserName(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCheckOrgId(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCheckOrgName(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_describe BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCheckDescribe(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_DESCRIBE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_describe IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCheckDescribe(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_DESCRIBE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCheckStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCheckStatus(Integer... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfCheckTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByCheckTime(LocalDateTime... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.CHECK_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_id BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfNextCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.NEXT_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByNextCheckOrgId(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.NEXT_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchRangeOfNextCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.NEXT_CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateApplyRecord> fetchByNextCheckOrgName(String... values) {
|
||||
return fetch(CertificateApplyRecord.CERTIFICATE_APPLY_RECORD.NEXT_CHECK_ORG_NAME, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,270 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.CertificateDetail;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.CertificateDetailRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class CertificateDetailDao extends DAOImpl<CertificateDetailRecord, jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail, String> {
|
||||
|
||||
/**
|
||||
* Create a new CertificateDetailDao without any configuration
|
||||
*/
|
||||
public CertificateDetailDao() {
|
||||
super(CertificateDetail.CERTIFICATE_DETAIL, jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new CertificateDetailDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public CertificateDetailDao(Configuration configuration) {
|
||||
super(CertificateDetail.CERTIFICATE_DETAIL, jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchById(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail fetchOneById(String value) {
|
||||
return fetchOne(CertificateDetail.CERTIFICATE_DETAIL.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchOptionalById(String value) {
|
||||
return fetchOptional(CertificateDetail.CERTIFICATE_DETAIL.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_id BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfCertificateApplyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.CERTIFICATE_APPLY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_apply_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByCertificateApplyId(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.CERTIFICATE_APPLY_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>work_start_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfWorkStartTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.WORK_START_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>work_start_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByWorkStartTime(LocalDateTime... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.WORK_START_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>work_end_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfWorkEndTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.WORK_END_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>work_end_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByWorkEndTime(LocalDateTime... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.WORK_END_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByStatus(Integer... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cert_file_content BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfCertFileContent(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.CERT_FILE_CONTENT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cert_file_content IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByCertFileContent(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.CERT_FILE_CONTENT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_up_chain BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfIsUpChain(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.IS_UP_CHAIN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_up_chain IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByIsUpChain(Integer... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.IS_UP_CHAIN, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfWeid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.WEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByWeid(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.WEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>private_key_hex_str BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfPrivateKeyHexStr(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.PRIVATE_KEY_HEX_STR, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>private_key_hex_str IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByPrivateKeyHexStr(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.PRIVATE_KEY_HEX_STR, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_serial_number BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfX509SerialNumber(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.X509_SERIAL_NUMBER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_serial_number IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByX509SerialNumber(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.X509_SERIAL_NUMBER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_subject BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfX509Subject(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.X509_SUBJECT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_subject IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByX509Subject(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.X509_SUBJECT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_issuer BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfX509Issuer(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.X509_ISSUER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_issuer IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByX509Issuer(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.X509_ISSUER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_public_key BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfX509PublicKey(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.X509_PUBLIC_KEY, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_public_key IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByX509PublicKey(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.X509_PUBLIC_KEY, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_sig_alg_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchRangeOfX509SigAlgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(CertificateDetail.CERTIFICATE_DETAIL.X509_SIG_ALG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>x509_sig_alg_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.CertificateDetail> fetchByX509SigAlgName(String... values) {
|
||||
return fetch(CertificateDetail.CERTIFICATE_DETAIL.X509_SIG_ALG_NAME, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,195 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.DecryptLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.DecryptLogRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* 解密情况
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class DecryptLogDao extends DAOImpl<DecryptLogRecord, jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog, String> {
|
||||
|
||||
/**
|
||||
* Create a new DecryptLogDao without any configuration
|
||||
*/
|
||||
public DecryptLogDao() {
|
||||
super(DecryptLog.DECRYPT_LOG, jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new DecryptLogDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public DecryptLogDao(Configuration configuration) {
|
||||
super(DecryptLog.DECRYPT_LOG, jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchById(String... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog fetchOneById(String value) {
|
||||
return fetchOne(DecryptLog.DECRYPT_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchOptionalById(String value) {
|
||||
return fetchOptional(DecryptLog.DECRYPT_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfWeid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.WEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchByWeid(String... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.WEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfContentType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.CONTENT_TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchByContentType(Integer... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.CONTENT_TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfContentId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.CONTENT_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchByContentId(String... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.CONTENT_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>dec_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfDecTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.DEC_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>dec_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchByDecTime(LocalDateTime... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.DEC_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>location BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfLocation(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.LOCATION, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>location IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchByLocation(String... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.LOCATION, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sm9hibeid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfSm9hibeid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.SM9HIBEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sm9hibeid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchBySm9hibeid(String... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.SM9HIBEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchByStatus(Integer... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchRangeOfSign(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DecryptLog.DECRYPT_LOG.SIGN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DecryptLog> fetchBySign(String... values) {
|
||||
return fetch(DecryptLog.DECRYPT_LOG.SIGN, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,165 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.DownloadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.DownloadLogRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* 下载行为记录
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class DownloadLogDao extends DAOImpl<DownloadLogRecord, jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog, String> {
|
||||
|
||||
/**
|
||||
* Create a new DownloadLogDao without any configuration
|
||||
*/
|
||||
public DownloadLogDao() {
|
||||
super(DownloadLog.DOWNLOAD_LOG, jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new DownloadLogDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public DownloadLogDao(Configuration configuration) {
|
||||
super(DownloadLog.DOWNLOAD_LOG, jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DownloadLog.DOWNLOAD_LOG.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchById(String... values) {
|
||||
return fetch(DownloadLog.DOWNLOAD_LOG.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog fetchOneById(String value) {
|
||||
return fetchOne(DownloadLog.DOWNLOAD_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchOptionalById(String value) {
|
||||
return fetchOptional(DownloadLog.DOWNLOAD_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchRangeOfWeid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DownloadLog.DOWNLOAD_LOG.WEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchByWeid(String... values) {
|
||||
return fetch(DownloadLog.DOWNLOAD_LOG.WEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downloadtime BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchRangeOfDownloadtime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(DownloadLog.DOWNLOAD_LOG.DOWNLOADTIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downloadtime IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchByDownloadtime(LocalDateTime... values) {
|
||||
return fetch(DownloadLog.DOWNLOAD_LOG.DOWNLOADTIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filenum BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchRangeOfFilenum(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(DownloadLog.DOWNLOAD_LOG.FILENUM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filenum IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchByFilenum(Integer... values) {
|
||||
return fetch(DownloadLog.DOWNLOAD_LOG.FILENUM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchRangeOfContentType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(DownloadLog.DOWNLOAD_LOG.CONTENT_TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchByContentType(Integer... values) {
|
||||
return fetch(DownloadLog.DOWNLOAD_LOG.CONTENT_TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>contentid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchRangeOfContentid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DownloadLog.DOWNLOAD_LOG.CONTENTID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>contentid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchByContentid(String... values) {
|
||||
return fetch(DownloadLog.DOWNLOAD_LOG.CONTENTID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchRangeOfSign(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(DownloadLog.DOWNLOAD_LOG.SIGN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.DownloadLog> fetchBySign(String... values) {
|
||||
return fetch(DownloadLog.DOWNLOAD_LOG.SIGN, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,287 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyCheckRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyCheckRecordRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class FilesApplyCheckRecordDao extends DAOImpl<FilesApplyCheckRecordRecord, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord, String> {
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyCheckRecordDao without any configuration
|
||||
*/
|
||||
public FilesApplyCheckRecordDao() {
|
||||
super(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyCheckRecordDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public FilesApplyCheckRecordDao(Configuration configuration) {
|
||||
super(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchById(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord fetchOneById(String value) {
|
||||
return fetchOne(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchOptionalById(String value) {
|
||||
return fetchOptional(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfFilesApplyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.FILES_APPLY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByFilesApplyId(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.FILES_APPLY_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_apply_provider BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfIsApplyProvider(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.IS_APPLY_PROVIDER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_apply_provider IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByIsApplyProvider(Integer... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.IS_APPLY_PROVIDER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfCheckUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByCheckUserId(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfCheckUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_user_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByCheckUserName(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByCheckOrgId(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByCheckOrgName(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_id BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfNextCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.NEXT_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByNextCheckOrgId(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.NEXT_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfNextCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.NEXT_CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>next_check_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByNextCheckOrgName(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.NEXT_CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_describe BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfCheckDescribe(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_DESCRIBE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_describe IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByCheckDescribe(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_DESCRIBE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfCheckStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByCheckStatus(Integer... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfCheckTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>check_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByCheckTime(LocalDateTime... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.CHECK_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfProviderNextCheckRoleSignId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.PROVIDER_NEXT_CHECK_ROLE_SIGN_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_id IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByProviderNextCheckRoleSignId(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.PROVIDER_NEXT_CHECK_ROLE_SIGN_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfProviderNextCheckRoleSignName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.PROVIDER_NEXT_CHECK_ROLE_SIGN_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchByProviderNextCheckRoleSignName(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.PROVIDER_NEXT_CHECK_ROLE_SIGN_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchRangeOfSign(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.SIGN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyCheckRecord> fetchBySign(String... values) {
|
||||
return fetch(FilesApplyCheckRecord.FILES_APPLY_CHECK_RECORD.SIGN, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,776 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApply;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class FilesApplyDao extends DAOImpl<FilesApplyRecord, jj.tech.paolu.repository.jooq.tables.pojos.FilesApply, String> {
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDao without any configuration
|
||||
*/
|
||||
public FilesApplyDao() {
|
||||
super(FilesApply.FILES_APPLY, jj.tech.paolu.repository.jooq.tables.pojos.FilesApply.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public FilesApplyDao(Configuration configuration) {
|
||||
super(FilesApply.FILES_APPLY, jj.tech.paolu.repository.jooq.tables.pojos.FilesApply.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.FilesApply object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchById(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.FilesApply fetchOneById(String value) {
|
||||
return fetchOne(FilesApply.FILES_APPLY.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchOptionalById(String value) {
|
||||
return fetchOptional(FilesApply.FILES_APPLY.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyUserId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyUserName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_phone BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyUserPhone(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_USER_PHONE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_phone IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyUserPhone(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_USER_PHONE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_email BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyUserEmail(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_USER_EMAIL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_user_email IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyUserEmail(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_USER_EMAIL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyOrgId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_org_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyOrgName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_user_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyInCheckUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_IN_CHECK_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_user_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyInCheckUserId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_IN_CHECK_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_user_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyInCheckUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_IN_CHECK_USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_user_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyInCheckUserName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_IN_CHECK_USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_org_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyInCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_IN_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyInCheckOrgId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_IN_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_org_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyInCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_IN_CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_in_check_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyInCheckOrgName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_IN_CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_next_check_org_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyNextCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_NEXT_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_next_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyNextCheckOrgId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_NEXT_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_next_check_org_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyNextCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_NEXT_CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_next_check_org_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyNextCheckOrgName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_NEXT_CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_user_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyEndCheckUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_END_CHECK_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_user_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyEndCheckUserId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_END_CHECK_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_user_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyEndCheckUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_END_CHECK_USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_user_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyEndCheckUserName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_END_CHECK_USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_org_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyEndCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_END_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyEndCheckOrgId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_END_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_org_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyEndCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_END_CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_end_check_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyEndCheckOrgName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_END_CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_days BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyDays(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_DAYS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_days IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyDays(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_DAYS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_feedback BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyFeedback(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_FEEDBACK, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_feedback IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyFeedback(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_FEEDBACK, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_reason BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyReason(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_REASON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_reason IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyReason(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_REASON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_cancel_reason BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyCancelReason(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_CANCEL_REASON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_cancel_reason IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyCancelReason(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_CANCEL_REASON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_print BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyViewTypePrint(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_VIEW_TYPE_PRINT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_print IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyViewTypePrint(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_VIEW_TYPE_PRINT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_online BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyViewTypeOnline(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_VIEW_TYPE_ONLINE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_online IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyViewTypeOnline(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_VIEW_TYPE_ONLINE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_file_num BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyFileNum(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_FILE_NUM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_file_num IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyFileNum(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_FILE_NUM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyTime(LocalDateTime... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_check_is_finish BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfApplyCheckIsFinish(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.APPLY_CHECK_IS_FINISH, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_check_is_finish IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByApplyCheckIsFinish(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.APPLY_CHECK_IS_FINISH, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderOrgId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_org_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderOrgName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_file_properties BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderFileProperties(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_FILE_PROPERTIES, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_file_properties IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderFileProperties(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_FILE_PROPERTIES, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_use_start_time BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderUseStartTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_USE_START_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_use_start_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderUseStartTime(LocalDateTime... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_USE_START_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_use_end_time BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderUseEndTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_USE_END_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_use_end_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderUseEndTime(LocalDateTime... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_USE_END_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_user_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderInCheckUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_user_id IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderInCheckUserId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_user_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderInCheckUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_user_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderInCheckUserName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_org_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderInCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderInCheckOrgId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_org_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderInCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_in_check_org_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderInCheckOrgName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_IN_CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderNextCheckRoleSignId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_NEXT_CHECK_ROLE_SIGN_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_id IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderNextCheckRoleSignId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_NEXT_CHECK_ROLE_SIGN_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderNextCheckRoleSignName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_NEXT_CHECK_ROLE_SIGN_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_next_check_role_sign_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderNextCheckRoleSignName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_NEXT_CHECK_ROLE_SIGN_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_user_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderEndCheckUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_user_id IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderEndCheckUserId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_user_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderEndCheckUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_user_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderEndCheckUserName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_org_id BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderEndCheckOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_org_id IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderEndCheckOrgId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_org_name BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderEndCheckOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_end_check_org_name IN
|
||||
* (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderEndCheckOrgName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_END_CHECK_ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_check_is_finish BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProviderCheckIsFinish(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROVIDER_CHECK_IS_FINISH, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>provider_check_is_finish IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProviderCheckIsFinish(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROVIDER_CHECK_IS_FINISH, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>secret_key BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfSecretKey(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.SECRET_KEY, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>secret_key IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchBySecretKey(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.SECRET_KEY, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByStatus(Integer... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProjectId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROJECT_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProjectId(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROJECT_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfProjectName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.PROJECT_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchByProjectName(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.PROJECT_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchRangeOfSign(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApply.FILES_APPLY.SIGN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApply> fetchBySign(String... values) {
|
||||
return fetch(FilesApply.FILES_APPLY.SIGN, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,404 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDirectoryDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDirectoryDocsRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class FilesApplyDirectoryDocsDao extends DAOImpl<FilesApplyDirectoryDocsRecord, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs, String> {
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDirectoryDocsDao without any configuration
|
||||
*/
|
||||
public FilesApplyDirectoryDocsDao() {
|
||||
super(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDirectoryDocsDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public FilesApplyDirectoryDocsDao(Configuration configuration) {
|
||||
super(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchById(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs fetchOneById(String value) {
|
||||
return fetchOne(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchOptionalById(String value) {
|
||||
return fetchOptional(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfFilesApplyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILES_APPLY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByFilesApplyId(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILES_APPLY_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>directory_file_id BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfDirectoryFileId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.DIRECTORY_FILE_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>directory_file_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByDirectoryFileId(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.DIRECTORY_FILE_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>directory_file_p_id BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfDirectoryFilePId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.DIRECTORY_FILE_P_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>directory_file_p_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByDirectoryFilePId(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.DIRECTORY_FILE_P_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesuper BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfFilesuper(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILESUPER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesuper IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByFilesuper(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILESUPER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filecount BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfFilecount(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILECOUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filecount IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByFilecount(Integer... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILECOUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>dutyperson BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfDutyperson(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.DUTYPERSON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>dutyperson IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByDutyperson(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.DUTYPERSON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfEweavedate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.EWEAVEDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByEweavedate(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.EWEAVEDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filepage BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfFilepage(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILEPAGE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filepage IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByFilepage(Integer... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILEPAGE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfSortorder(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.SORTORDER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchBySortorder(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.SORTORDER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>bpeg BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfBpeg(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.BPEG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>bpeg IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByBpeg(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.BPEG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>epeg BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfEpeg(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.EPEG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>epeg IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByEpeg(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.EPEG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filenum BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfFilenum(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILENUM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filenum IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByFilenum(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.FILENUM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>remark BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfRemark(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.REMARK, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>remark IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByRemark(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.REMARK, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>recordnum BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfRecordnum(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.RECORDNUM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>recordnum IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByRecordnum(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.RECORDNUM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>piecenumber BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfPiecenumber(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.PIECENUMBER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>piecenumber IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByPiecenumber(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.PIECENUMBER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfAdddate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ADDDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByAdddate(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ADDDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfEditdate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.EDITDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByEditdate(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.EDITDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfTimeStamp(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.TIME_STAMP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByTimeStamp(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.TIME_STAMP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfIsdel(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ISDEL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByIsdel(Integer... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.ISDEL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>catalogpdfurl BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfCatalogpdfurl(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.CATALOGPDFURL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>catalogpdfurl IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByCatalogpdfurl(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.CATALOGPDFURL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>signtag BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfSigntag(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.SIGNTAG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>signtag IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchBySigntag(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.SIGNTAG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>collecttag BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchRangeOfCollecttag(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.COLLECTTAG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>collecttag IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDirectoryDocs> fetchByCollecttag(String... values) {
|
||||
return fetch(FilesApplyDirectoryDocs.FILES_APPLY_DIRECTORY_DOCS.COLLECTTAG, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,374 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDocs;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDocsRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class FilesApplyDocsDao extends DAOImpl<FilesApplyDocsRecord, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs, String> {
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDocsDao without any configuration
|
||||
*/
|
||||
public FilesApplyDocsDao() {
|
||||
super(FilesApplyDocs.FILES_APPLY_DOCS, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDocsDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public FilesApplyDocsDao(Configuration configuration) {
|
||||
super(FilesApplyDocs.FILES_APPLY_DOCS, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchById(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs fetchOneById(String value) {
|
||||
return fetchOne(FilesApplyDocs.FILES_APPLY_DOCS.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchOptionalById(String value) {
|
||||
return fetchOptional(FilesApplyDocs.FILES_APPLY_DOCS.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfFilesApplyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.FILES_APPLY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByFilesApplyId(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.FILES_APPLY_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfSynFileId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.SYN_FILE_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchBySynFileId(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.SYN_FILE_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_p_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfSynFilePId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.SYN_FILE_P_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_p_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchBySynFilePId(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.SYN_FILE_P_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>tablenumber BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfTablenumber(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.TABLENUMBER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>tablenumber IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByTablenumber(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.TABLENUMBER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexname BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfAnnexname(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.ANNEXNAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexname IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByAnnexname(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.ANNEXNAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>projectname BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfProjectname(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.PROJECTNAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>projectname IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByProjectname(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.PROJECTNAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfEweavedate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.EWEAVEDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByEweavedate(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.EWEAVEDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>checkdate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfCheckdate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.CHECKDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>checkdate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByCheckdate(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.CHECKDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexpage BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfAnnexpage(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.ANNEXPAGE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexpage IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByAnnexpage(Integer... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.ANNEXPAGE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfSortorder(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.SORTORDER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchBySortorder(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.SORTORDER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filefrom BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfFilefrom(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.FILEFROM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filefrom IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByFilefrom(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.FILEFROM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>archivestag BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfArchivestag(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.ARCHIVESTAG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>archivestag IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByArchivestag(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.ARCHIVESTAG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfAdddate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.ADDDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByAdddate(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.ADDDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfEditdate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.EDITDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByEditdate(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.EDITDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfTimeStamp(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.TIME_STAMP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByTimeStamp(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.TIME_STAMP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfIsdel(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.ISDEL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByIsdel(Integer... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.ISDEL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downurl BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfDownurl(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.DOWNURL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downurl IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByDownurl(String... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.DOWNURL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesize BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfFilesize(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.FILESIZE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesize IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByFilesize(Integer... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.FILESIZE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_print BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfApplyViewTypePrint(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.APPLY_VIEW_TYPE_PRINT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_print IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByApplyViewTypePrint(Integer... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.APPLY_VIEW_TYPE_PRINT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_online BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchRangeOfApplyViewTypeOnline(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDocs.FILES_APPLY_DOCS.APPLY_VIEW_TYPE_ONLINE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>apply_view_type_online IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDocs> fetchByApplyViewTypeOnline(Integer... values) {
|
||||
return fetch(FilesApplyDocs.FILES_APPLY_DOCS.APPLY_VIEW_TYPE_ONLINE, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,225 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.FilesApplyDownloadRecord;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.FilesApplyDownloadRecordRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class FilesApplyDownloadRecordDao extends DAOImpl<FilesApplyDownloadRecordRecord, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord, String> {
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDownloadRecordDao without any configuration
|
||||
*/
|
||||
public FilesApplyDownloadRecordDao() {
|
||||
super(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new FilesApplyDownloadRecordDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public FilesApplyDownloadRecordDao(Configuration configuration) {
|
||||
super(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD, jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchById(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord fetchOneById(String value) {
|
||||
return fetchOne(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchOptionalById(String value) {
|
||||
return fetchOptional(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfFilesApplyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.FILES_APPLY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>files_apply_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchByFilesApplyId(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.FILES_APPLY_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_dir_file BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfIsDirFile(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.IS_DIR_FILE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_dir_file IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchByIsDirFile(Integer... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.IS_DIR_FILE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfSynFileId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.SYN_FILE_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchBySynFileId(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.SYN_FILE_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_p_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfSynFilePId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.SYN_FILE_P_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_p_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchBySynFilePId(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.SYN_FILE_P_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfSynFileName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.SYN_FILE_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_file_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchBySynFileName(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.SYN_FILE_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfUserId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.USER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchByUserId(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.USER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfUserName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.USER_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>user_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchByUserName(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.USER_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchByOrgId(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchByOrgName(String... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.ORG_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>download_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchRangeOfDownloadTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.DOWNLOAD_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>download_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.FilesApplyDownloadRecord> fetchByDownloadTime(LocalDateTime... values) {
|
||||
return fetch(FilesApplyDownloadRecord.FILES_APPLY_DOWNLOAD_RECORD.DOWNLOAD_TIME, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,119 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.Project;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ProjectRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class ProjectDao extends DAOImpl<ProjectRecord, jj.tech.paolu.repository.jooq.tables.pojos.Project, String> {
|
||||
|
||||
/**
|
||||
* Create a new ProjectDao without any configuration
|
||||
*/
|
||||
public ProjectDao() {
|
||||
super(Project.PROJECT, jj.tech.paolu.repository.jooq.tables.pojos.Project.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new ProjectDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public ProjectDao(Configuration configuration) {
|
||||
super(Project.PROJECT, jj.tech.paolu.repository.jooq.tables.pojos.Project.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.Project object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(Project.PROJECT.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchById(String... values) {
|
||||
return fetch(Project.PROJECT.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.Project fetchOneById(String value) {
|
||||
return fetchOne(Project.PROJECT.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchOptionalById(String value) {
|
||||
return fetchOptional(Project.PROJECT.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchRangeOfProjectName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(Project.PROJECT.PROJECT_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchByProjectName(String... values) {
|
||||
return fetch(Project.PROJECT.PROJECT_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchRangeOfOrgId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(Project.PROJECT.ORG_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchByOrgId(String... values) {
|
||||
return fetch(Project.PROJECT.ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchRangeOfOrgName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(Project.PROJECT.ORG_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.Project> fetchByOrgName(String... values) {
|
||||
return fetch(Project.PROJECT.ORG_NAME, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,255 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.ReadLog;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.ReadLogRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* 阅读情况
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class ReadLogDao extends DAOImpl<ReadLogRecord, jj.tech.paolu.repository.jooq.tables.pojos.ReadLog, String> {
|
||||
|
||||
/**
|
||||
* Create a new ReadLogDao without any configuration
|
||||
*/
|
||||
public ReadLogDao() {
|
||||
super(ReadLog.READ_LOG, jj.tech.paolu.repository.jooq.tables.pojos.ReadLog.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new ReadLogDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public ReadLogDao(Configuration configuration) {
|
||||
super(ReadLog.READ_LOG, jj.tech.paolu.repository.jooq.tables.pojos.ReadLog.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.ReadLog object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchById(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.ReadLog fetchOneById(String value) {
|
||||
return fetchOne(ReadLog.READ_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchOptionalById(String value) {
|
||||
return fetchOptional(ReadLog.READ_LOG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfWeid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.WEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>weid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByWeid(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.WEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfContentId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.CONTENT_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByContentId(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.CONTENT_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>starttime BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfStarttime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.STARTTIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>starttime IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByStarttime(LocalDateTime... values) {
|
||||
return fetch(ReadLog.READ_LOG.STARTTIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>endtime BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfEndtime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.ENDTIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>endtime IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByEndtime(LocalDateTime... values) {
|
||||
return fetch(ReadLog.READ_LOG.ENDTIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>ip BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfIp(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.IP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>ip IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByIp(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.IP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>location BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfLocation(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.LOCATION, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>location IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByLocation(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.LOCATION, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downloadtype BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfDownloadtype(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.DOWNLOADTYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downloadtype IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByDownloadtype(Integer... values) {
|
||||
return fetch(ReadLog.READ_LOG.DOWNLOADTYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfSign(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.SIGN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchBySign(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.SIGN, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>readid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfReadid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.READID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>readid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByReadid(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.READID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sm9hibeid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfSm9hibeid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.SM9HIBEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sm9hibeid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchBySm9hibeid(String... values) {
|
||||
return fetch(ReadLog.READ_LOG.SM9HIBEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfContentType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.CONTENT_TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>content_type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByContentType(Integer... values) {
|
||||
return fetch(ReadLog.READ_LOG.CONTENT_TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>ischeck BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchRangeOfIscheck(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(ReadLog.READ_LOG.ISCHECK, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>ischeck IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.ReadLog> fetchByIscheck(Integer... values) {
|
||||
return fetch(ReadLog.READ_LOG.ISCHECK, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,149 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedRuleConfig;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SharedRuleConfigRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SharedRuleConfigDao extends DAOImpl<SharedRuleConfigRecord, jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig, String> {
|
||||
|
||||
/**
|
||||
* Create a new SharedRuleConfigDao without any configuration
|
||||
*/
|
||||
public SharedRuleConfigDao() {
|
||||
super(SharedRuleConfig.SHARED_RULE_CONFIG, jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SharedRuleConfigDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SharedRuleConfigDao(Configuration configuration) {
|
||||
super(SharedRuleConfig.SHARED_RULE_CONFIG, jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedRuleConfig.SHARED_RULE_CONFIG.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchById(String... values) {
|
||||
return fetch(SharedRuleConfig.SHARED_RULE_CONFIG.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig fetchOneById(String value) {
|
||||
return fetchOne(SharedRuleConfig.SHARED_RULE_CONFIG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchOptionalById(String value) {
|
||||
return fetchOptional(SharedRuleConfig.SHARED_RULE_CONFIG.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchRangeOfName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedRuleConfig.SHARED_RULE_CONFIG.NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchByName(String... values) {
|
||||
return fetch(SharedRuleConfig.SHARED_RULE_CONFIG.NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>describe BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchRangeOfDescribe(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedRuleConfig.SHARED_RULE_CONFIG.DESCRIBE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>describe IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchByDescribe(String... values) {
|
||||
return fetch(SharedRuleConfig.SHARED_RULE_CONFIG.DESCRIBE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchRangeOfStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SharedRuleConfig.SHARED_RULE_CONFIG.STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchByStatus(Integer... values) {
|
||||
return fetch(SharedRuleConfig.SHARED_RULE_CONFIG.STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchRangeOfSort(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SharedRuleConfig.SHARED_RULE_CONFIG.SORT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchBySort(Integer... values) {
|
||||
return fetch(SharedRuleConfig.SHARED_RULE_CONFIG.SORT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchRangeOfProjectName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedRuleConfig.SHARED_RULE_CONFIG.PROJECT_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>project_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedRuleConfig> fetchByProjectName(String... values) {
|
||||
return fetch(SharedRuleConfig.SHARED_RULE_CONFIG.PROJECT_NAME, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,208 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SharedSynAll;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SharedSynAllRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SharedSynAllDao extends DAOImpl<SharedSynAllRecord, jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll, String> {
|
||||
|
||||
/**
|
||||
* Create a new SharedSynAllDao without any configuration
|
||||
*/
|
||||
public SharedSynAllDao() {
|
||||
super(SharedSynAll.SHARED_SYN_ALL, jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SharedSynAllDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SharedSynAllDao(Configuration configuration) {
|
||||
super(SharedSynAll.SHARED_SYN_ALL, jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchById(String... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll fetchOneById(String value) {
|
||||
return fetchOne(SharedSynAll.SHARED_SYN_ALL.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchOptionalById(String value) {
|
||||
return fetchOptional(SharedSynAll.SHARED_SYN_ALL.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfSynId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.SYN_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchBySynId(String... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.SYN_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>syn_id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll fetchOneBySynId(String value) {
|
||||
return fetchOne(SharedSynAll.SHARED_SYN_ALL.SYN_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>syn_id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchOptionalBySynId(String value) {
|
||||
return fetchOptional(SharedSynAll.SHARED_SYN_ALL.SYN_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfSynType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.SYN_TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchBySynType(Integer... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.SYN_TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_config_rule BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfIsConfigRule(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.IS_CONFIG_RULE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_config_rule IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchByIsConfigRule(Integer... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.IS_CONFIG_RULE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>shared_status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfSharedStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.SHARED_STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>shared_status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchBySharedStatus(Integer... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.SHARED_STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfSynStatus(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.SYN_STATUS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>syn_status IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchBySynStatus(Integer... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.SYN_STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>block_number BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfBlockNumber(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.BLOCK_NUMBER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>block_number IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchByBlockNumber(String... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.BLOCK_NUMBER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>block_hash BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfBlockHash(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.BLOCK_HASH, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>block_hash IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchByBlockHash(String... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.BLOCK_HASH, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>block_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchRangeOfBlockTime(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SharedSynAll.SHARED_SYN_ALL.BLOCK_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>block_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SharedSynAll> fetchByBlockTime(String... values) {
|
||||
return fetch(SharedSynAll.SHARED_SYN_ALL.BLOCK_TIME, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,179 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectory;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynDirectoryRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SynDirectoryDao extends DAOImpl<SynDirectoryRecord, jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory, String> {
|
||||
|
||||
/**
|
||||
* Create a new SynDirectoryDao without any configuration
|
||||
*/
|
||||
public SynDirectoryDao() {
|
||||
super(SynDirectory.SYN_DIRECTORY, jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SynDirectoryDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SynDirectoryDao(Configuration configuration) {
|
||||
super(SynDirectory.SYN_DIRECTORY, jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchById(String... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory fetchOneById(String value) {
|
||||
return fetchOne(SynDirectory.SYN_DIRECTORY.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchOptionalById(String value) {
|
||||
return fetchOptional(SynDirectory.SYN_DIRECTORY.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>p_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfPId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.P_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>p_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchByPId(String... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.P_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>wbs_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfWbsId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.WBS_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>wbs_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchByWbsId(String... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.WBS_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfTimeStamp(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.TIME_STAMP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchByTimeStamp(String... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.TIME_STAMP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfSortorder(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.SORTORDER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchBySortorder(Integer... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.SORTORDER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>tname BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfTname(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.TNAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>tname IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchByTname(String... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.TNAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>subjoin BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfSubjoin(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.SUBJOIN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>subjoin IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchBySubjoin(Integer... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.SUBJOIN, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchRangeOfIsdel(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynDirectory.SYN_DIRECTORY.ISDEL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectory> fetchByIsdel(Integer... values) {
|
||||
return fetch(SynDirectory.SYN_DIRECTORY.ISDEL, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,374 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SynDirectoryFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynDirectoryFileRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SynDirectoryFileDao extends DAOImpl<SynDirectoryFileRecord, jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile, String> {
|
||||
|
||||
/**
|
||||
* Create a new SynDirectoryFileDao without any configuration
|
||||
*/
|
||||
public SynDirectoryFileDao() {
|
||||
super(SynDirectoryFile.SYN_DIRECTORY_FILE, jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SynDirectoryFileDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SynDirectoryFileDao(Configuration configuration) {
|
||||
super(SynDirectoryFile.SYN_DIRECTORY_FILE, jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchById(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile fetchOneById(String value) {
|
||||
return fetchOne(SynDirectoryFile.SYN_DIRECTORY_FILE.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchOptionalById(String value) {
|
||||
return fetchOptional(SynDirectoryFile.SYN_DIRECTORY_FILE.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>p_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfPId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.P_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>p_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByPId(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.P_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesuper BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfFilesuper(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.FILESUPER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesuper IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByFilesuper(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.FILESUPER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filecount BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfFilecount(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.FILECOUNT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filecount IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByFilecount(Integer... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.FILECOUNT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>dutyperson BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfDutyperson(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.DUTYPERSON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>dutyperson IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByDutyperson(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.DUTYPERSON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfEweavedate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.EWEAVEDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByEweavedate(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.EWEAVEDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filepage BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfFilepage(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.FILEPAGE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filepage IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByFilepage(Integer... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.FILEPAGE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfSortorder(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.SORTORDER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchBySortorder(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.SORTORDER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>bpeg BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfBpeg(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.BPEG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>bpeg IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByBpeg(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.BPEG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>epeg BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfEpeg(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.EPEG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>epeg IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByEpeg(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.EPEG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filenum BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfFilenum(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.FILENUM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filenum IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByFilenum(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.FILENUM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>remark BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfRemark(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.REMARK, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>remark IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByRemark(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.REMARK, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>recordnum BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfRecordnum(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.RECORDNUM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>recordnum IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByRecordnum(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.RECORDNUM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>piecenumber BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfPiecenumber(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.PIECENUMBER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>piecenumber IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByPiecenumber(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.PIECENUMBER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfAdddate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.ADDDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByAdddate(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.ADDDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfEditdate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.EDITDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByEditdate(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.EDITDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfTimeStamp(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.TIME_STAMP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByTimeStamp(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.TIME_STAMP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfIsdel(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.ISDEL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByIsdel(Integer... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.ISDEL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>catalogpdfurl BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfCatalogpdfurl(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.CATALOGPDFURL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>catalogpdfurl IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByCatalogpdfurl(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.CATALOGPDFURL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>signtag BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfSigntag(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.SIGNTAG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>signtag IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchBySigntag(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.SIGNTAG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>collecttag BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchRangeOfCollecttag(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynDirectoryFile.SYN_DIRECTORY_FILE.COLLECTTAG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>collecttag IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynDirectoryFile> fetchByCollecttag(String... values) {
|
||||
return fetch(SynDirectoryFile.SYN_DIRECTORY_FILE.COLLECTTAG, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,314 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SynFile;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SynFileRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SynFileDao extends DAOImpl<SynFileRecord, jj.tech.paolu.repository.jooq.tables.pojos.SynFile, String> {
|
||||
|
||||
/**
|
||||
* Create a new SynFileDao without any configuration
|
||||
*/
|
||||
public SynFileDao() {
|
||||
super(SynFile.SYN_FILE, jj.tech.paolu.repository.jooq.tables.pojos.SynFile.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SynFileDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SynFileDao(Configuration configuration) {
|
||||
super(SynFile.SYN_FILE, jj.tech.paolu.repository.jooq.tables.pojos.SynFile.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SynFile object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchById(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SynFile fetchOneById(String value) {
|
||||
return fetchOne(SynFile.SYN_FILE.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchOptionalById(String value) {
|
||||
return fetchOptional(SynFile.SYN_FILE.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>p_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfPId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.P_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>p_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByPId(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.P_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>tablenumber BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfTablenumber(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.TABLENUMBER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>tablenumber IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByTablenumber(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.TABLENUMBER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexname BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfAnnexname(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.ANNEXNAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexname IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByAnnexname(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.ANNEXNAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>projectname BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfProjectname(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.PROJECTNAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>projectname IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByProjectname(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.PROJECTNAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfEweavedate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.EWEAVEDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>eweavedate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByEweavedate(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.EWEAVEDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>checkdate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfCheckdate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.CHECKDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>checkdate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByCheckdate(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.CHECKDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexpage BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfAnnexpage(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.ANNEXPAGE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>annexpage IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByAnnexpage(Integer... values) {
|
||||
return fetch(SynFile.SYN_FILE.ANNEXPAGE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfSortorder(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.SORTORDER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sortorder IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchBySortorder(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.SORTORDER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filefrom BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfFilefrom(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.FILEFROM, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filefrom IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByFilefrom(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.FILEFROM, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>archivestag BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfArchivestag(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.ARCHIVESTAG, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>archivestag IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByArchivestag(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.ARCHIVESTAG, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfAdddate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.ADDDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adddate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByAdddate(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.ADDDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfEditdate(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.EDITDATE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>editdate IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByEditdate(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.EDITDATE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfTimeStamp(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.TIME_STAMP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>time_stamp IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByTimeStamp(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.TIME_STAMP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfIsdel(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.ISDEL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>isdel IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByIsdel(Integer... values) {
|
||||
return fetch(SynFile.SYN_FILE.ISDEL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downurl BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfDownurl(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.DOWNURL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>downurl IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByDownurl(String... values) {
|
||||
return fetch(SynFile.SYN_FILE.DOWNURL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesize BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchRangeOfFilesize(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SynFile.SYN_FILE.FILESIZE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>filesize IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SynFile> fetchByFilesize(Integer... values) {
|
||||
return fetch(SynFile.SYN_FILE.FILESIZE, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -87,6 +87,21 @@ public class SysAdminDao extends DAOImpl<SysAdminRecord, jj.tech.paolu.repositor
|
|||
return fetch(SysAdmin.SYS_ADMIN.ORG_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByType(Integer... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>realname BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
|
|
@ -146,66 +161,6 @@ public class SysAdminDao extends DAOImpl<SysAdminRecord, jj.tech.paolu.repositor
|
|||
return fetch(SysAdmin.SYS_ADMIN.PASSWORD, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>phone BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfPhone(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.PHONE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>phone IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByPhone(String... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.PHONE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>email BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfEmail(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.EMAIL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>email IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByEmail(String... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.EMAIL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>job BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfJob(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.JOB, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>job IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByJob(String... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.JOB, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>gender BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfGender(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.GENDER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>gender IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByGender(Integer... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.GENDER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>islock BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
|
|
@ -220,64 +175,4 @@ public class SysAdminDao extends DAOImpl<SysAdminRecord, jj.tech.paolu.repositor
|
|||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByIslock(Integer... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.ISLOCK, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfType(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.TYPE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>type IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByType(Integer... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfSort(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.SORT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchBySort(Integer... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.SORT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cer_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfCerId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.CER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cer_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByCerId(String... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.CER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchRangeOfCompanyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdmin.SYS_ADMIN.COMPANY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdmin> fetchByCompanyId(String... values) {
|
||||
return fetch(SysAdmin.SYS_ADMIN.COMPANY_ID, values);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,104 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminMenuRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SysAdminMenuDao extends DAOImpl<SysAdminMenuRecord, jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu, String> {
|
||||
|
||||
/**
|
||||
* Create a new SysAdminMenuDao without any configuration
|
||||
*/
|
||||
public SysAdminMenuDao() {
|
||||
super(SysAdminMenu.SYS_ADMIN_MENU, jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SysAdminMenuDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SysAdminMenuDao(Configuration configuration) {
|
||||
super(SysAdminMenu.SYS_ADMIN_MENU, jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminMenu.SYS_ADMIN_MENU.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu> fetchById(String... values) {
|
||||
return fetch(SysAdminMenu.SYS_ADMIN_MENU.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu fetchOneById(String value) {
|
||||
return fetchOne(SysAdminMenu.SYS_ADMIN_MENU.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu> fetchOptionalById(String value) {
|
||||
return fetchOptional(SysAdminMenu.SYS_ADMIN_MENU.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adminid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu> fetchRangeOfAdminid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminMenu.SYS_ADMIN_MENU.ADMINID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adminid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu> fetchByAdminid(String... values) {
|
||||
return fetch(SysAdminMenu.SYS_ADMIN_MENU.ADMINID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>memuid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu> fetchRangeOfMemuid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminMenu.SYS_ADMIN_MENU.MEMUID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>memuid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminMenu> fetchByMemuid(String... values) {
|
||||
return fetch(SysAdminMenu.SYS_ADMIN_MENU.MEMUID, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -73,32 +73,32 @@ public class SysAdminRoleDao extends DAOImpl<SysAdminRoleRecord, jj.tech.paolu.r
|
|||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adminid BETWEEN lowerInclusive AND
|
||||
* Fetch records that have <code>admin_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchRangeOfAdminid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminRole.SYS_ADMIN_ROLE.ADMINID, lowerInclusive, upperInclusive);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchRangeOfAdminId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminRole.SYS_ADMIN_ROLE.ADMIN_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>adminid IN (values)</code>
|
||||
* Fetch records that have <code>admin_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchByAdminid(String... values) {
|
||||
return fetch(SysAdminRole.SYS_ADMIN_ROLE.ADMINID, values);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchByAdminId(String... values) {
|
||||
return fetch(SysAdminRole.SYS_ADMIN_ROLE.ADMIN_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>roleid BETWEEN lowerInclusive AND
|
||||
* Fetch records that have <code>role_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchRangeOfRoleid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminRole.SYS_ADMIN_ROLE.ROLEID, lowerInclusive, upperInclusive);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchRangeOfRoleId(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysAdminRole.SYS_ADMIN_ROLE.ROLE_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>roleid IN (values)</code>
|
||||
* Fetch records that have <code>role_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchByRoleid(String... values) {
|
||||
return fetch(SysAdminRole.SYS_ADMIN_ROLE.ROLEID, values);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminRole> fetchByRoleId(Integer... values) {
|
||||
return fetch(SysAdminRole.SYS_ADMIN_ROLE.ROLE_ID, values);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,179 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysAdminWeid;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAdminWeidRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SysAdminWeidDao extends DAOImpl<SysAdminWeidRecord, jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid, String> {
|
||||
|
||||
/**
|
||||
* Create a new SysAdminWeidDao without any configuration
|
||||
*/
|
||||
public SysAdminWeidDao() {
|
||||
super(SysAdminWeid.SYS_ADMIN_WEID, jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SysAdminWeidDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SysAdminWeidDao(Configuration configuration) {
|
||||
super(SysAdminWeid.SYS_ADMIN_WEID, jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminWeid.SYS_ADMIN_WEID.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchById(String... values) {
|
||||
return fetch(SysAdminWeid.SYS_ADMIN_WEID.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid fetchOneById(String value) {
|
||||
return fetchOne(SysAdminWeid.SYS_ADMIN_WEID.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchOptionalById(String value) {
|
||||
return fetchOptional(SysAdminWeid.SYS_ADMIN_WEID.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>admin_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchRangeOfAdminId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminWeid.SYS_ADMIN_WEID.ADMIN_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>admin_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchByAdminId(String... values) {
|
||||
return fetch(SysAdminWeid.SYS_ADMIN_WEID.ADMIN_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>admin_id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid fetchOneByAdminId(String value) {
|
||||
return fetchOne(SysAdminWeid.SYS_ADMIN_WEID.ADMIN_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>admin_id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchOptionalByAdminId(String value) {
|
||||
return fetchOptional(SysAdminWeid.SYS_ADMIN_WEID.ADMIN_ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>wid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchRangeOfWid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminWeid.SYS_ADMIN_WEID.WID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>wid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchByWid(String... values) {
|
||||
return fetch(SysAdminWeid.SYS_ADMIN_WEID.WID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>wprivate_key BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchRangeOfWprivateKey(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminWeid.SYS_ADMIN_WEID.WPRIVATE_KEY, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>wprivate_key IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchByWprivateKey(String... values) {
|
||||
return fetch(SysAdminWeid.SYS_ADMIN_WEID.WPRIVATE_KEY, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>add_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchRangeOfAddTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(SysAdminWeid.SYS_ADMIN_WEID.ADD_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>add_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchByAddTime(LocalDateTime... values) {
|
||||
return fetch(SysAdminWeid.SYS_ADMIN_WEID.ADD_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_hash BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchRangeOfCertificateHash(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminWeid.SYS_ADMIN_WEID.CERTIFICATE_HASH, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>certificate_hash IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchByCertificateHash(String... values) {
|
||||
return fetch(SysAdminWeid.SYS_ADMIN_WEID.CERTIFICATE_HASH, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>chain_block BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchRangeOfChainBlock(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysAdminWeid.SYS_ADMIN_WEID.CHAIN_BLOCK, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>chain_block IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysAdminWeid> fetchByChainBlock(String... values) {
|
||||
return fetch(SysAdminWeid.SYS_ADMIN_WEID.CHAIN_BLOCK, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,164 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysArea;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysAreaRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SysAreaDao extends DAOImpl<SysAreaRecord, jj.tech.paolu.repository.jooq.tables.pojos.SysArea, String> {
|
||||
|
||||
/**
|
||||
* Create a new SysAreaDao without any configuration
|
||||
*/
|
||||
public SysAreaDao() {
|
||||
super(SysArea.SYS_AREA, jj.tech.paolu.repository.jooq.tables.pojos.SysArea.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SysAreaDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SysAreaDao(Configuration configuration) {
|
||||
super(SysArea.SYS_AREA, jj.tech.paolu.repository.jooq.tables.pojos.SysArea.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SysArea object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysArea.SYS_AREA.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchById(String... values) {
|
||||
return fetch(SysArea.SYS_AREA.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysArea fetchOneById(String value) {
|
||||
return fetchOne(SysArea.SYS_AREA.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchOptionalById(String value) {
|
||||
return fetchOptional(SysArea.SYS_AREA.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>level_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchRangeOfLevelCode(Short lowerInclusive, Short upperInclusive) {
|
||||
return fetchRange(SysArea.SYS_AREA.LEVEL_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>level_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchByLevelCode(Short... values) {
|
||||
return fetch(SysArea.SYS_AREA.LEVEL_CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>parent_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchRangeOfParentCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysArea.SYS_AREA.PARENT_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>parent_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchByParentCode(String... values) {
|
||||
return fetch(SysArea.SYS_AREA.PARENT_CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>area_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchRangeOfAreaCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysArea.SYS_AREA.AREA_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>area_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchByAreaCode(String... values) {
|
||||
return fetch(SysArea.SYS_AREA.AREA_CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchRangeOfName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysArea.SYS_AREA.NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchByName(String... values) {
|
||||
return fetch(SysArea.SYS_AREA.NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>pid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchRangeOfPid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysArea.SYS_AREA.PID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>pid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchByPid(String... values) {
|
||||
return fetch(SysArea.SYS_AREA.PID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>pids BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchRangeOfPids(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysArea.SYS_AREA.PIDS, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>pids IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysArea> fetchByPids(String... values) {
|
||||
return fetch(SysArea.SYS_AREA.PIDS, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -89,32 +89,32 @@ public class SysConfigDao extends DAOImpl<SysConfigRecord, jj.tech.paolu.reposit
|
|||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>keys BETWEEN lowerInclusive AND
|
||||
* Fetch records that have <code>k BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysConfig> fetchRangeOfKeys(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysConfig.SYS_CONFIG.KEYS, lowerInclusive, upperInclusive);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysConfig> fetchRangeOfK(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysConfig.SYS_CONFIG.K, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>keys IN (values)</code>
|
||||
* Fetch records that have <code>k IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysConfig> fetchByKeys(String... values) {
|
||||
return fetch(SysConfig.SYS_CONFIG.KEYS, values);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysConfig> fetchByK(String... values) {
|
||||
return fetch(SysConfig.SYS_CONFIG.K, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>keys = value</code>
|
||||
* Fetch a unique record that has <code>k = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysConfig fetchOneByKeys(String value) {
|
||||
return fetchOne(SysConfig.SYS_CONFIG.KEYS, value);
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysConfig fetchOneByK(String value) {
|
||||
return fetchOne(SysConfig.SYS_CONFIG.K, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>keys = value</code>
|
||||
* Fetch a unique record that has <code>k = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysConfig> fetchOptionalByKeys(String value) {
|
||||
return fetchOptional(SysConfig.SYS_CONFIG.KEYS, value);
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysConfig> fetchOptionalByK(String value) {
|
||||
return fetchOptional(SysConfig.SYS_CONFIG.K, value);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -206,19 +206,4 @@ public class SysMenuDao extends DAOImpl<SysMenuRecord, jj.tech.paolu.repository.
|
|||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysMenu> fetchBySort(Integer... values) {
|
||||
return fetch(SysMenu.SYS_MENU.SORT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>parentpath BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysMenu> fetchRangeOfParentpath(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysMenu.SYS_MENU.PARENTPATH, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>parentpath IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysMenu> fetchByParentpath(String... values) {
|
||||
return fetch(SysMenu.SYS_MENU.PARENTPATH, values);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@
|
|||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
|
|
@ -88,96 +87,6 @@ public class SysOrgDao extends DAOImpl<SysOrgRecord, jj.tech.paolu.repository.jo
|
|||
return fetch(SysOrg.SYS_ORG.PID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>chinese_simple_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfChineseSimpleName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CHINESE_SIMPLE_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>chinese_simple_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByChineseSimpleName(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CHINESE_SIMPLE_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>english_simple_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfEnglishSimpleName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.ENGLISH_SIMPLE_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>english_simple_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByEnglishSimpleName(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.ENGLISH_SIMPLE_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>chinese_full_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfChineseFullName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CHINESE_FULL_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>chinese_full_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByChineseFullName(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CHINESE_FULL_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>english_full_name BETWEEN lowerInclusive
|
||||
* AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfEnglishFullName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.ENGLISH_FULL_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>english_full_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByEnglishFullName(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.ENGLISH_FULL_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByCode(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfSort(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.SORT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchBySort(Integer... values) {
|
||||
return fetch(SysOrg.SYS_ORG.SORT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>status BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
|
|
@ -193,261 +102,6 @@ public class SysOrgDao extends DAOImpl<SysOrgRecord, jj.tech.paolu.repository.jo
|
|||
return fetch(SysOrg.SYS_ORG.STATUS, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_company_department BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfIsCompanyDepartment(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.IS_COMPANY_DEPARTMENT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_company_department IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByIsCompanyDepartment(Integer... values) {
|
||||
return fetch(SysOrg.SYS_ORG.IS_COMPANY_DEPARTMENT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>enterprise_legal_person BETWEEN
|
||||
* lowerInclusive AND upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfEnterpriseLegalPerson(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.ENTERPRISE_LEGAL_PERSON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>enterprise_legal_person IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByEnterpriseLegalPerson(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.ENTERPRISE_LEGAL_PERSON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>contact_person BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfContactPerson(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CONTACT_PERSON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>contact_person IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByContactPerson(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CONTACT_PERSON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>contact_phone BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfContactPhone(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CONTACT_PHONE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>contact_phone IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByContactPhone(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CONTACT_PHONE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>remark BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfRemark(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.REMARK, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>remark IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByRemark(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.REMARK, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>create_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfCreateTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CREATE_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>create_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByCreateTime(LocalDateTime... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CREATE_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>create_user BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfCreateUser(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CREATE_USER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>create_user IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByCreateUser(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CREATE_USER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_time BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfUpdateTime(LocalDateTime lowerInclusive, LocalDateTime upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.UPDATE_TIME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_time IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByUpdateTime(LocalDateTime... values) {
|
||||
return fetch(SysOrg.SYS_ORG.UPDATE_TIME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_user BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfUpdateUser(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.UPDATE_USER, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>update_user IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByUpdateUser(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.UPDATE_USER, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByName(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>industry_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfIndustryName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.INDUSTRY_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>industry_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByIndustryName(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.INDUSTRY_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>industry_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfIndustryCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.INDUSTRY_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>industry_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByIndustryCode(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.INDUSTRY_CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>province_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfProvinceCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.PROVINCE_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>province_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByProvinceCode(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.PROVINCE_CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>city_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfCityCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CITY_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>city_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByCityCode(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CITY_CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>area_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfAreaCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.AREA_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>area_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByAreaCode(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.AREA_CODE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>addr BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfAddr(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.ADDR, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>addr IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByAddr(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.ADDR, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>uscc BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfUscc(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.USCC, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>uscc IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByUscc(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.USCC, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>org_type BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
|
|
@ -462,49 +116,4 @@ public class SysOrgDao extends DAOImpl<SysOrgRecord, jj.tech.paolu.repository.jo
|
|||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByOrgType(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.ORG_TYPE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_archives_dep BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfIsArchivesDep(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.IS_ARCHIVES_DEP, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_archives_dep IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByIsArchivesDep(Integer... values) {
|
||||
return fetch(SysOrg.SYS_ORG.IS_ARCHIVES_DEP, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cer_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfCerId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.CER_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>cer_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByCerId(String... values) {
|
||||
return fetch(SysOrg.SYS_ORG.CER_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_forbidden BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchRangeOfIsForbidden(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysOrg.SYS_ORG.IS_FORBIDDEN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_forbidden IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysOrg> fetchByIsForbidden(Integer... values) {
|
||||
return fetch(SysOrg.SYS_ORG.IS_FORBIDDEN, values);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,194 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysResourceRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SysResourceDao extends DAOImpl<SysResourceRecord, jj.tech.paolu.repository.jooq.tables.pojos.SysResource, String> {
|
||||
|
||||
/**
|
||||
* Create a new SysResourceDao without any configuration
|
||||
*/
|
||||
public SysResourceDao() {
|
||||
super(SysResource.SYS_RESOURCE, jj.tech.paolu.repository.jooq.tables.pojos.SysResource.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SysResourceDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SysResourceDao(Configuration configuration) {
|
||||
super(SysResource.SYS_RESOURCE, jj.tech.paolu.repository.jooq.tables.pojos.SysResource.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SysResource object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchById(String... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysResource fetchOneById(String value) {
|
||||
return fetchOne(SysResource.SYS_RESOURCE.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchOptionalById(String value) {
|
||||
return fetchOptional(SysResource.SYS_RESOURCE.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>parent_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfParentId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.PARENT_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>parent_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByParentId(String... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.PARENT_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>level BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfLevel(Short lowerInclusive, Short upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.LEVEL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>level IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByLevel(Short... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.LEVEL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByName(String... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>types BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfTypes(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.TYPES, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>types IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByTypes(String... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.TYPES, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>url BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfUrl(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.URL, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>url IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByUrl(String... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.URL, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>icon BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfIcon(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.ICON, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>icon IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByIcon(String... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.ICON, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>ishide BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfIshide(Byte lowerInclusive, Byte upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.ISHIDE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>ishide IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByIshide(Byte... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.ISHIDE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>description BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchRangeOfDescription(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysResource.SYS_RESOURCE.DESCRIPTION, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>description IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysResource> fetchByDescription(String... values) {
|
||||
return fetch(SysResource.SYS_RESOURCE.DESCRIPTION, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -88,107 +88,17 @@ public class SysRoleDao extends DAOImpl<SysRoleRecord, jj.tech.paolu.repository.
|
|||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>describe BETWEEN lowerInclusive AND
|
||||
* Fetch records that have <code>department BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfDescribe(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.DESCRIBE, lowerInclusive, upperInclusive);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfDepartment(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.DEPARTMENT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>describe IN (values)</code>
|
||||
* Fetch records that have <code>department IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchByDescribe(String... values) {
|
||||
return fetch(SysRole.SYS_ROLE.DESCRIBE, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfSort(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.SORT, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sort IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchBySort(Integer... values) {
|
||||
return fetch(SysRole.SYS_ROLE.SORT, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_open BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfIsOpen(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.IS_OPEN, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>is_open IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchByIsOpen(Integer... values) {
|
||||
return fetch(SysRole.SYS_ROLE.IS_OPEN, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfSignName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.SIGN_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchBySignName(String... values) {
|
||||
return fetch(SysRole.SYS_ROLE.SIGN_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfSignId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.SIGN_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchBySignId(String... values) {
|
||||
return fetch(SysRole.SYS_ROLE.SIGN_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfCompanyId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.COMPANY_ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchByCompanyId(String... values) {
|
||||
return fetch(SysRole.SYS_ROLE.COMPANY_ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchRangeOfCompanyName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRole.SYS_ROLE.COMPANY_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>company_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchByCompanyName(String... values) {
|
||||
return fetch(SysRole.SYS_ROLE.COMPANY_NAME, values);
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRole> fetchByDepartment(String... values) {
|
||||
return fetch(SysRole.SYS_ROLE.DEPARTMENT, values);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,104 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleMenu;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleMenuRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SysRoleMenuDao extends DAOImpl<SysRoleMenuRecord, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu, String> {
|
||||
|
||||
/**
|
||||
* Create a new SysRoleMenuDao without any configuration
|
||||
*/
|
||||
public SysRoleMenuDao() {
|
||||
super(SysRoleMenu.SYS_ROLE_MENU, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SysRoleMenuDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SysRoleMenuDao(Configuration configuration) {
|
||||
super(SysRoleMenu.SYS_ROLE_MENU, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleMenu.SYS_ROLE_MENU.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu> fetchById(String... values) {
|
||||
return fetch(SysRoleMenu.SYS_ROLE_MENU.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu fetchOneById(String value) {
|
||||
return fetchOne(SysRoleMenu.SYS_ROLE_MENU.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu> fetchOptionalById(String value) {
|
||||
return fetchOptional(SysRoleMenu.SYS_ROLE_MENU.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>roleid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu> fetchRangeOfRoleid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleMenu.SYS_ROLE_MENU.ROLEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>roleid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu> fetchByRoleid(String... values) {
|
||||
return fetch(SysRoleMenu.SYS_ROLE_MENU.ROLEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>menuid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu> fetchRangeOfMenuid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleMenu.SYS_ROLE_MENU.MENUID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>menuid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleMenu> fetchByMenuid(String... values) {
|
||||
return fetch(SysRoleMenu.SYS_ROLE_MENU.MENUID, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,90 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleResource;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleResourceRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.Record2;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SysRoleResourceDao extends DAOImpl<SysRoleResourceRecord, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource, Record2<String, String>> {
|
||||
|
||||
/**
|
||||
* Create a new SysRoleResourceDao without any configuration
|
||||
*/
|
||||
public SysRoleResourceDao() {
|
||||
super(SysRoleResource.SYS_ROLE_RESOURCE, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SysRoleResourceDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SysRoleResourceDao(Configuration configuration) {
|
||||
super(SysRoleResource.SYS_ROLE_RESOURCE, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Record2<String, String> getId(jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource object) {
|
||||
return compositeKeyRecord(object.getRoleid(), object.getResid());
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleResource.SYS_ROLE_RESOURCE.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource> fetchById(String... values) {
|
||||
return fetch(SysRoleResource.SYS_ROLE_RESOURCE.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>roleid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource> fetchRangeOfRoleid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleResource.SYS_ROLE_RESOURCE.ROLEID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>roleid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource> fetchByRoleid(String... values) {
|
||||
return fetch(SysRoleResource.SYS_ROLE_RESOURCE.ROLEID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>resid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource> fetchRangeOfResid(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleResource.SYS_ROLE_RESOURCE.RESID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>resid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleResource> fetchByResid(String... values) {
|
||||
return fetch(SysRoleResource.SYS_ROLE_RESOURCE.RESID, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,104 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.daos;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Optional;
|
||||
|
||||
import jj.tech.paolu.repository.jooq.tables.SysRoleSign;
|
||||
import jj.tech.paolu.repository.jooq.tables.records.SysRoleSignRecord;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.impl.DAOImpl;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
@Repository
|
||||
public class SysRoleSignDao extends DAOImpl<SysRoleSignRecord, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign, String> {
|
||||
|
||||
/**
|
||||
* Create a new SysRoleSignDao without any configuration
|
||||
*/
|
||||
public SysRoleSignDao() {
|
||||
super(SysRoleSign.SYS_ROLE_SIGN, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new SysRoleSignDao with an attached configuration
|
||||
*/
|
||||
@Autowired
|
||||
public SysRoleSignDao(Configuration configuration) {
|
||||
super(SysRoleSign.SYS_ROLE_SIGN, jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign.class, configuration);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getId(jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign object) {
|
||||
return object.getId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign> fetchRangeOfId(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleSign.SYS_ROLE_SIGN.ID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>id IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign> fetchById(String... values) {
|
||||
return fetch(SysRoleSign.SYS_ROLE_SIGN.ID, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign fetchOneById(String value) {
|
||||
return fetchOne(SysRoleSign.SYS_ROLE_SIGN.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch a unique record that has <code>id = value</code>
|
||||
*/
|
||||
public Optional<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign> fetchOptionalById(String value) {
|
||||
return fetchOptional(SysRoleSign.SYS_ROLE_SIGN.ID, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_name BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign> fetchRangeOfSignName(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleSign.SYS_ROLE_SIGN.SIGN_NAME, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_name IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign> fetchBySignName(String... values) {
|
||||
return fetch(SysRoleSign.SYS_ROLE_SIGN.SIGN_NAME, values);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_code BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign> fetchRangeOfSignCode(String lowerInclusive, String upperInclusive) {
|
||||
return fetchRange(SysRoleSign.SYS_ROLE_SIGN.SIGN_CODE, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>sign_code IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysRoleSign> fetchBySignCode(String... values) {
|
||||
return fetch(SysRoleSign.SYS_ROLE_SIGN.SIGN_CODE, values);
|
||||
}
|
||||
}
|
||||
|
|
@ -76,14 +76,14 @@ public class SysUrlsDao extends DAOImpl<SysUrlsRecord, jj.tech.paolu.repository.
|
|||
* Fetch records that have <code>pid BETWEEN lowerInclusive AND
|
||||
* upperInclusive</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysUrls> fetchRangeOfPid(String lowerInclusive, String upperInclusive) {
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysUrls> fetchRangeOfPid(Integer lowerInclusive, Integer upperInclusive) {
|
||||
return fetchRange(SysUrls.SYS_URLS.PID, lowerInclusive, upperInclusive);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch records that have <code>pid IN (values)</code>
|
||||
*/
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysUrls> fetchByPid(String... values) {
|
||||
public List<jj.tech.paolu.repository.jooq.tables.pojos.SysUrls> fetchByPid(Integer... values) {
|
||||
return fetch(SysUrls.SYS_URLS.PID, values);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,394 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* 从电子档案系统同步档案目录数据的过程日志
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ArchiveSynLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private LocalDateTime startTime;
|
||||
private Long insertDirCount;
|
||||
private Long updateDirCount;
|
||||
private Long insertDirfileCount;
|
||||
private Long updateDirfileCount;
|
||||
private Long insertFileCount;
|
||||
private Long updateFileCount;
|
||||
private String description;
|
||||
private String runResult;
|
||||
private Long updateTimestamp;
|
||||
private String id;
|
||||
private Long nextUpdateTimestamp;
|
||||
private LocalDateTime endTime;
|
||||
|
||||
public ArchiveSynLog() {}
|
||||
|
||||
public ArchiveSynLog(ArchiveSynLog value) {
|
||||
this.startTime = value.startTime;
|
||||
this.insertDirCount = value.insertDirCount;
|
||||
this.updateDirCount = value.updateDirCount;
|
||||
this.insertDirfileCount = value.insertDirfileCount;
|
||||
this.updateDirfileCount = value.updateDirfileCount;
|
||||
this.insertFileCount = value.insertFileCount;
|
||||
this.updateFileCount = value.updateFileCount;
|
||||
this.description = value.description;
|
||||
this.runResult = value.runResult;
|
||||
this.updateTimestamp = value.updateTimestamp;
|
||||
this.id = value.id;
|
||||
this.nextUpdateTimestamp = value.nextUpdateTimestamp;
|
||||
this.endTime = value.endTime;
|
||||
}
|
||||
|
||||
public ArchiveSynLog(
|
||||
LocalDateTime startTime,
|
||||
Long insertDirCount,
|
||||
Long updateDirCount,
|
||||
Long insertDirfileCount,
|
||||
Long updateDirfileCount,
|
||||
Long insertFileCount,
|
||||
Long updateFileCount,
|
||||
String description,
|
||||
String runResult,
|
||||
Long updateTimestamp,
|
||||
String id,
|
||||
Long nextUpdateTimestamp,
|
||||
LocalDateTime endTime
|
||||
) {
|
||||
this.startTime = startTime;
|
||||
this.insertDirCount = insertDirCount;
|
||||
this.updateDirCount = updateDirCount;
|
||||
this.insertDirfileCount = insertDirfileCount;
|
||||
this.updateDirfileCount = updateDirfileCount;
|
||||
this.insertFileCount = insertFileCount;
|
||||
this.updateFileCount = updateFileCount;
|
||||
this.description = description;
|
||||
this.runResult = runResult;
|
||||
this.updateTimestamp = updateTimestamp;
|
||||
this.id = id;
|
||||
this.nextUpdateTimestamp = nextUpdateTimestamp;
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.start_time</code>.
|
||||
*/
|
||||
public LocalDateTime getStartTime() {
|
||||
return this.startTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.start_time</code>.
|
||||
*/
|
||||
public void setStartTime(LocalDateTime startTime) {
|
||||
this.startTime = startTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.insert_dir_count</code>.
|
||||
*/
|
||||
public Long getInsertDirCount() {
|
||||
return this.insertDirCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.insert_dir_count</code>.
|
||||
*/
|
||||
public void setInsertDirCount(Long insertDirCount) {
|
||||
this.insertDirCount = insertDirCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.update_dir_count</code>.
|
||||
*/
|
||||
public Long getUpdateDirCount() {
|
||||
return this.updateDirCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.update_dir_count</code>.
|
||||
*/
|
||||
public void setUpdateDirCount(Long updateDirCount) {
|
||||
this.updateDirCount = updateDirCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.insert_dirfile_count</code>.
|
||||
*/
|
||||
public Long getInsertDirfileCount() {
|
||||
return this.insertDirfileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.insert_dirfile_count</code>.
|
||||
*/
|
||||
public void setInsertDirfileCount(Long insertDirfileCount) {
|
||||
this.insertDirfileCount = insertDirfileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.update_dirfile_count</code>.
|
||||
*/
|
||||
public Long getUpdateDirfileCount() {
|
||||
return this.updateDirfileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.update_dirfile_count</code>.
|
||||
*/
|
||||
public void setUpdateDirfileCount(Long updateDirfileCount) {
|
||||
this.updateDirfileCount = updateDirfileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.insert_file_count</code>.
|
||||
*/
|
||||
public Long getInsertFileCount() {
|
||||
return this.insertFileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.insert_file_count</code>.
|
||||
*/
|
||||
public void setInsertFileCount(Long insertFileCount) {
|
||||
this.insertFileCount = insertFileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.update_file_count</code>.
|
||||
*/
|
||||
public Long getUpdateFileCount() {
|
||||
return this.updateFileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.update_file_count</code>.
|
||||
*/
|
||||
public void setUpdateFileCount(Long updateFileCount) {
|
||||
this.updateFileCount = updateFileCount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.description</code>.
|
||||
*/
|
||||
public String getDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.description</code>.
|
||||
*/
|
||||
public void setDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.run_result</code>.
|
||||
*/
|
||||
public String getRunResult() {
|
||||
return this.runResult;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.run_result</code>.
|
||||
*/
|
||||
public void setRunResult(String runResult) {
|
||||
this.runResult = runResult;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.update_timestamp</code>.
|
||||
*/
|
||||
public Long getUpdateTimestamp() {
|
||||
return this.updateTimestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.update_timestamp</code>.
|
||||
*/
|
||||
public void setUpdateTimestamp(Long updateTimestamp) {
|
||||
this.updateTimestamp = updateTimestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.next_update_timestamp</code>.
|
||||
*/
|
||||
public Long getNextUpdateTimestamp() {
|
||||
return this.nextUpdateTimestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.next_update_timestamp</code>.
|
||||
*/
|
||||
public void setNextUpdateTimestamp(Long nextUpdateTimestamp) {
|
||||
this.nextUpdateTimestamp = nextUpdateTimestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.archive_syn_log.end_time</code>.
|
||||
*/
|
||||
public LocalDateTime getEndTime() {
|
||||
return this.endTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.archive_syn_log.end_time</code>.
|
||||
*/
|
||||
public void setEndTime(LocalDateTime endTime) {
|
||||
this.endTime = endTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final ArchiveSynLog other = (ArchiveSynLog) obj;
|
||||
if (this.startTime == null) {
|
||||
if (other.startTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.startTime.equals(other.startTime))
|
||||
return false;
|
||||
if (this.insertDirCount == null) {
|
||||
if (other.insertDirCount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.insertDirCount.equals(other.insertDirCount))
|
||||
return false;
|
||||
if (this.updateDirCount == null) {
|
||||
if (other.updateDirCount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.updateDirCount.equals(other.updateDirCount))
|
||||
return false;
|
||||
if (this.insertDirfileCount == null) {
|
||||
if (other.insertDirfileCount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.insertDirfileCount.equals(other.insertDirfileCount))
|
||||
return false;
|
||||
if (this.updateDirfileCount == null) {
|
||||
if (other.updateDirfileCount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.updateDirfileCount.equals(other.updateDirfileCount))
|
||||
return false;
|
||||
if (this.insertFileCount == null) {
|
||||
if (other.insertFileCount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.insertFileCount.equals(other.insertFileCount))
|
||||
return false;
|
||||
if (this.updateFileCount == null) {
|
||||
if (other.updateFileCount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.updateFileCount.equals(other.updateFileCount))
|
||||
return false;
|
||||
if (this.description == null) {
|
||||
if (other.description != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.description.equals(other.description))
|
||||
return false;
|
||||
if (this.runResult == null) {
|
||||
if (other.runResult != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.runResult.equals(other.runResult))
|
||||
return false;
|
||||
if (this.updateTimestamp == null) {
|
||||
if (other.updateTimestamp != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.updateTimestamp.equals(other.updateTimestamp))
|
||||
return false;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.nextUpdateTimestamp == null) {
|
||||
if (other.nextUpdateTimestamp != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.nextUpdateTimestamp.equals(other.nextUpdateTimestamp))
|
||||
return false;
|
||||
if (this.endTime == null) {
|
||||
if (other.endTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.endTime.equals(other.endTime))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.startTime == null) ? 0 : this.startTime.hashCode());
|
||||
result = prime * result + ((this.insertDirCount == null) ? 0 : this.insertDirCount.hashCode());
|
||||
result = prime * result + ((this.updateDirCount == null) ? 0 : this.updateDirCount.hashCode());
|
||||
result = prime * result + ((this.insertDirfileCount == null) ? 0 : this.insertDirfileCount.hashCode());
|
||||
result = prime * result + ((this.updateDirfileCount == null) ? 0 : this.updateDirfileCount.hashCode());
|
||||
result = prime * result + ((this.insertFileCount == null) ? 0 : this.insertFileCount.hashCode());
|
||||
result = prime * result + ((this.updateFileCount == null) ? 0 : this.updateFileCount.hashCode());
|
||||
result = prime * result + ((this.description == null) ? 0 : this.description.hashCode());
|
||||
result = prime * result + ((this.runResult == null) ? 0 : this.runResult.hashCode());
|
||||
result = prime * result + ((this.updateTimestamp == null) ? 0 : this.updateTimestamp.hashCode());
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.nextUpdateTimestamp == null) ? 0 : this.nextUpdateTimestamp.hashCode());
|
||||
result = prime * result + ((this.endTime == null) ? 0 : this.endTime.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("ArchiveSynLog (");
|
||||
|
||||
sb.append(startTime);
|
||||
sb.append(", ").append(insertDirCount);
|
||||
sb.append(", ").append(updateDirCount);
|
||||
sb.append(", ").append(insertDirfileCount);
|
||||
sb.append(", ").append(updateDirfileCount);
|
||||
sb.append(", ").append(insertFileCount);
|
||||
sb.append(", ").append(updateFileCount);
|
||||
sb.append(", ").append(description);
|
||||
sb.append(", ").append(runResult);
|
||||
sb.append(", ").append(updateTimestamp);
|
||||
sb.append(", ").append(id);
|
||||
sb.append(", ").append(nextUpdateTimestamp);
|
||||
sb.append(", ").append(endTime);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,498 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CertificateApply implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private Integer isOrg;
|
||||
private String userId;
|
||||
private String userName;
|
||||
private String userRealName;
|
||||
private String userPhone;
|
||||
private String userOrgId;
|
||||
private String userOrgName;
|
||||
private Integer applyType;
|
||||
private Integer status;
|
||||
private LocalDateTime applyTime;
|
||||
private LocalDateTime applyFinishTime;
|
||||
private String applyReason;
|
||||
private String nextCheckOrgId;
|
||||
private String endCheckOrgId;
|
||||
private String cerId;
|
||||
private String companyId;
|
||||
|
||||
public CertificateApply() {}
|
||||
|
||||
public CertificateApply(CertificateApply value) {
|
||||
this.id = value.id;
|
||||
this.isOrg = value.isOrg;
|
||||
this.userId = value.userId;
|
||||
this.userName = value.userName;
|
||||
this.userRealName = value.userRealName;
|
||||
this.userPhone = value.userPhone;
|
||||
this.userOrgId = value.userOrgId;
|
||||
this.userOrgName = value.userOrgName;
|
||||
this.applyType = value.applyType;
|
||||
this.status = value.status;
|
||||
this.applyTime = value.applyTime;
|
||||
this.applyFinishTime = value.applyFinishTime;
|
||||
this.applyReason = value.applyReason;
|
||||
this.nextCheckOrgId = value.nextCheckOrgId;
|
||||
this.endCheckOrgId = value.endCheckOrgId;
|
||||
this.cerId = value.cerId;
|
||||
this.companyId = value.companyId;
|
||||
}
|
||||
|
||||
public CertificateApply(
|
||||
String id,
|
||||
Integer isOrg,
|
||||
String userId,
|
||||
String userName,
|
||||
String userRealName,
|
||||
String userPhone,
|
||||
String userOrgId,
|
||||
String userOrgName,
|
||||
Integer applyType,
|
||||
Integer status,
|
||||
LocalDateTime applyTime,
|
||||
LocalDateTime applyFinishTime,
|
||||
String applyReason,
|
||||
String nextCheckOrgId,
|
||||
String endCheckOrgId,
|
||||
String cerId,
|
||||
String companyId
|
||||
) {
|
||||
this.id = id;
|
||||
this.isOrg = isOrg;
|
||||
this.userId = userId;
|
||||
this.userName = userName;
|
||||
this.userRealName = userRealName;
|
||||
this.userPhone = userPhone;
|
||||
this.userOrgId = userOrgId;
|
||||
this.userOrgName = userOrgName;
|
||||
this.applyType = applyType;
|
||||
this.status = status;
|
||||
this.applyTime = applyTime;
|
||||
this.applyFinishTime = applyFinishTime;
|
||||
this.applyReason = applyReason;
|
||||
this.nextCheckOrgId = nextCheckOrgId;
|
||||
this.endCheckOrgId = endCheckOrgId;
|
||||
this.cerId = cerId;
|
||||
this.companyId = companyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.is_org</code>.
|
||||
*/
|
||||
public Integer getIsOrg() {
|
||||
return this.isOrg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.is_org</code>.
|
||||
*/
|
||||
public void setIsOrg(Integer isOrg) {
|
||||
this.isOrg = isOrg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.user_id</code>.
|
||||
*/
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.user_id</code>.
|
||||
*/
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.user_name</code>.
|
||||
*/
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.user_name</code>.
|
||||
*/
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.user_real_name</code>.
|
||||
*/
|
||||
public String getUserRealName() {
|
||||
return this.userRealName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.user_real_name</code>.
|
||||
*/
|
||||
public void setUserRealName(String userRealName) {
|
||||
this.userRealName = userRealName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.user_phone</code>.
|
||||
*/
|
||||
public String getUserPhone() {
|
||||
return this.userPhone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.user_phone</code>.
|
||||
*/
|
||||
public void setUserPhone(String userPhone) {
|
||||
this.userPhone = userPhone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.user_org_id</code>.
|
||||
*/
|
||||
public String getUserOrgId() {
|
||||
return this.userOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.user_org_id</code>.
|
||||
*/
|
||||
public void setUserOrgId(String userOrgId) {
|
||||
this.userOrgId = userOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.user_org_name</code>.
|
||||
*/
|
||||
public String getUserOrgName() {
|
||||
return this.userOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.user_org_name</code>.
|
||||
*/
|
||||
public void setUserOrgName(String userOrgName) {
|
||||
this.userOrgName = userOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.apply_type</code>.
|
||||
*/
|
||||
public Integer getApplyType() {
|
||||
return this.applyType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.apply_type</code>.
|
||||
*/
|
||||
public void setApplyType(Integer applyType) {
|
||||
this.applyType = applyType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.status</code>.
|
||||
*/
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.status</code>.
|
||||
*/
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.apply_time</code>.
|
||||
*/
|
||||
public LocalDateTime getApplyTime() {
|
||||
return this.applyTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.apply_time</code>.
|
||||
*/
|
||||
public void setApplyTime(LocalDateTime applyTime) {
|
||||
this.applyTime = applyTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.apply_finish_time</code>.
|
||||
*/
|
||||
public LocalDateTime getApplyFinishTime() {
|
||||
return this.applyFinishTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.apply_finish_time</code>.
|
||||
*/
|
||||
public void setApplyFinishTime(LocalDateTime applyFinishTime) {
|
||||
this.applyFinishTime = applyFinishTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.apply_reason</code>.
|
||||
*/
|
||||
public String getApplyReason() {
|
||||
return this.applyReason;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.apply_reason</code>.
|
||||
*/
|
||||
public void setApplyReason(String applyReason) {
|
||||
this.applyReason = applyReason;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.next_check_org_id</code>.
|
||||
*/
|
||||
public String getNextCheckOrgId() {
|
||||
return this.nextCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.next_check_org_id</code>.
|
||||
*/
|
||||
public void setNextCheckOrgId(String nextCheckOrgId) {
|
||||
this.nextCheckOrgId = nextCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.end_check_org_id</code>.
|
||||
*/
|
||||
public String getEndCheckOrgId() {
|
||||
return this.endCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.end_check_org_id</code>.
|
||||
*/
|
||||
public void setEndCheckOrgId(String endCheckOrgId) {
|
||||
this.endCheckOrgId = endCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.cer_id</code>.
|
||||
*/
|
||||
public String getCerId() {
|
||||
return this.cerId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.cer_id</code>.
|
||||
*/
|
||||
public void setCerId(String cerId) {
|
||||
this.cerId = cerId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply.company_id</code>.
|
||||
*/
|
||||
public String getCompanyId() {
|
||||
return this.companyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply.company_id</code>.
|
||||
*/
|
||||
public void setCompanyId(String companyId) {
|
||||
this.companyId = companyId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final CertificateApply other = (CertificateApply) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.isOrg == null) {
|
||||
if (other.isOrg != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isOrg.equals(other.isOrg))
|
||||
return false;
|
||||
if (this.userId == null) {
|
||||
if (other.userId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userId.equals(other.userId))
|
||||
return false;
|
||||
if (this.userName == null) {
|
||||
if (other.userName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userName.equals(other.userName))
|
||||
return false;
|
||||
if (this.userRealName == null) {
|
||||
if (other.userRealName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userRealName.equals(other.userRealName))
|
||||
return false;
|
||||
if (this.userPhone == null) {
|
||||
if (other.userPhone != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userPhone.equals(other.userPhone))
|
||||
return false;
|
||||
if (this.userOrgId == null) {
|
||||
if (other.userOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userOrgId.equals(other.userOrgId))
|
||||
return false;
|
||||
if (this.userOrgName == null) {
|
||||
if (other.userOrgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userOrgName.equals(other.userOrgName))
|
||||
return false;
|
||||
if (this.applyType == null) {
|
||||
if (other.applyType != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.applyType.equals(other.applyType))
|
||||
return false;
|
||||
if (this.status == null) {
|
||||
if (other.status != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.status.equals(other.status))
|
||||
return false;
|
||||
if (this.applyTime == null) {
|
||||
if (other.applyTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.applyTime.equals(other.applyTime))
|
||||
return false;
|
||||
if (this.applyFinishTime == null) {
|
||||
if (other.applyFinishTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.applyFinishTime.equals(other.applyFinishTime))
|
||||
return false;
|
||||
if (this.applyReason == null) {
|
||||
if (other.applyReason != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.applyReason.equals(other.applyReason))
|
||||
return false;
|
||||
if (this.nextCheckOrgId == null) {
|
||||
if (other.nextCheckOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.nextCheckOrgId.equals(other.nextCheckOrgId))
|
||||
return false;
|
||||
if (this.endCheckOrgId == null) {
|
||||
if (other.endCheckOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.endCheckOrgId.equals(other.endCheckOrgId))
|
||||
return false;
|
||||
if (this.cerId == null) {
|
||||
if (other.cerId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.cerId.equals(other.cerId))
|
||||
return false;
|
||||
if (this.companyId == null) {
|
||||
if (other.companyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.companyId.equals(other.companyId))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.isOrg == null) ? 0 : this.isOrg.hashCode());
|
||||
result = prime * result + ((this.userId == null) ? 0 : this.userId.hashCode());
|
||||
result = prime * result + ((this.userName == null) ? 0 : this.userName.hashCode());
|
||||
result = prime * result + ((this.userRealName == null) ? 0 : this.userRealName.hashCode());
|
||||
result = prime * result + ((this.userPhone == null) ? 0 : this.userPhone.hashCode());
|
||||
result = prime * result + ((this.userOrgId == null) ? 0 : this.userOrgId.hashCode());
|
||||
result = prime * result + ((this.userOrgName == null) ? 0 : this.userOrgName.hashCode());
|
||||
result = prime * result + ((this.applyType == null) ? 0 : this.applyType.hashCode());
|
||||
result = prime * result + ((this.status == null) ? 0 : this.status.hashCode());
|
||||
result = prime * result + ((this.applyTime == null) ? 0 : this.applyTime.hashCode());
|
||||
result = prime * result + ((this.applyFinishTime == null) ? 0 : this.applyFinishTime.hashCode());
|
||||
result = prime * result + ((this.applyReason == null) ? 0 : this.applyReason.hashCode());
|
||||
result = prime * result + ((this.nextCheckOrgId == null) ? 0 : this.nextCheckOrgId.hashCode());
|
||||
result = prime * result + ((this.endCheckOrgId == null) ? 0 : this.endCheckOrgId.hashCode());
|
||||
result = prime * result + ((this.cerId == null) ? 0 : this.cerId.hashCode());
|
||||
result = prime * result + ((this.companyId == null) ? 0 : this.companyId.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("CertificateApply (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(isOrg);
|
||||
sb.append(", ").append(userId);
|
||||
sb.append(", ").append(userName);
|
||||
sb.append(", ").append(userRealName);
|
||||
sb.append(", ").append(userPhone);
|
||||
sb.append(", ").append(userOrgId);
|
||||
sb.append(", ").append(userOrgName);
|
||||
sb.append(", ").append(applyType);
|
||||
sb.append(", ").append(status);
|
||||
sb.append(", ").append(applyTime);
|
||||
sb.append(", ").append(applyFinishTime);
|
||||
sb.append(", ").append(applyReason);
|
||||
sb.append(", ").append(nextCheckOrgId);
|
||||
sb.append(", ").append(endCheckOrgId);
|
||||
sb.append(", ").append(cerId);
|
||||
sb.append(", ").append(companyId);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,456 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CertificateApplyRecord implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String certificateApplyId;
|
||||
private String certificateApplyUserId;
|
||||
private String certificateApplyUserOrgId;
|
||||
private Integer isOrg;
|
||||
private Integer applyType;
|
||||
private String checkUserId;
|
||||
private String checkUserName;
|
||||
private String checkOrgId;
|
||||
private String checkOrgName;
|
||||
private String checkDescribe;
|
||||
private Integer checkStatus;
|
||||
private LocalDateTime checkTime;
|
||||
private String nextCheckOrgId;
|
||||
private String nextCheckOrgName;
|
||||
|
||||
public CertificateApplyRecord() {}
|
||||
|
||||
public CertificateApplyRecord(CertificateApplyRecord value) {
|
||||
this.id = value.id;
|
||||
this.certificateApplyId = value.certificateApplyId;
|
||||
this.certificateApplyUserId = value.certificateApplyUserId;
|
||||
this.certificateApplyUserOrgId = value.certificateApplyUserOrgId;
|
||||
this.isOrg = value.isOrg;
|
||||
this.applyType = value.applyType;
|
||||
this.checkUserId = value.checkUserId;
|
||||
this.checkUserName = value.checkUserName;
|
||||
this.checkOrgId = value.checkOrgId;
|
||||
this.checkOrgName = value.checkOrgName;
|
||||
this.checkDescribe = value.checkDescribe;
|
||||
this.checkStatus = value.checkStatus;
|
||||
this.checkTime = value.checkTime;
|
||||
this.nextCheckOrgId = value.nextCheckOrgId;
|
||||
this.nextCheckOrgName = value.nextCheckOrgName;
|
||||
}
|
||||
|
||||
public CertificateApplyRecord(
|
||||
String id,
|
||||
String certificateApplyId,
|
||||
String certificateApplyUserId,
|
||||
String certificateApplyUserOrgId,
|
||||
Integer isOrg,
|
||||
Integer applyType,
|
||||
String checkUserId,
|
||||
String checkUserName,
|
||||
String checkOrgId,
|
||||
String checkOrgName,
|
||||
String checkDescribe,
|
||||
Integer checkStatus,
|
||||
LocalDateTime checkTime,
|
||||
String nextCheckOrgId,
|
||||
String nextCheckOrgName
|
||||
) {
|
||||
this.id = id;
|
||||
this.certificateApplyId = certificateApplyId;
|
||||
this.certificateApplyUserId = certificateApplyUserId;
|
||||
this.certificateApplyUserOrgId = certificateApplyUserOrgId;
|
||||
this.isOrg = isOrg;
|
||||
this.applyType = applyType;
|
||||
this.checkUserId = checkUserId;
|
||||
this.checkUserName = checkUserName;
|
||||
this.checkOrgId = checkOrgId;
|
||||
this.checkOrgName = checkOrgName;
|
||||
this.checkDescribe = checkDescribe;
|
||||
this.checkStatus = checkStatus;
|
||||
this.checkTime = checkTime;
|
||||
this.nextCheckOrgId = nextCheckOrgId;
|
||||
this.nextCheckOrgName = nextCheckOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.certificate_apply_record.certificate_apply_id</code>.
|
||||
*/
|
||||
public String getCertificateApplyId() {
|
||||
return this.certificateApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.certificate_apply_record.certificate_apply_id</code>.
|
||||
*/
|
||||
public void setCertificateApplyId(String certificateApplyId) {
|
||||
this.certificateApplyId = certificateApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.certificate_apply_record.certificate_apply_user_id</code>.
|
||||
*/
|
||||
public String getCertificateApplyUserId() {
|
||||
return this.certificateApplyUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.certificate_apply_record.certificate_apply_user_id</code>.
|
||||
*/
|
||||
public void setCertificateApplyUserId(String certificateApplyUserId) {
|
||||
this.certificateApplyUserId = certificateApplyUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.certificate_apply_record.certificate_apply_user_org_id</code>.
|
||||
*/
|
||||
public String getCertificateApplyUserOrgId() {
|
||||
return this.certificateApplyUserOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.certificate_apply_record.certificate_apply_user_org_id</code>.
|
||||
*/
|
||||
public void setCertificateApplyUserOrgId(String certificateApplyUserOrgId) {
|
||||
this.certificateApplyUserOrgId = certificateApplyUserOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.is_org</code>.
|
||||
*/
|
||||
public Integer getIsOrg() {
|
||||
return this.isOrg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.is_org</code>.
|
||||
*/
|
||||
public void setIsOrg(Integer isOrg) {
|
||||
this.isOrg = isOrg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.apply_type</code>.
|
||||
*/
|
||||
public Integer getApplyType() {
|
||||
return this.applyType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.apply_type</code>.
|
||||
*/
|
||||
public void setApplyType(Integer applyType) {
|
||||
this.applyType = applyType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.check_user_id</code>.
|
||||
*/
|
||||
public String getCheckUserId() {
|
||||
return this.checkUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.check_user_id</code>.
|
||||
*/
|
||||
public void setCheckUserId(String checkUserId) {
|
||||
this.checkUserId = checkUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.check_user_name</code>.
|
||||
*/
|
||||
public String getCheckUserName() {
|
||||
return this.checkUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.check_user_name</code>.
|
||||
*/
|
||||
public void setCheckUserName(String checkUserName) {
|
||||
this.checkUserName = checkUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.check_org_id</code>.
|
||||
*/
|
||||
public String getCheckOrgId() {
|
||||
return this.checkOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.check_org_id</code>.
|
||||
*/
|
||||
public void setCheckOrgId(String checkOrgId) {
|
||||
this.checkOrgId = checkOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.check_org_name</code>.
|
||||
*/
|
||||
public String getCheckOrgName() {
|
||||
return this.checkOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.check_org_name</code>.
|
||||
*/
|
||||
public void setCheckOrgName(String checkOrgName) {
|
||||
this.checkOrgName = checkOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.check_describe</code>.
|
||||
*/
|
||||
public String getCheckDescribe() {
|
||||
return this.checkDescribe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.check_describe</code>.
|
||||
*/
|
||||
public void setCheckDescribe(String checkDescribe) {
|
||||
this.checkDescribe = checkDescribe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.check_status</code>.
|
||||
*/
|
||||
public Integer getCheckStatus() {
|
||||
return this.checkStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.check_status</code>.
|
||||
*/
|
||||
public void setCheckStatus(Integer checkStatus) {
|
||||
this.checkStatus = checkStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_apply_record.check_time</code>.
|
||||
*/
|
||||
public LocalDateTime getCheckTime() {
|
||||
return this.checkTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_apply_record.check_time</code>.
|
||||
*/
|
||||
public void setCheckTime(LocalDateTime checkTime) {
|
||||
this.checkTime = checkTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.certificate_apply_record.next_check_org_id</code>.
|
||||
*/
|
||||
public String getNextCheckOrgId() {
|
||||
return this.nextCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.certificate_apply_record.next_check_org_id</code>.
|
||||
*/
|
||||
public void setNextCheckOrgId(String nextCheckOrgId) {
|
||||
this.nextCheckOrgId = nextCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.certificate_apply_record.next_check_org_name</code>.
|
||||
*/
|
||||
public String getNextCheckOrgName() {
|
||||
return this.nextCheckOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.certificate_apply_record.next_check_org_name</code>.
|
||||
*/
|
||||
public void setNextCheckOrgName(String nextCheckOrgName) {
|
||||
this.nextCheckOrgName = nextCheckOrgName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final CertificateApplyRecord other = (CertificateApplyRecord) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.certificateApplyId == null) {
|
||||
if (other.certificateApplyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.certificateApplyId.equals(other.certificateApplyId))
|
||||
return false;
|
||||
if (this.certificateApplyUserId == null) {
|
||||
if (other.certificateApplyUserId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.certificateApplyUserId.equals(other.certificateApplyUserId))
|
||||
return false;
|
||||
if (this.certificateApplyUserOrgId == null) {
|
||||
if (other.certificateApplyUserOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.certificateApplyUserOrgId.equals(other.certificateApplyUserOrgId))
|
||||
return false;
|
||||
if (this.isOrg == null) {
|
||||
if (other.isOrg != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isOrg.equals(other.isOrg))
|
||||
return false;
|
||||
if (this.applyType == null) {
|
||||
if (other.applyType != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.applyType.equals(other.applyType))
|
||||
return false;
|
||||
if (this.checkUserId == null) {
|
||||
if (other.checkUserId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkUserId.equals(other.checkUserId))
|
||||
return false;
|
||||
if (this.checkUserName == null) {
|
||||
if (other.checkUserName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkUserName.equals(other.checkUserName))
|
||||
return false;
|
||||
if (this.checkOrgId == null) {
|
||||
if (other.checkOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkOrgId.equals(other.checkOrgId))
|
||||
return false;
|
||||
if (this.checkOrgName == null) {
|
||||
if (other.checkOrgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkOrgName.equals(other.checkOrgName))
|
||||
return false;
|
||||
if (this.checkDescribe == null) {
|
||||
if (other.checkDescribe != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkDescribe.equals(other.checkDescribe))
|
||||
return false;
|
||||
if (this.checkStatus == null) {
|
||||
if (other.checkStatus != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkStatus.equals(other.checkStatus))
|
||||
return false;
|
||||
if (this.checkTime == null) {
|
||||
if (other.checkTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkTime.equals(other.checkTime))
|
||||
return false;
|
||||
if (this.nextCheckOrgId == null) {
|
||||
if (other.nextCheckOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.nextCheckOrgId.equals(other.nextCheckOrgId))
|
||||
return false;
|
||||
if (this.nextCheckOrgName == null) {
|
||||
if (other.nextCheckOrgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.nextCheckOrgName.equals(other.nextCheckOrgName))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.certificateApplyId == null) ? 0 : this.certificateApplyId.hashCode());
|
||||
result = prime * result + ((this.certificateApplyUserId == null) ? 0 : this.certificateApplyUserId.hashCode());
|
||||
result = prime * result + ((this.certificateApplyUserOrgId == null) ? 0 : this.certificateApplyUserOrgId.hashCode());
|
||||
result = prime * result + ((this.isOrg == null) ? 0 : this.isOrg.hashCode());
|
||||
result = prime * result + ((this.applyType == null) ? 0 : this.applyType.hashCode());
|
||||
result = prime * result + ((this.checkUserId == null) ? 0 : this.checkUserId.hashCode());
|
||||
result = prime * result + ((this.checkUserName == null) ? 0 : this.checkUserName.hashCode());
|
||||
result = prime * result + ((this.checkOrgId == null) ? 0 : this.checkOrgId.hashCode());
|
||||
result = prime * result + ((this.checkOrgName == null) ? 0 : this.checkOrgName.hashCode());
|
||||
result = prime * result + ((this.checkDescribe == null) ? 0 : this.checkDescribe.hashCode());
|
||||
result = prime * result + ((this.checkStatus == null) ? 0 : this.checkStatus.hashCode());
|
||||
result = prime * result + ((this.checkTime == null) ? 0 : this.checkTime.hashCode());
|
||||
result = prime * result + ((this.nextCheckOrgId == null) ? 0 : this.nextCheckOrgId.hashCode());
|
||||
result = prime * result + ((this.nextCheckOrgName == null) ? 0 : this.nextCheckOrgName.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("CertificateApplyRecord (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(certificateApplyId);
|
||||
sb.append(", ").append(certificateApplyUserId);
|
||||
sb.append(", ").append(certificateApplyUserOrgId);
|
||||
sb.append(", ").append(isOrg);
|
||||
sb.append(", ").append(applyType);
|
||||
sb.append(", ").append(checkUserId);
|
||||
sb.append(", ").append(checkUserName);
|
||||
sb.append(", ").append(checkOrgId);
|
||||
sb.append(", ").append(checkOrgName);
|
||||
sb.append(", ").append(checkDescribe);
|
||||
sb.append(", ").append(checkStatus);
|
||||
sb.append(", ").append(checkTime);
|
||||
sb.append(", ").append(nextCheckOrgId);
|
||||
sb.append(", ").append(nextCheckOrgName);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,420 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CertificateDetail implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String certificateApplyId;
|
||||
private LocalDateTime workStartTime;
|
||||
private LocalDateTime workEndTime;
|
||||
private Integer status;
|
||||
private String certFileContent;
|
||||
private Integer isUpChain;
|
||||
private String weid;
|
||||
private String privateKeyHexStr;
|
||||
private String x509SerialNumber;
|
||||
private String x509Subject;
|
||||
private String x509Issuer;
|
||||
private String x509PublicKey;
|
||||
private String x509SigAlgName;
|
||||
|
||||
public CertificateDetail() {}
|
||||
|
||||
public CertificateDetail(CertificateDetail value) {
|
||||
this.id = value.id;
|
||||
this.certificateApplyId = value.certificateApplyId;
|
||||
this.workStartTime = value.workStartTime;
|
||||
this.workEndTime = value.workEndTime;
|
||||
this.status = value.status;
|
||||
this.certFileContent = value.certFileContent;
|
||||
this.isUpChain = value.isUpChain;
|
||||
this.weid = value.weid;
|
||||
this.privateKeyHexStr = value.privateKeyHexStr;
|
||||
this.x509SerialNumber = value.x509SerialNumber;
|
||||
this.x509Subject = value.x509Subject;
|
||||
this.x509Issuer = value.x509Issuer;
|
||||
this.x509PublicKey = value.x509PublicKey;
|
||||
this.x509SigAlgName = value.x509SigAlgName;
|
||||
}
|
||||
|
||||
public CertificateDetail(
|
||||
String id,
|
||||
String certificateApplyId,
|
||||
LocalDateTime workStartTime,
|
||||
LocalDateTime workEndTime,
|
||||
Integer status,
|
||||
String certFileContent,
|
||||
Integer isUpChain,
|
||||
String weid,
|
||||
String privateKeyHexStr,
|
||||
String x509SerialNumber,
|
||||
String x509Subject,
|
||||
String x509Issuer,
|
||||
String x509PublicKey,
|
||||
String x509SigAlgName
|
||||
) {
|
||||
this.id = id;
|
||||
this.certificateApplyId = certificateApplyId;
|
||||
this.workStartTime = workStartTime;
|
||||
this.workEndTime = workEndTime;
|
||||
this.status = status;
|
||||
this.certFileContent = certFileContent;
|
||||
this.isUpChain = isUpChain;
|
||||
this.weid = weid;
|
||||
this.privateKeyHexStr = privateKeyHexStr;
|
||||
this.x509SerialNumber = x509SerialNumber;
|
||||
this.x509Subject = x509Subject;
|
||||
this.x509Issuer = x509Issuer;
|
||||
this.x509PublicKey = x509PublicKey;
|
||||
this.x509SigAlgName = x509SigAlgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.certificate_apply_id</code>.
|
||||
*/
|
||||
public String getCertificateApplyId() {
|
||||
return this.certificateApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.certificate_apply_id</code>.
|
||||
*/
|
||||
public void setCertificateApplyId(String certificateApplyId) {
|
||||
this.certificateApplyId = certificateApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.work_start_time</code>.
|
||||
*/
|
||||
public LocalDateTime getWorkStartTime() {
|
||||
return this.workStartTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.work_start_time</code>.
|
||||
*/
|
||||
public void setWorkStartTime(LocalDateTime workStartTime) {
|
||||
this.workStartTime = workStartTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.work_end_time</code>.
|
||||
*/
|
||||
public LocalDateTime getWorkEndTime() {
|
||||
return this.workEndTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.work_end_time</code>.
|
||||
*/
|
||||
public void setWorkEndTime(LocalDateTime workEndTime) {
|
||||
this.workEndTime = workEndTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.status</code>.
|
||||
*/
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.status</code>.
|
||||
*/
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.cert_file_content</code>.
|
||||
*/
|
||||
public String getCertFileContent() {
|
||||
return this.certFileContent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.cert_file_content</code>.
|
||||
*/
|
||||
public void setCertFileContent(String certFileContent) {
|
||||
this.certFileContent = certFileContent;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.is_up_chain</code>.
|
||||
*/
|
||||
public Integer getIsUpChain() {
|
||||
return this.isUpChain;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.is_up_chain</code>.
|
||||
*/
|
||||
public void setIsUpChain(Integer isUpChain) {
|
||||
this.isUpChain = isUpChain;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.weid</code>.
|
||||
*/
|
||||
public String getWeid() {
|
||||
return this.weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.weid</code>.
|
||||
*/
|
||||
public void setWeid(String weid) {
|
||||
this.weid = weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.private_key_hex_str</code>.
|
||||
*/
|
||||
public String getPrivateKeyHexStr() {
|
||||
return this.privateKeyHexStr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.private_key_hex_str</code>.
|
||||
*/
|
||||
public void setPrivateKeyHexStr(String privateKeyHexStr) {
|
||||
this.privateKeyHexStr = privateKeyHexStr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.x509_serial_number</code>.
|
||||
*/
|
||||
public String getX509SerialNumber() {
|
||||
return this.x509SerialNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.x509_serial_number</code>.
|
||||
*/
|
||||
public void setX509SerialNumber(String x509SerialNumber) {
|
||||
this.x509SerialNumber = x509SerialNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.x509_subject</code>.
|
||||
*/
|
||||
public String getX509Subject() {
|
||||
return this.x509Subject;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.x509_subject</code>.
|
||||
*/
|
||||
public void setX509Subject(String x509Subject) {
|
||||
this.x509Subject = x509Subject;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.x509_issuer</code>.
|
||||
*/
|
||||
public String getX509Issuer() {
|
||||
return this.x509Issuer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.x509_issuer</code>.
|
||||
*/
|
||||
public void setX509Issuer(String x509Issuer) {
|
||||
this.x509Issuer = x509Issuer;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.x509_public_key</code>.
|
||||
*/
|
||||
public String getX509PublicKey() {
|
||||
return this.x509PublicKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.x509_public_key</code>.
|
||||
*/
|
||||
public void setX509PublicKey(String x509PublicKey) {
|
||||
this.x509PublicKey = x509PublicKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.certificate_detail.x509_sig_alg_name</code>.
|
||||
*/
|
||||
public String getX509SigAlgName() {
|
||||
return this.x509SigAlgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.certificate_detail.x509_sig_alg_name</code>.
|
||||
*/
|
||||
public void setX509SigAlgName(String x509SigAlgName) {
|
||||
this.x509SigAlgName = x509SigAlgName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final CertificateDetail other = (CertificateDetail) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.certificateApplyId == null) {
|
||||
if (other.certificateApplyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.certificateApplyId.equals(other.certificateApplyId))
|
||||
return false;
|
||||
if (this.workStartTime == null) {
|
||||
if (other.workStartTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.workStartTime.equals(other.workStartTime))
|
||||
return false;
|
||||
if (this.workEndTime == null) {
|
||||
if (other.workEndTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.workEndTime.equals(other.workEndTime))
|
||||
return false;
|
||||
if (this.status == null) {
|
||||
if (other.status != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.status.equals(other.status))
|
||||
return false;
|
||||
if (this.certFileContent == null) {
|
||||
if (other.certFileContent != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.certFileContent.equals(other.certFileContent))
|
||||
return false;
|
||||
if (this.isUpChain == null) {
|
||||
if (other.isUpChain != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isUpChain.equals(other.isUpChain))
|
||||
return false;
|
||||
if (this.weid == null) {
|
||||
if (other.weid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.weid.equals(other.weid))
|
||||
return false;
|
||||
if (this.privateKeyHexStr == null) {
|
||||
if (other.privateKeyHexStr != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.privateKeyHexStr.equals(other.privateKeyHexStr))
|
||||
return false;
|
||||
if (this.x509SerialNumber == null) {
|
||||
if (other.x509SerialNumber != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.x509SerialNumber.equals(other.x509SerialNumber))
|
||||
return false;
|
||||
if (this.x509Subject == null) {
|
||||
if (other.x509Subject != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.x509Subject.equals(other.x509Subject))
|
||||
return false;
|
||||
if (this.x509Issuer == null) {
|
||||
if (other.x509Issuer != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.x509Issuer.equals(other.x509Issuer))
|
||||
return false;
|
||||
if (this.x509PublicKey == null) {
|
||||
if (other.x509PublicKey != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.x509PublicKey.equals(other.x509PublicKey))
|
||||
return false;
|
||||
if (this.x509SigAlgName == null) {
|
||||
if (other.x509SigAlgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.x509SigAlgName.equals(other.x509SigAlgName))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.certificateApplyId == null) ? 0 : this.certificateApplyId.hashCode());
|
||||
result = prime * result + ((this.workStartTime == null) ? 0 : this.workStartTime.hashCode());
|
||||
result = prime * result + ((this.workEndTime == null) ? 0 : this.workEndTime.hashCode());
|
||||
result = prime * result + ((this.status == null) ? 0 : this.status.hashCode());
|
||||
result = prime * result + ((this.certFileContent == null) ? 0 : this.certFileContent.hashCode());
|
||||
result = prime * result + ((this.isUpChain == null) ? 0 : this.isUpChain.hashCode());
|
||||
result = prime * result + ((this.weid == null) ? 0 : this.weid.hashCode());
|
||||
result = prime * result + ((this.privateKeyHexStr == null) ? 0 : this.privateKeyHexStr.hashCode());
|
||||
result = prime * result + ((this.x509SerialNumber == null) ? 0 : this.x509SerialNumber.hashCode());
|
||||
result = prime * result + ((this.x509Subject == null) ? 0 : this.x509Subject.hashCode());
|
||||
result = prime * result + ((this.x509Issuer == null) ? 0 : this.x509Issuer.hashCode());
|
||||
result = prime * result + ((this.x509PublicKey == null) ? 0 : this.x509PublicKey.hashCode());
|
||||
result = prime * result + ((this.x509SigAlgName == null) ? 0 : this.x509SigAlgName.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("CertificateDetail (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(certificateApplyId);
|
||||
sb.append(", ").append(workStartTime);
|
||||
sb.append(", ").append(workEndTime);
|
||||
sb.append(", ").append(status);
|
||||
sb.append(", ").append(certFileContent);
|
||||
sb.append(", ").append(isUpChain);
|
||||
sb.append(", ").append(weid);
|
||||
sb.append(", ").append(privateKeyHexStr);
|
||||
sb.append(", ").append(x509SerialNumber);
|
||||
sb.append(", ").append(x509Subject);
|
||||
sb.append(", ").append(x509Issuer);
|
||||
sb.append(", ").append(x509PublicKey);
|
||||
sb.append(", ").append(x509SigAlgName);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,290 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* 解密情况
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class DecryptLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String weid;
|
||||
private Integer contentType;
|
||||
private String contentId;
|
||||
private LocalDateTime decTime;
|
||||
private String location;
|
||||
private String sm9hibeid;
|
||||
private Integer status;
|
||||
private String sign;
|
||||
|
||||
public DecryptLog() {}
|
||||
|
||||
public DecryptLog(DecryptLog value) {
|
||||
this.id = value.id;
|
||||
this.weid = value.weid;
|
||||
this.contentType = value.contentType;
|
||||
this.contentId = value.contentId;
|
||||
this.decTime = value.decTime;
|
||||
this.location = value.location;
|
||||
this.sm9hibeid = value.sm9hibeid;
|
||||
this.status = value.status;
|
||||
this.sign = value.sign;
|
||||
}
|
||||
|
||||
public DecryptLog(
|
||||
String id,
|
||||
String weid,
|
||||
Integer contentType,
|
||||
String contentId,
|
||||
LocalDateTime decTime,
|
||||
String location,
|
||||
String sm9hibeid,
|
||||
Integer status,
|
||||
String sign
|
||||
) {
|
||||
this.id = id;
|
||||
this.weid = weid;
|
||||
this.contentType = contentType;
|
||||
this.contentId = contentId;
|
||||
this.decTime = decTime;
|
||||
this.location = location;
|
||||
this.sm9hibeid = sm9hibeid;
|
||||
this.status = status;
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.weid</code>. 申请人id
|
||||
*/
|
||||
public String getWeid() {
|
||||
return this.weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.weid</code>. 申请人id
|
||||
*/
|
||||
public void setWeid(String weid) {
|
||||
this.weid = weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.content_type</code>. 档案类型(0件/1件内文件)
|
||||
*/
|
||||
public Integer getContentType() {
|
||||
return this.contentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.content_type</code>. 档案类型(0件/1件内文件)
|
||||
*/
|
||||
public void setContentType(Integer contentType) {
|
||||
this.contentType = contentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.content_id</code>. 档案id
|
||||
*/
|
||||
public String getContentId() {
|
||||
return this.contentId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.content_id</code>. 档案id
|
||||
*/
|
||||
public void setContentId(String contentId) {
|
||||
this.contentId = contentId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.dec_time</code>. 解密时间
|
||||
*/
|
||||
public LocalDateTime getDecTime() {
|
||||
return this.decTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.dec_time</code>. 解密时间
|
||||
*/
|
||||
public void setDecTime(LocalDateTime decTime) {
|
||||
this.decTime = decTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.location</code>. 区域
|
||||
*/
|
||||
public String getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.location</code>. 区域
|
||||
*/
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.sm9hibeid</code>. 秘钥id
|
||||
*/
|
||||
public String getSm9hibeid() {
|
||||
return this.sm9hibeid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.sm9hibeid</code>. 秘钥id
|
||||
*/
|
||||
public void setSm9hibeid(String sm9hibeid) {
|
||||
this.sm9hibeid = sm9hibeid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.status</code>. 解密结果(0失败1成功)
|
||||
*/
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.status</code>. 解密结果(0失败1成功)
|
||||
*/
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.decrypt_log.sign</code>. 数字签名
|
||||
*/
|
||||
public String getSign() {
|
||||
return this.sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.decrypt_log.sign</code>. 数字签名
|
||||
*/
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final DecryptLog other = (DecryptLog) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.weid == null) {
|
||||
if (other.weid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.weid.equals(other.weid))
|
||||
return false;
|
||||
if (this.contentType == null) {
|
||||
if (other.contentType != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.contentType.equals(other.contentType))
|
||||
return false;
|
||||
if (this.contentId == null) {
|
||||
if (other.contentId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.contentId.equals(other.contentId))
|
||||
return false;
|
||||
if (this.decTime == null) {
|
||||
if (other.decTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.decTime.equals(other.decTime))
|
||||
return false;
|
||||
if (this.location == null) {
|
||||
if (other.location != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.location.equals(other.location))
|
||||
return false;
|
||||
if (this.sm9hibeid == null) {
|
||||
if (other.sm9hibeid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sm9hibeid.equals(other.sm9hibeid))
|
||||
return false;
|
||||
if (this.status == null) {
|
||||
if (other.status != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.status.equals(other.status))
|
||||
return false;
|
||||
if (this.sign == null) {
|
||||
if (other.sign != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sign.equals(other.sign))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.weid == null) ? 0 : this.weid.hashCode());
|
||||
result = prime * result + ((this.contentType == null) ? 0 : this.contentType.hashCode());
|
||||
result = prime * result + ((this.contentId == null) ? 0 : this.contentId.hashCode());
|
||||
result = prime * result + ((this.decTime == null) ? 0 : this.decTime.hashCode());
|
||||
result = prime * result + ((this.location == null) ? 0 : this.location.hashCode());
|
||||
result = prime * result + ((this.sm9hibeid == null) ? 0 : this.sm9hibeid.hashCode());
|
||||
result = prime * result + ((this.status == null) ? 0 : this.status.hashCode());
|
||||
result = prime * result + ((this.sign == null) ? 0 : this.sign.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("DecryptLog (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(weid);
|
||||
sb.append(", ").append(contentType);
|
||||
sb.append(", ").append(contentId);
|
||||
sb.append(", ").append(decTime);
|
||||
sb.append(", ").append(location);
|
||||
sb.append(", ").append(sm9hibeid);
|
||||
sb.append(", ").append(status);
|
||||
sb.append(", ").append(sign);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,242 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* 下载行为记录
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class DownloadLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String weid;
|
||||
private LocalDateTime downloadtime;
|
||||
private Integer filenum;
|
||||
private Integer contentType;
|
||||
private String contentid;
|
||||
private String sign;
|
||||
|
||||
public DownloadLog() {}
|
||||
|
||||
public DownloadLog(DownloadLog value) {
|
||||
this.id = value.id;
|
||||
this.weid = value.weid;
|
||||
this.downloadtime = value.downloadtime;
|
||||
this.filenum = value.filenum;
|
||||
this.contentType = value.contentType;
|
||||
this.contentid = value.contentid;
|
||||
this.sign = value.sign;
|
||||
}
|
||||
|
||||
public DownloadLog(
|
||||
String id,
|
||||
String weid,
|
||||
LocalDateTime downloadtime,
|
||||
Integer filenum,
|
||||
Integer contentType,
|
||||
String contentid,
|
||||
String sign
|
||||
) {
|
||||
this.id = id;
|
||||
this.weid = weid;
|
||||
this.downloadtime = downloadtime;
|
||||
this.filenum = filenum;
|
||||
this.contentType = contentType;
|
||||
this.contentid = contentid;
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.download_log.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.download_log.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.download_log.weid</code>. weid
|
||||
*/
|
||||
public String getWeid() {
|
||||
return this.weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.download_log.weid</code>. weid
|
||||
*/
|
||||
public void setWeid(String weid) {
|
||||
this.weid = weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.download_log.downloadtime</code>. 下载时间
|
||||
*/
|
||||
public LocalDateTime getDownloadtime() {
|
||||
return this.downloadtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.download_log.downloadtime</code>. 下载时间
|
||||
*/
|
||||
public void setDownloadtime(LocalDateTime downloadtime) {
|
||||
this.downloadtime = downloadtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.download_log.filenum</code>. 下载文件数
|
||||
*/
|
||||
public Integer getFilenum() {
|
||||
return this.filenum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.download_log.filenum</code>. 下载文件数
|
||||
*/
|
||||
public void setFilenum(Integer filenum) {
|
||||
this.filenum = filenum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.download_log.content_type</code>.
|
||||
* 下载类型(1文件包/2单个附件(SyncFile)/3单个件(DirecotryFile))
|
||||
*/
|
||||
public Integer getContentType() {
|
||||
return this.contentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.download_log.content_type</code>.
|
||||
* 下载类型(1文件包/2单个附件(SyncFile)/3单个件(DirecotryFile))
|
||||
*/
|
||||
public void setContentType(Integer contentType) {
|
||||
this.contentType = contentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.download_log.contentid</code>.
|
||||
* 下载记录ID(如果是单个文件,就取ID,如果是包,就是包内包含的文件的ID列表)
|
||||
*/
|
||||
public String getContentid() {
|
||||
return this.contentid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.download_log.contentid</code>.
|
||||
* 下载记录ID(如果是单个文件,就取ID,如果是包,就是包内包含的文件的ID列表)
|
||||
*/
|
||||
public void setContentid(String contentid) {
|
||||
this.contentid = contentid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.download_log.sign</code>. 数字签名
|
||||
*/
|
||||
public String getSign() {
|
||||
return this.sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.download_log.sign</code>. 数字签名
|
||||
*/
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final DownloadLog other = (DownloadLog) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.weid == null) {
|
||||
if (other.weid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.weid.equals(other.weid))
|
||||
return false;
|
||||
if (this.downloadtime == null) {
|
||||
if (other.downloadtime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.downloadtime.equals(other.downloadtime))
|
||||
return false;
|
||||
if (this.filenum == null) {
|
||||
if (other.filenum != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filenum.equals(other.filenum))
|
||||
return false;
|
||||
if (this.contentType == null) {
|
||||
if (other.contentType != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.contentType.equals(other.contentType))
|
||||
return false;
|
||||
if (this.contentid == null) {
|
||||
if (other.contentid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.contentid.equals(other.contentid))
|
||||
return false;
|
||||
if (this.sign == null) {
|
||||
if (other.sign != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sign.equals(other.sign))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.weid == null) ? 0 : this.weid.hashCode());
|
||||
result = prime * result + ((this.downloadtime == null) ? 0 : this.downloadtime.hashCode());
|
||||
result = prime * result + ((this.filenum == null) ? 0 : this.filenum.hashCode());
|
||||
result = prime * result + ((this.contentType == null) ? 0 : this.contentType.hashCode());
|
||||
result = prime * result + ((this.contentid == null) ? 0 : this.contentid.hashCode());
|
||||
result = prime * result + ((this.sign == null) ? 0 : this.sign.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("DownloadLog (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(weid);
|
||||
sb.append(", ").append(downloadtime);
|
||||
sb.append(", ").append(filenum);
|
||||
sb.append(", ").append(contentType);
|
||||
sb.append(", ").append(contentid);
|
||||
sb.append(", ").append(sign);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,456 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyCheckRecord implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String filesApplyId;
|
||||
private Integer isApplyProvider;
|
||||
private String checkUserId;
|
||||
private String checkUserName;
|
||||
private String checkOrgId;
|
||||
private String checkOrgName;
|
||||
private String nextCheckOrgId;
|
||||
private String nextCheckOrgName;
|
||||
private String checkDescribe;
|
||||
private Integer checkStatus;
|
||||
private LocalDateTime checkTime;
|
||||
private String providerNextCheckRoleSignId;
|
||||
private String providerNextCheckRoleSignName;
|
||||
private String sign;
|
||||
|
||||
public FilesApplyCheckRecord() {}
|
||||
|
||||
public FilesApplyCheckRecord(FilesApplyCheckRecord value) {
|
||||
this.id = value.id;
|
||||
this.filesApplyId = value.filesApplyId;
|
||||
this.isApplyProvider = value.isApplyProvider;
|
||||
this.checkUserId = value.checkUserId;
|
||||
this.checkUserName = value.checkUserName;
|
||||
this.checkOrgId = value.checkOrgId;
|
||||
this.checkOrgName = value.checkOrgName;
|
||||
this.nextCheckOrgId = value.nextCheckOrgId;
|
||||
this.nextCheckOrgName = value.nextCheckOrgName;
|
||||
this.checkDescribe = value.checkDescribe;
|
||||
this.checkStatus = value.checkStatus;
|
||||
this.checkTime = value.checkTime;
|
||||
this.providerNextCheckRoleSignId = value.providerNextCheckRoleSignId;
|
||||
this.providerNextCheckRoleSignName = value.providerNextCheckRoleSignName;
|
||||
this.sign = value.sign;
|
||||
}
|
||||
|
||||
public FilesApplyCheckRecord(
|
||||
String id,
|
||||
String filesApplyId,
|
||||
Integer isApplyProvider,
|
||||
String checkUserId,
|
||||
String checkUserName,
|
||||
String checkOrgId,
|
||||
String checkOrgName,
|
||||
String nextCheckOrgId,
|
||||
String nextCheckOrgName,
|
||||
String checkDescribe,
|
||||
Integer checkStatus,
|
||||
LocalDateTime checkTime,
|
||||
String providerNextCheckRoleSignId,
|
||||
String providerNextCheckRoleSignName,
|
||||
String sign
|
||||
) {
|
||||
this.id = id;
|
||||
this.filesApplyId = filesApplyId;
|
||||
this.isApplyProvider = isApplyProvider;
|
||||
this.checkUserId = checkUserId;
|
||||
this.checkUserName = checkUserName;
|
||||
this.checkOrgId = checkOrgId;
|
||||
this.checkOrgName = checkOrgName;
|
||||
this.nextCheckOrgId = nextCheckOrgId;
|
||||
this.nextCheckOrgName = nextCheckOrgName;
|
||||
this.checkDescribe = checkDescribe;
|
||||
this.checkStatus = checkStatus;
|
||||
this.checkTime = checkTime;
|
||||
this.providerNextCheckRoleSignId = providerNextCheckRoleSignId;
|
||||
this.providerNextCheckRoleSignName = providerNextCheckRoleSignName;
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.files_apply_id</code>.
|
||||
*/
|
||||
public String getFilesApplyId() {
|
||||
return this.filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.files_apply_id</code>.
|
||||
*/
|
||||
public void setFilesApplyId(String filesApplyId) {
|
||||
this.filesApplyId = filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_check_record.is_apply_provider</code>.
|
||||
*/
|
||||
public Integer getIsApplyProvider() {
|
||||
return this.isApplyProvider;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_check_record.is_apply_provider</code>.
|
||||
*/
|
||||
public void setIsApplyProvider(Integer isApplyProvider) {
|
||||
this.isApplyProvider = isApplyProvider;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.check_user_id</code>.
|
||||
*/
|
||||
public String getCheckUserId() {
|
||||
return this.checkUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.check_user_id</code>.
|
||||
*/
|
||||
public void setCheckUserId(String checkUserId) {
|
||||
this.checkUserId = checkUserId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.check_user_name</code>.
|
||||
*/
|
||||
public String getCheckUserName() {
|
||||
return this.checkUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.check_user_name</code>.
|
||||
*/
|
||||
public void setCheckUserName(String checkUserName) {
|
||||
this.checkUserName = checkUserName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.check_org_id</code>.
|
||||
*/
|
||||
public String getCheckOrgId() {
|
||||
return this.checkOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.check_org_id</code>.
|
||||
*/
|
||||
public void setCheckOrgId(String checkOrgId) {
|
||||
this.checkOrgId = checkOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.check_org_name</code>.
|
||||
*/
|
||||
public String getCheckOrgName() {
|
||||
return this.checkOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.check_org_name</code>.
|
||||
*/
|
||||
public void setCheckOrgName(String checkOrgName) {
|
||||
this.checkOrgName = checkOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_check_record.next_check_org_id</code>.
|
||||
*/
|
||||
public String getNextCheckOrgId() {
|
||||
return this.nextCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_check_record.next_check_org_id</code>.
|
||||
*/
|
||||
public void setNextCheckOrgId(String nextCheckOrgId) {
|
||||
this.nextCheckOrgId = nextCheckOrgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_check_record.next_check_org_name</code>.
|
||||
*/
|
||||
public String getNextCheckOrgName() {
|
||||
return this.nextCheckOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_check_record.next_check_org_name</code>.
|
||||
*/
|
||||
public void setNextCheckOrgName(String nextCheckOrgName) {
|
||||
this.nextCheckOrgName = nextCheckOrgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.check_describe</code>.
|
||||
*/
|
||||
public String getCheckDescribe() {
|
||||
return this.checkDescribe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.check_describe</code>.
|
||||
*/
|
||||
public void setCheckDescribe(String checkDescribe) {
|
||||
this.checkDescribe = checkDescribe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.check_status</code>.
|
||||
*/
|
||||
public Integer getCheckStatus() {
|
||||
return this.checkStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.check_status</code>.
|
||||
*/
|
||||
public void setCheckStatus(Integer checkStatus) {
|
||||
this.checkStatus = checkStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.check_time</code>.
|
||||
*/
|
||||
public LocalDateTime getCheckTime() {
|
||||
return this.checkTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.check_time</code>.
|
||||
*/
|
||||
public void setCheckTime(LocalDateTime checkTime) {
|
||||
this.checkTime = checkTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_check_record.provider_next_check_role_sign_id</code>.
|
||||
*/
|
||||
public String getProviderNextCheckRoleSignId() {
|
||||
return this.providerNextCheckRoleSignId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_check_record.provider_next_check_role_sign_id</code>.
|
||||
*/
|
||||
public void setProviderNextCheckRoleSignId(String providerNextCheckRoleSignId) {
|
||||
this.providerNextCheckRoleSignId = providerNextCheckRoleSignId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_check_record.provider_next_check_role_sign_name</code>.
|
||||
*/
|
||||
public String getProviderNextCheckRoleSignName() {
|
||||
return this.providerNextCheckRoleSignName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_check_record.provider_next_check_role_sign_name</code>.
|
||||
*/
|
||||
public void setProviderNextCheckRoleSignName(String providerNextCheckRoleSignName) {
|
||||
this.providerNextCheckRoleSignName = providerNextCheckRoleSignName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_check_record.sign</code>.
|
||||
*/
|
||||
public String getSign() {
|
||||
return this.sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_check_record.sign</code>.
|
||||
*/
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final FilesApplyCheckRecord other = (FilesApplyCheckRecord) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.filesApplyId == null) {
|
||||
if (other.filesApplyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesApplyId.equals(other.filesApplyId))
|
||||
return false;
|
||||
if (this.isApplyProvider == null) {
|
||||
if (other.isApplyProvider != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isApplyProvider.equals(other.isApplyProvider))
|
||||
return false;
|
||||
if (this.checkUserId == null) {
|
||||
if (other.checkUserId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkUserId.equals(other.checkUserId))
|
||||
return false;
|
||||
if (this.checkUserName == null) {
|
||||
if (other.checkUserName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkUserName.equals(other.checkUserName))
|
||||
return false;
|
||||
if (this.checkOrgId == null) {
|
||||
if (other.checkOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkOrgId.equals(other.checkOrgId))
|
||||
return false;
|
||||
if (this.checkOrgName == null) {
|
||||
if (other.checkOrgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkOrgName.equals(other.checkOrgName))
|
||||
return false;
|
||||
if (this.nextCheckOrgId == null) {
|
||||
if (other.nextCheckOrgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.nextCheckOrgId.equals(other.nextCheckOrgId))
|
||||
return false;
|
||||
if (this.nextCheckOrgName == null) {
|
||||
if (other.nextCheckOrgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.nextCheckOrgName.equals(other.nextCheckOrgName))
|
||||
return false;
|
||||
if (this.checkDescribe == null) {
|
||||
if (other.checkDescribe != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkDescribe.equals(other.checkDescribe))
|
||||
return false;
|
||||
if (this.checkStatus == null) {
|
||||
if (other.checkStatus != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkStatus.equals(other.checkStatus))
|
||||
return false;
|
||||
if (this.checkTime == null) {
|
||||
if (other.checkTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkTime.equals(other.checkTime))
|
||||
return false;
|
||||
if (this.providerNextCheckRoleSignId == null) {
|
||||
if (other.providerNextCheckRoleSignId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.providerNextCheckRoleSignId.equals(other.providerNextCheckRoleSignId))
|
||||
return false;
|
||||
if (this.providerNextCheckRoleSignName == null) {
|
||||
if (other.providerNextCheckRoleSignName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.providerNextCheckRoleSignName.equals(other.providerNextCheckRoleSignName))
|
||||
return false;
|
||||
if (this.sign == null) {
|
||||
if (other.sign != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sign.equals(other.sign))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.filesApplyId == null) ? 0 : this.filesApplyId.hashCode());
|
||||
result = prime * result + ((this.isApplyProvider == null) ? 0 : this.isApplyProvider.hashCode());
|
||||
result = prime * result + ((this.checkUserId == null) ? 0 : this.checkUserId.hashCode());
|
||||
result = prime * result + ((this.checkUserName == null) ? 0 : this.checkUserName.hashCode());
|
||||
result = prime * result + ((this.checkOrgId == null) ? 0 : this.checkOrgId.hashCode());
|
||||
result = prime * result + ((this.checkOrgName == null) ? 0 : this.checkOrgName.hashCode());
|
||||
result = prime * result + ((this.nextCheckOrgId == null) ? 0 : this.nextCheckOrgId.hashCode());
|
||||
result = prime * result + ((this.nextCheckOrgName == null) ? 0 : this.nextCheckOrgName.hashCode());
|
||||
result = prime * result + ((this.checkDescribe == null) ? 0 : this.checkDescribe.hashCode());
|
||||
result = prime * result + ((this.checkStatus == null) ? 0 : this.checkStatus.hashCode());
|
||||
result = prime * result + ((this.checkTime == null) ? 0 : this.checkTime.hashCode());
|
||||
result = prime * result + ((this.providerNextCheckRoleSignId == null) ? 0 : this.providerNextCheckRoleSignId.hashCode());
|
||||
result = prime * result + ((this.providerNextCheckRoleSignName == null) ? 0 : this.providerNextCheckRoleSignName.hashCode());
|
||||
result = prime * result + ((this.sign == null) ? 0 : this.sign.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("FilesApplyCheckRecord (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(filesApplyId);
|
||||
sb.append(", ").append(isApplyProvider);
|
||||
sb.append(", ").append(checkUserId);
|
||||
sb.append(", ").append(checkUserName);
|
||||
sb.append(", ").append(checkOrgId);
|
||||
sb.append(", ").append(checkOrgName);
|
||||
sb.append(", ").append(nextCheckOrgId);
|
||||
sb.append(", ").append(nextCheckOrgName);
|
||||
sb.append(", ").append(checkDescribe);
|
||||
sb.append(", ").append(checkStatus);
|
||||
sb.append(", ").append(checkTime);
|
||||
sb.append(", ").append(providerNextCheckRoleSignId);
|
||||
sb.append(", ").append(providerNextCheckRoleSignName);
|
||||
sb.append(", ").append(sign);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,657 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyDirectoryDocs implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String filesApplyId;
|
||||
private String directoryFileId;
|
||||
private String directoryFilePId;
|
||||
private String filesuper;
|
||||
private Integer filecount;
|
||||
private String dutyperson;
|
||||
private String eweavedate;
|
||||
private Integer filepage;
|
||||
private String sortorder;
|
||||
private String bpeg;
|
||||
private String epeg;
|
||||
private String filenum;
|
||||
private String remark;
|
||||
private String recordnum;
|
||||
private String piecenumber;
|
||||
private String adddate;
|
||||
private String editdate;
|
||||
private String timeStamp;
|
||||
private Integer isdel;
|
||||
private String catalogpdfurl;
|
||||
private String signtag;
|
||||
private String collecttag;
|
||||
|
||||
public FilesApplyDirectoryDocs() {}
|
||||
|
||||
public FilesApplyDirectoryDocs(FilesApplyDirectoryDocs value) {
|
||||
this.id = value.id;
|
||||
this.filesApplyId = value.filesApplyId;
|
||||
this.directoryFileId = value.directoryFileId;
|
||||
this.directoryFilePId = value.directoryFilePId;
|
||||
this.filesuper = value.filesuper;
|
||||
this.filecount = value.filecount;
|
||||
this.dutyperson = value.dutyperson;
|
||||
this.eweavedate = value.eweavedate;
|
||||
this.filepage = value.filepage;
|
||||
this.sortorder = value.sortorder;
|
||||
this.bpeg = value.bpeg;
|
||||
this.epeg = value.epeg;
|
||||
this.filenum = value.filenum;
|
||||
this.remark = value.remark;
|
||||
this.recordnum = value.recordnum;
|
||||
this.piecenumber = value.piecenumber;
|
||||
this.adddate = value.adddate;
|
||||
this.editdate = value.editdate;
|
||||
this.timeStamp = value.timeStamp;
|
||||
this.isdel = value.isdel;
|
||||
this.catalogpdfurl = value.catalogpdfurl;
|
||||
this.signtag = value.signtag;
|
||||
this.collecttag = value.collecttag;
|
||||
}
|
||||
|
||||
public FilesApplyDirectoryDocs(
|
||||
String id,
|
||||
String filesApplyId,
|
||||
String directoryFileId,
|
||||
String directoryFilePId,
|
||||
String filesuper,
|
||||
Integer filecount,
|
||||
String dutyperson,
|
||||
String eweavedate,
|
||||
Integer filepage,
|
||||
String sortorder,
|
||||
String bpeg,
|
||||
String epeg,
|
||||
String filenum,
|
||||
String remark,
|
||||
String recordnum,
|
||||
String piecenumber,
|
||||
String adddate,
|
||||
String editdate,
|
||||
String timeStamp,
|
||||
Integer isdel,
|
||||
String catalogpdfurl,
|
||||
String signtag,
|
||||
String collecttag
|
||||
) {
|
||||
this.id = id;
|
||||
this.filesApplyId = filesApplyId;
|
||||
this.directoryFileId = directoryFileId;
|
||||
this.directoryFilePId = directoryFilePId;
|
||||
this.filesuper = filesuper;
|
||||
this.filecount = filecount;
|
||||
this.dutyperson = dutyperson;
|
||||
this.eweavedate = eweavedate;
|
||||
this.filepage = filepage;
|
||||
this.sortorder = sortorder;
|
||||
this.bpeg = bpeg;
|
||||
this.epeg = epeg;
|
||||
this.filenum = filenum;
|
||||
this.remark = remark;
|
||||
this.recordnum = recordnum;
|
||||
this.piecenumber = piecenumber;
|
||||
this.adddate = adddate;
|
||||
this.editdate = editdate;
|
||||
this.timeStamp = timeStamp;
|
||||
this.isdel = isdel;
|
||||
this.catalogpdfurl = catalogpdfurl;
|
||||
this.signtag = signtag;
|
||||
this.collecttag = collecttag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.files_apply_id</code>.
|
||||
*/
|
||||
public String getFilesApplyId() {
|
||||
return this.filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.files_apply_id</code>.
|
||||
*/
|
||||
public void setFilesApplyId(String filesApplyId) {
|
||||
this.filesApplyId = filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_directory_docs.directory_file_id</code>.
|
||||
*/
|
||||
public String getDirectoryFileId() {
|
||||
return this.directoryFileId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_directory_docs.directory_file_id</code>.
|
||||
*/
|
||||
public void setDirectoryFileId(String directoryFileId) {
|
||||
this.directoryFileId = directoryFileId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_directory_docs.directory_file_p_id</code>.
|
||||
*/
|
||||
public String getDirectoryFilePId() {
|
||||
return this.directoryFilePId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_directory_docs.directory_file_p_id</code>.
|
||||
*/
|
||||
public void setDirectoryFilePId(String directoryFilePId) {
|
||||
this.directoryFilePId = directoryFilePId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.filesuper</code>.
|
||||
*/
|
||||
public String getFilesuper() {
|
||||
return this.filesuper;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.filesuper</code>.
|
||||
*/
|
||||
public void setFilesuper(String filesuper) {
|
||||
this.filesuper = filesuper;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.filecount</code>.
|
||||
*/
|
||||
public Integer getFilecount() {
|
||||
return this.filecount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.filecount</code>.
|
||||
*/
|
||||
public void setFilecount(Integer filecount) {
|
||||
this.filecount = filecount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.dutyperson</code>.
|
||||
*/
|
||||
public String getDutyperson() {
|
||||
return this.dutyperson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.dutyperson</code>.
|
||||
*/
|
||||
public void setDutyperson(String dutyperson) {
|
||||
this.dutyperson = dutyperson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.eweavedate</code>.
|
||||
*/
|
||||
public String getEweavedate() {
|
||||
return this.eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.eweavedate</code>.
|
||||
*/
|
||||
public void setEweavedate(String eweavedate) {
|
||||
this.eweavedate = eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.filepage</code>.
|
||||
*/
|
||||
public Integer getFilepage() {
|
||||
return this.filepage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.filepage</code>.
|
||||
*/
|
||||
public void setFilepage(Integer filepage) {
|
||||
this.filepage = filepage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.sortorder</code>.
|
||||
*/
|
||||
public String getSortorder() {
|
||||
return this.sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.sortorder</code>.
|
||||
*/
|
||||
public void setSortorder(String sortorder) {
|
||||
this.sortorder = sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.bpeg</code>.
|
||||
*/
|
||||
public String getBpeg() {
|
||||
return this.bpeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.bpeg</code>.
|
||||
*/
|
||||
public void setBpeg(String bpeg) {
|
||||
this.bpeg = bpeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.epeg</code>.
|
||||
*/
|
||||
public String getEpeg() {
|
||||
return this.epeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.epeg</code>.
|
||||
*/
|
||||
public void setEpeg(String epeg) {
|
||||
this.epeg = epeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.filenum</code>.
|
||||
*/
|
||||
public String getFilenum() {
|
||||
return this.filenum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.filenum</code>.
|
||||
*/
|
||||
public void setFilenum(String filenum) {
|
||||
this.filenum = filenum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.remark</code>.
|
||||
*/
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.remark</code>.
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.recordnum</code>.
|
||||
*/
|
||||
public String getRecordnum() {
|
||||
return this.recordnum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.recordnum</code>.
|
||||
*/
|
||||
public void setRecordnum(String recordnum) {
|
||||
this.recordnum = recordnum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.piecenumber</code>.
|
||||
*/
|
||||
public String getPiecenumber() {
|
||||
return this.piecenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.piecenumber</code>.
|
||||
*/
|
||||
public void setPiecenumber(String piecenumber) {
|
||||
this.piecenumber = piecenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.adddate</code>.
|
||||
*/
|
||||
public String getAdddate() {
|
||||
return this.adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.adddate</code>.
|
||||
*/
|
||||
public void setAdddate(String adddate) {
|
||||
this.adddate = adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.editdate</code>.
|
||||
*/
|
||||
public String getEditdate() {
|
||||
return this.editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.editdate</code>.
|
||||
*/
|
||||
public void setEditdate(String editdate) {
|
||||
this.editdate = editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.time_stamp</code>.
|
||||
*/
|
||||
public String getTimeStamp() {
|
||||
return this.timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.time_stamp</code>.
|
||||
*/
|
||||
public void setTimeStamp(String timeStamp) {
|
||||
this.timeStamp = timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.isdel</code>.
|
||||
*/
|
||||
public Integer getIsdel() {
|
||||
return this.isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.isdel</code>.
|
||||
*/
|
||||
public void setIsdel(Integer isdel) {
|
||||
this.isdel = isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.catalogpdfurl</code>.
|
||||
*/
|
||||
public String getCatalogpdfurl() {
|
||||
return this.catalogpdfurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.catalogpdfurl</code>.
|
||||
*/
|
||||
public void setCatalogpdfurl(String catalogpdfurl) {
|
||||
this.catalogpdfurl = catalogpdfurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.signtag</code>.
|
||||
*/
|
||||
public String getSigntag() {
|
||||
return this.signtag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.signtag</code>.
|
||||
*/
|
||||
public void setSigntag(String signtag) {
|
||||
this.signtag = signtag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_directory_docs.collecttag</code>.
|
||||
*/
|
||||
public String getCollecttag() {
|
||||
return this.collecttag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_directory_docs.collecttag</code>.
|
||||
*/
|
||||
public void setCollecttag(String collecttag) {
|
||||
this.collecttag = collecttag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final FilesApplyDirectoryDocs other = (FilesApplyDirectoryDocs) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.filesApplyId == null) {
|
||||
if (other.filesApplyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesApplyId.equals(other.filesApplyId))
|
||||
return false;
|
||||
if (this.directoryFileId == null) {
|
||||
if (other.directoryFileId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.directoryFileId.equals(other.directoryFileId))
|
||||
return false;
|
||||
if (this.directoryFilePId == null) {
|
||||
if (other.directoryFilePId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.directoryFilePId.equals(other.directoryFilePId))
|
||||
return false;
|
||||
if (this.filesuper == null) {
|
||||
if (other.filesuper != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesuper.equals(other.filesuper))
|
||||
return false;
|
||||
if (this.filecount == null) {
|
||||
if (other.filecount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filecount.equals(other.filecount))
|
||||
return false;
|
||||
if (this.dutyperson == null) {
|
||||
if (other.dutyperson != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.dutyperson.equals(other.dutyperson))
|
||||
return false;
|
||||
if (this.eweavedate == null) {
|
||||
if (other.eweavedate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.eweavedate.equals(other.eweavedate))
|
||||
return false;
|
||||
if (this.filepage == null) {
|
||||
if (other.filepage != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filepage.equals(other.filepage))
|
||||
return false;
|
||||
if (this.sortorder == null) {
|
||||
if (other.sortorder != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sortorder.equals(other.sortorder))
|
||||
return false;
|
||||
if (this.bpeg == null) {
|
||||
if (other.bpeg != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.bpeg.equals(other.bpeg))
|
||||
return false;
|
||||
if (this.epeg == null) {
|
||||
if (other.epeg != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.epeg.equals(other.epeg))
|
||||
return false;
|
||||
if (this.filenum == null) {
|
||||
if (other.filenum != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filenum.equals(other.filenum))
|
||||
return false;
|
||||
if (this.remark == null) {
|
||||
if (other.remark != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.remark.equals(other.remark))
|
||||
return false;
|
||||
if (this.recordnum == null) {
|
||||
if (other.recordnum != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.recordnum.equals(other.recordnum))
|
||||
return false;
|
||||
if (this.piecenumber == null) {
|
||||
if (other.piecenumber != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.piecenumber.equals(other.piecenumber))
|
||||
return false;
|
||||
if (this.adddate == null) {
|
||||
if (other.adddate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.adddate.equals(other.adddate))
|
||||
return false;
|
||||
if (this.editdate == null) {
|
||||
if (other.editdate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.editdate.equals(other.editdate))
|
||||
return false;
|
||||
if (this.timeStamp == null) {
|
||||
if (other.timeStamp != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.timeStamp.equals(other.timeStamp))
|
||||
return false;
|
||||
if (this.isdel == null) {
|
||||
if (other.isdel != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isdel.equals(other.isdel))
|
||||
return false;
|
||||
if (this.catalogpdfurl == null) {
|
||||
if (other.catalogpdfurl != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.catalogpdfurl.equals(other.catalogpdfurl))
|
||||
return false;
|
||||
if (this.signtag == null) {
|
||||
if (other.signtag != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.signtag.equals(other.signtag))
|
||||
return false;
|
||||
if (this.collecttag == null) {
|
||||
if (other.collecttag != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.collecttag.equals(other.collecttag))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.filesApplyId == null) ? 0 : this.filesApplyId.hashCode());
|
||||
result = prime * result + ((this.directoryFileId == null) ? 0 : this.directoryFileId.hashCode());
|
||||
result = prime * result + ((this.directoryFilePId == null) ? 0 : this.directoryFilePId.hashCode());
|
||||
result = prime * result + ((this.filesuper == null) ? 0 : this.filesuper.hashCode());
|
||||
result = prime * result + ((this.filecount == null) ? 0 : this.filecount.hashCode());
|
||||
result = prime * result + ((this.dutyperson == null) ? 0 : this.dutyperson.hashCode());
|
||||
result = prime * result + ((this.eweavedate == null) ? 0 : this.eweavedate.hashCode());
|
||||
result = prime * result + ((this.filepage == null) ? 0 : this.filepage.hashCode());
|
||||
result = prime * result + ((this.sortorder == null) ? 0 : this.sortorder.hashCode());
|
||||
result = prime * result + ((this.bpeg == null) ? 0 : this.bpeg.hashCode());
|
||||
result = prime * result + ((this.epeg == null) ? 0 : this.epeg.hashCode());
|
||||
result = prime * result + ((this.filenum == null) ? 0 : this.filenum.hashCode());
|
||||
result = prime * result + ((this.remark == null) ? 0 : this.remark.hashCode());
|
||||
result = prime * result + ((this.recordnum == null) ? 0 : this.recordnum.hashCode());
|
||||
result = prime * result + ((this.piecenumber == null) ? 0 : this.piecenumber.hashCode());
|
||||
result = prime * result + ((this.adddate == null) ? 0 : this.adddate.hashCode());
|
||||
result = prime * result + ((this.editdate == null) ? 0 : this.editdate.hashCode());
|
||||
result = prime * result + ((this.timeStamp == null) ? 0 : this.timeStamp.hashCode());
|
||||
result = prime * result + ((this.isdel == null) ? 0 : this.isdel.hashCode());
|
||||
result = prime * result + ((this.catalogpdfurl == null) ? 0 : this.catalogpdfurl.hashCode());
|
||||
result = prime * result + ((this.signtag == null) ? 0 : this.signtag.hashCode());
|
||||
result = prime * result + ((this.collecttag == null) ? 0 : this.collecttag.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("FilesApplyDirectoryDocs (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(filesApplyId);
|
||||
sb.append(", ").append(directoryFileId);
|
||||
sb.append(", ").append(directoryFilePId);
|
||||
sb.append(", ").append(filesuper);
|
||||
sb.append(", ").append(filecount);
|
||||
sb.append(", ").append(dutyperson);
|
||||
sb.append(", ").append(eweavedate);
|
||||
sb.append(", ").append(filepage);
|
||||
sb.append(", ").append(sortorder);
|
||||
sb.append(", ").append(bpeg);
|
||||
sb.append(", ").append(epeg);
|
||||
sb.append(", ").append(filenum);
|
||||
sb.append(", ").append(remark);
|
||||
sb.append(", ").append(recordnum);
|
||||
sb.append(", ").append(piecenumber);
|
||||
sb.append(", ").append(adddate);
|
||||
sb.append(", ").append(editdate);
|
||||
sb.append(", ").append(timeStamp);
|
||||
sb.append(", ").append(isdel);
|
||||
sb.append(", ").append(catalogpdfurl);
|
||||
sb.append(", ").append(signtag);
|
||||
sb.append(", ").append(collecttag);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,601 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyDocs implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String filesApplyId;
|
||||
private String synFileId;
|
||||
private String synFilePId;
|
||||
private String tablenumber;
|
||||
private String annexname;
|
||||
private String projectname;
|
||||
private String eweavedate;
|
||||
private String checkdate;
|
||||
private Integer annexpage;
|
||||
private String sortorder;
|
||||
private String filefrom;
|
||||
private String archivestag;
|
||||
private String adddate;
|
||||
private String editdate;
|
||||
private String timeStamp;
|
||||
private Integer isdel;
|
||||
private String downurl;
|
||||
private Integer filesize;
|
||||
private Integer applyViewTypePrint;
|
||||
private Integer applyViewTypeOnline;
|
||||
|
||||
public FilesApplyDocs() {}
|
||||
|
||||
public FilesApplyDocs(FilesApplyDocs value) {
|
||||
this.id = value.id;
|
||||
this.filesApplyId = value.filesApplyId;
|
||||
this.synFileId = value.synFileId;
|
||||
this.synFilePId = value.synFilePId;
|
||||
this.tablenumber = value.tablenumber;
|
||||
this.annexname = value.annexname;
|
||||
this.projectname = value.projectname;
|
||||
this.eweavedate = value.eweavedate;
|
||||
this.checkdate = value.checkdate;
|
||||
this.annexpage = value.annexpage;
|
||||
this.sortorder = value.sortorder;
|
||||
this.filefrom = value.filefrom;
|
||||
this.archivestag = value.archivestag;
|
||||
this.adddate = value.adddate;
|
||||
this.editdate = value.editdate;
|
||||
this.timeStamp = value.timeStamp;
|
||||
this.isdel = value.isdel;
|
||||
this.downurl = value.downurl;
|
||||
this.filesize = value.filesize;
|
||||
this.applyViewTypePrint = value.applyViewTypePrint;
|
||||
this.applyViewTypeOnline = value.applyViewTypeOnline;
|
||||
}
|
||||
|
||||
public FilesApplyDocs(
|
||||
String id,
|
||||
String filesApplyId,
|
||||
String synFileId,
|
||||
String synFilePId,
|
||||
String tablenumber,
|
||||
String annexname,
|
||||
String projectname,
|
||||
String eweavedate,
|
||||
String checkdate,
|
||||
Integer annexpage,
|
||||
String sortorder,
|
||||
String filefrom,
|
||||
String archivestag,
|
||||
String adddate,
|
||||
String editdate,
|
||||
String timeStamp,
|
||||
Integer isdel,
|
||||
String downurl,
|
||||
Integer filesize,
|
||||
Integer applyViewTypePrint,
|
||||
Integer applyViewTypeOnline
|
||||
) {
|
||||
this.id = id;
|
||||
this.filesApplyId = filesApplyId;
|
||||
this.synFileId = synFileId;
|
||||
this.synFilePId = synFilePId;
|
||||
this.tablenumber = tablenumber;
|
||||
this.annexname = annexname;
|
||||
this.projectname = projectname;
|
||||
this.eweavedate = eweavedate;
|
||||
this.checkdate = checkdate;
|
||||
this.annexpage = annexpage;
|
||||
this.sortorder = sortorder;
|
||||
this.filefrom = filefrom;
|
||||
this.archivestag = archivestag;
|
||||
this.adddate = adddate;
|
||||
this.editdate = editdate;
|
||||
this.timeStamp = timeStamp;
|
||||
this.isdel = isdel;
|
||||
this.downurl = downurl;
|
||||
this.filesize = filesize;
|
||||
this.applyViewTypePrint = applyViewTypePrint;
|
||||
this.applyViewTypeOnline = applyViewTypeOnline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.files_apply_id</code>.
|
||||
*/
|
||||
public String getFilesApplyId() {
|
||||
return this.filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.files_apply_id</code>.
|
||||
*/
|
||||
public void setFilesApplyId(String filesApplyId) {
|
||||
this.filesApplyId = filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.syn_file_id</code>.
|
||||
*/
|
||||
public String getSynFileId() {
|
||||
return this.synFileId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.syn_file_id</code>.
|
||||
*/
|
||||
public void setSynFileId(String synFileId) {
|
||||
this.synFileId = synFileId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.syn_file_p_id</code>.
|
||||
*/
|
||||
public String getSynFilePId() {
|
||||
return this.synFilePId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.syn_file_p_id</code>.
|
||||
*/
|
||||
public void setSynFilePId(String synFilePId) {
|
||||
this.synFilePId = synFilePId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.tablenumber</code>.
|
||||
*/
|
||||
public String getTablenumber() {
|
||||
return this.tablenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.tablenumber</code>.
|
||||
*/
|
||||
public void setTablenumber(String tablenumber) {
|
||||
this.tablenumber = tablenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.annexname</code>.
|
||||
*/
|
||||
public String getAnnexname() {
|
||||
return this.annexname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.annexname</code>.
|
||||
*/
|
||||
public void setAnnexname(String annexname) {
|
||||
this.annexname = annexname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.projectname</code>.
|
||||
*/
|
||||
public String getProjectname() {
|
||||
return this.projectname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.projectname</code>.
|
||||
*/
|
||||
public void setProjectname(String projectname) {
|
||||
this.projectname = projectname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.eweavedate</code>.
|
||||
*/
|
||||
public String getEweavedate() {
|
||||
return this.eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.eweavedate</code>.
|
||||
*/
|
||||
public void setEweavedate(String eweavedate) {
|
||||
this.eweavedate = eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.checkdate</code>.
|
||||
*/
|
||||
public String getCheckdate() {
|
||||
return this.checkdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.checkdate</code>.
|
||||
*/
|
||||
public void setCheckdate(String checkdate) {
|
||||
this.checkdate = checkdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.annexpage</code>.
|
||||
*/
|
||||
public Integer getAnnexpage() {
|
||||
return this.annexpage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.annexpage</code>.
|
||||
*/
|
||||
public void setAnnexpage(Integer annexpage) {
|
||||
this.annexpage = annexpage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.sortorder</code>.
|
||||
*/
|
||||
public String getSortorder() {
|
||||
return this.sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.sortorder</code>.
|
||||
*/
|
||||
public void setSortorder(String sortorder) {
|
||||
this.sortorder = sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.filefrom</code>.
|
||||
*/
|
||||
public String getFilefrom() {
|
||||
return this.filefrom;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.filefrom</code>.
|
||||
*/
|
||||
public void setFilefrom(String filefrom) {
|
||||
this.filefrom = filefrom;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.archivestag</code>.
|
||||
*/
|
||||
public String getArchivestag() {
|
||||
return this.archivestag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.archivestag</code>.
|
||||
*/
|
||||
public void setArchivestag(String archivestag) {
|
||||
this.archivestag = archivestag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.adddate</code>.
|
||||
*/
|
||||
public String getAdddate() {
|
||||
return this.adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.adddate</code>.
|
||||
*/
|
||||
public void setAdddate(String adddate) {
|
||||
this.adddate = adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.editdate</code>.
|
||||
*/
|
||||
public String getEditdate() {
|
||||
return this.editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.editdate</code>.
|
||||
*/
|
||||
public void setEditdate(String editdate) {
|
||||
this.editdate = editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.time_stamp</code>.
|
||||
*/
|
||||
public String getTimeStamp() {
|
||||
return this.timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.time_stamp</code>.
|
||||
*/
|
||||
public void setTimeStamp(String timeStamp) {
|
||||
this.timeStamp = timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.isdel</code>.
|
||||
*/
|
||||
public Integer getIsdel() {
|
||||
return this.isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.isdel</code>.
|
||||
*/
|
||||
public void setIsdel(Integer isdel) {
|
||||
this.isdel = isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.downurl</code>.
|
||||
*/
|
||||
public String getDownurl() {
|
||||
return this.downurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.downurl</code>.
|
||||
*/
|
||||
public void setDownurl(String downurl) {
|
||||
this.downurl = downurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.filesize</code>.
|
||||
*/
|
||||
public Integer getFilesize() {
|
||||
return this.filesize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.filesize</code>.
|
||||
*/
|
||||
public void setFilesize(Integer filesize) {
|
||||
this.filesize = filesize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.apply_view_type_print</code>.
|
||||
*/
|
||||
public Integer getApplyViewTypePrint() {
|
||||
return this.applyViewTypePrint;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.apply_view_type_print</code>.
|
||||
*/
|
||||
public void setApplyViewTypePrint(Integer applyViewTypePrint) {
|
||||
this.applyViewTypePrint = applyViewTypePrint;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_docs.apply_view_type_online</code>.
|
||||
*/
|
||||
public Integer getApplyViewTypeOnline() {
|
||||
return this.applyViewTypeOnline;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_docs.apply_view_type_online</code>.
|
||||
*/
|
||||
public void setApplyViewTypeOnline(Integer applyViewTypeOnline) {
|
||||
this.applyViewTypeOnline = applyViewTypeOnline;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final FilesApplyDocs other = (FilesApplyDocs) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.filesApplyId == null) {
|
||||
if (other.filesApplyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesApplyId.equals(other.filesApplyId))
|
||||
return false;
|
||||
if (this.synFileId == null) {
|
||||
if (other.synFileId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synFileId.equals(other.synFileId))
|
||||
return false;
|
||||
if (this.synFilePId == null) {
|
||||
if (other.synFilePId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synFilePId.equals(other.synFilePId))
|
||||
return false;
|
||||
if (this.tablenumber == null) {
|
||||
if (other.tablenumber != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.tablenumber.equals(other.tablenumber))
|
||||
return false;
|
||||
if (this.annexname == null) {
|
||||
if (other.annexname != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.annexname.equals(other.annexname))
|
||||
return false;
|
||||
if (this.projectname == null) {
|
||||
if (other.projectname != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.projectname.equals(other.projectname))
|
||||
return false;
|
||||
if (this.eweavedate == null) {
|
||||
if (other.eweavedate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.eweavedate.equals(other.eweavedate))
|
||||
return false;
|
||||
if (this.checkdate == null) {
|
||||
if (other.checkdate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkdate.equals(other.checkdate))
|
||||
return false;
|
||||
if (this.annexpage == null) {
|
||||
if (other.annexpage != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.annexpage.equals(other.annexpage))
|
||||
return false;
|
||||
if (this.sortorder == null) {
|
||||
if (other.sortorder != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sortorder.equals(other.sortorder))
|
||||
return false;
|
||||
if (this.filefrom == null) {
|
||||
if (other.filefrom != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filefrom.equals(other.filefrom))
|
||||
return false;
|
||||
if (this.archivestag == null) {
|
||||
if (other.archivestag != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.archivestag.equals(other.archivestag))
|
||||
return false;
|
||||
if (this.adddate == null) {
|
||||
if (other.adddate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.adddate.equals(other.adddate))
|
||||
return false;
|
||||
if (this.editdate == null) {
|
||||
if (other.editdate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.editdate.equals(other.editdate))
|
||||
return false;
|
||||
if (this.timeStamp == null) {
|
||||
if (other.timeStamp != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.timeStamp.equals(other.timeStamp))
|
||||
return false;
|
||||
if (this.isdel == null) {
|
||||
if (other.isdel != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isdel.equals(other.isdel))
|
||||
return false;
|
||||
if (this.downurl == null) {
|
||||
if (other.downurl != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.downurl.equals(other.downurl))
|
||||
return false;
|
||||
if (this.filesize == null) {
|
||||
if (other.filesize != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesize.equals(other.filesize))
|
||||
return false;
|
||||
if (this.applyViewTypePrint == null) {
|
||||
if (other.applyViewTypePrint != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.applyViewTypePrint.equals(other.applyViewTypePrint))
|
||||
return false;
|
||||
if (this.applyViewTypeOnline == null) {
|
||||
if (other.applyViewTypeOnline != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.applyViewTypeOnline.equals(other.applyViewTypeOnline))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.filesApplyId == null) ? 0 : this.filesApplyId.hashCode());
|
||||
result = prime * result + ((this.synFileId == null) ? 0 : this.synFileId.hashCode());
|
||||
result = prime * result + ((this.synFilePId == null) ? 0 : this.synFilePId.hashCode());
|
||||
result = prime * result + ((this.tablenumber == null) ? 0 : this.tablenumber.hashCode());
|
||||
result = prime * result + ((this.annexname == null) ? 0 : this.annexname.hashCode());
|
||||
result = prime * result + ((this.projectname == null) ? 0 : this.projectname.hashCode());
|
||||
result = prime * result + ((this.eweavedate == null) ? 0 : this.eweavedate.hashCode());
|
||||
result = prime * result + ((this.checkdate == null) ? 0 : this.checkdate.hashCode());
|
||||
result = prime * result + ((this.annexpage == null) ? 0 : this.annexpage.hashCode());
|
||||
result = prime * result + ((this.sortorder == null) ? 0 : this.sortorder.hashCode());
|
||||
result = prime * result + ((this.filefrom == null) ? 0 : this.filefrom.hashCode());
|
||||
result = prime * result + ((this.archivestag == null) ? 0 : this.archivestag.hashCode());
|
||||
result = prime * result + ((this.adddate == null) ? 0 : this.adddate.hashCode());
|
||||
result = prime * result + ((this.editdate == null) ? 0 : this.editdate.hashCode());
|
||||
result = prime * result + ((this.timeStamp == null) ? 0 : this.timeStamp.hashCode());
|
||||
result = prime * result + ((this.isdel == null) ? 0 : this.isdel.hashCode());
|
||||
result = prime * result + ((this.downurl == null) ? 0 : this.downurl.hashCode());
|
||||
result = prime * result + ((this.filesize == null) ? 0 : this.filesize.hashCode());
|
||||
result = prime * result + ((this.applyViewTypePrint == null) ? 0 : this.applyViewTypePrint.hashCode());
|
||||
result = prime * result + ((this.applyViewTypeOnline == null) ? 0 : this.applyViewTypeOnline.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("FilesApplyDocs (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(filesApplyId);
|
||||
sb.append(", ").append(synFileId);
|
||||
sb.append(", ").append(synFilePId);
|
||||
sb.append(", ").append(tablenumber);
|
||||
sb.append(", ").append(annexname);
|
||||
sb.append(", ").append(projectname);
|
||||
sb.append(", ").append(eweavedate);
|
||||
sb.append(", ").append(checkdate);
|
||||
sb.append(", ").append(annexpage);
|
||||
sb.append(", ").append(sortorder);
|
||||
sb.append(", ").append(filefrom);
|
||||
sb.append(", ").append(archivestag);
|
||||
sb.append(", ").append(adddate);
|
||||
sb.append(", ").append(editdate);
|
||||
sb.append(", ").append(timeStamp);
|
||||
sb.append(", ").append(isdel);
|
||||
sb.append(", ").append(downurl);
|
||||
sb.append(", ").append(filesize);
|
||||
sb.append(", ").append(applyViewTypePrint);
|
||||
sb.append(", ").append(applyViewTypeOnline);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,344 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class FilesApplyDownloadRecord implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String filesApplyId;
|
||||
private Integer isDirFile;
|
||||
private String synFileId;
|
||||
private String synFilePId;
|
||||
private String synFileName;
|
||||
private String userId;
|
||||
private String userName;
|
||||
private String orgId;
|
||||
private String orgName;
|
||||
private LocalDateTime downloadTime;
|
||||
|
||||
public FilesApplyDownloadRecord() {}
|
||||
|
||||
public FilesApplyDownloadRecord(FilesApplyDownloadRecord value) {
|
||||
this.id = value.id;
|
||||
this.filesApplyId = value.filesApplyId;
|
||||
this.isDirFile = value.isDirFile;
|
||||
this.synFileId = value.synFileId;
|
||||
this.synFilePId = value.synFilePId;
|
||||
this.synFileName = value.synFileName;
|
||||
this.userId = value.userId;
|
||||
this.userName = value.userName;
|
||||
this.orgId = value.orgId;
|
||||
this.orgName = value.orgName;
|
||||
this.downloadTime = value.downloadTime;
|
||||
}
|
||||
|
||||
public FilesApplyDownloadRecord(
|
||||
String id,
|
||||
String filesApplyId,
|
||||
Integer isDirFile,
|
||||
String synFileId,
|
||||
String synFilePId,
|
||||
String synFileName,
|
||||
String userId,
|
||||
String userName,
|
||||
String orgId,
|
||||
String orgName,
|
||||
LocalDateTime downloadTime
|
||||
) {
|
||||
this.id = id;
|
||||
this.filesApplyId = filesApplyId;
|
||||
this.isDirFile = isDirFile;
|
||||
this.synFileId = synFileId;
|
||||
this.synFilePId = synFilePId;
|
||||
this.synFileName = synFileName;
|
||||
this.userId = userId;
|
||||
this.userName = userName;
|
||||
this.orgId = orgId;
|
||||
this.orgName = orgName;
|
||||
this.downloadTime = downloadTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>public.files_apply_download_record.files_apply_id</code>.
|
||||
*/
|
||||
public String getFilesApplyId() {
|
||||
return this.filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>public.files_apply_download_record.files_apply_id</code>.
|
||||
*/
|
||||
public void setFilesApplyId(String filesApplyId) {
|
||||
this.filesApplyId = filesApplyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.is_dir_file</code>.
|
||||
*/
|
||||
public Integer getIsDirFile() {
|
||||
return this.isDirFile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.is_dir_file</code>.
|
||||
*/
|
||||
public void setIsDirFile(Integer isDirFile) {
|
||||
this.isDirFile = isDirFile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.syn_file_id</code>.
|
||||
*/
|
||||
public String getSynFileId() {
|
||||
return this.synFileId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.syn_file_id</code>.
|
||||
*/
|
||||
public void setSynFileId(String synFileId) {
|
||||
this.synFileId = synFileId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.syn_file_p_id</code>.
|
||||
*/
|
||||
public String getSynFilePId() {
|
||||
return this.synFilePId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.syn_file_p_id</code>.
|
||||
*/
|
||||
public void setSynFilePId(String synFilePId) {
|
||||
this.synFilePId = synFilePId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.syn_file_name</code>.
|
||||
*/
|
||||
public String getSynFileName() {
|
||||
return this.synFileName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.syn_file_name</code>.
|
||||
*/
|
||||
public void setSynFileName(String synFileName) {
|
||||
this.synFileName = synFileName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.user_id</code>.
|
||||
*/
|
||||
public String getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.user_id</code>.
|
||||
*/
|
||||
public void setUserId(String userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.user_name</code>.
|
||||
*/
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.user_name</code>.
|
||||
*/
|
||||
public void setUserName(String userName) {
|
||||
this.userName = userName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.org_id</code>.
|
||||
*/
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.org_id</code>.
|
||||
*/
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.org_name</code>.
|
||||
*/
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.org_name</code>.
|
||||
*/
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.files_apply_download_record.download_time</code>.
|
||||
*/
|
||||
public LocalDateTime getDownloadTime() {
|
||||
return this.downloadTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.files_apply_download_record.download_time</code>.
|
||||
*/
|
||||
public void setDownloadTime(LocalDateTime downloadTime) {
|
||||
this.downloadTime = downloadTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final FilesApplyDownloadRecord other = (FilesApplyDownloadRecord) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.filesApplyId == null) {
|
||||
if (other.filesApplyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesApplyId.equals(other.filesApplyId))
|
||||
return false;
|
||||
if (this.isDirFile == null) {
|
||||
if (other.isDirFile != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isDirFile.equals(other.isDirFile))
|
||||
return false;
|
||||
if (this.synFileId == null) {
|
||||
if (other.synFileId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synFileId.equals(other.synFileId))
|
||||
return false;
|
||||
if (this.synFilePId == null) {
|
||||
if (other.synFilePId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synFilePId.equals(other.synFilePId))
|
||||
return false;
|
||||
if (this.synFileName == null) {
|
||||
if (other.synFileName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synFileName.equals(other.synFileName))
|
||||
return false;
|
||||
if (this.userId == null) {
|
||||
if (other.userId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userId.equals(other.userId))
|
||||
return false;
|
||||
if (this.userName == null) {
|
||||
if (other.userName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.userName.equals(other.userName))
|
||||
return false;
|
||||
if (this.orgId == null) {
|
||||
if (other.orgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.orgId.equals(other.orgId))
|
||||
return false;
|
||||
if (this.orgName == null) {
|
||||
if (other.orgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.orgName.equals(other.orgName))
|
||||
return false;
|
||||
if (this.downloadTime == null) {
|
||||
if (other.downloadTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.downloadTime.equals(other.downloadTime))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.filesApplyId == null) ? 0 : this.filesApplyId.hashCode());
|
||||
result = prime * result + ((this.isDirFile == null) ? 0 : this.isDirFile.hashCode());
|
||||
result = prime * result + ((this.synFileId == null) ? 0 : this.synFileId.hashCode());
|
||||
result = prime * result + ((this.synFilePId == null) ? 0 : this.synFilePId.hashCode());
|
||||
result = prime * result + ((this.synFileName == null) ? 0 : this.synFileName.hashCode());
|
||||
result = prime * result + ((this.userId == null) ? 0 : this.userId.hashCode());
|
||||
result = prime * result + ((this.userName == null) ? 0 : this.userName.hashCode());
|
||||
result = prime * result + ((this.orgId == null) ? 0 : this.orgId.hashCode());
|
||||
result = prime * result + ((this.orgName == null) ? 0 : this.orgName.hashCode());
|
||||
result = prime * result + ((this.downloadTime == null) ? 0 : this.downloadTime.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("FilesApplyDownloadRecord (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(filesApplyId);
|
||||
sb.append(", ").append(isDirFile);
|
||||
sb.append(", ").append(synFileId);
|
||||
sb.append(", ").append(synFilePId);
|
||||
sb.append(", ").append(synFileName);
|
||||
sb.append(", ").append(userId);
|
||||
sb.append(", ").append(userName);
|
||||
sb.append(", ").append(orgId);
|
||||
sb.append(", ").append(orgName);
|
||||
sb.append(", ").append(downloadTime);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,159 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Project implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String projectName;
|
||||
private String orgId;
|
||||
private String orgName;
|
||||
|
||||
public Project() {}
|
||||
|
||||
public Project(Project value) {
|
||||
this.id = value.id;
|
||||
this.projectName = value.projectName;
|
||||
this.orgId = value.orgId;
|
||||
this.orgName = value.orgName;
|
||||
}
|
||||
|
||||
public Project(
|
||||
String id,
|
||||
String projectName,
|
||||
String orgId,
|
||||
String orgName
|
||||
) {
|
||||
this.id = id;
|
||||
this.projectName = projectName;
|
||||
this.orgId = orgId;
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.project.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.project.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.project.project_name</code>.
|
||||
*/
|
||||
public String getProjectName() {
|
||||
return this.projectName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.project.project_name</code>.
|
||||
*/
|
||||
public void setProjectName(String projectName) {
|
||||
this.projectName = projectName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.project.org_id</code>.
|
||||
*/
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.project.org_id</code>.
|
||||
*/
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.project.org_name</code>.
|
||||
*/
|
||||
public String getOrgName() {
|
||||
return this.orgName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.project.org_name</code>.
|
||||
*/
|
||||
public void setOrgName(String orgName) {
|
||||
this.orgName = orgName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final Project other = (Project) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.projectName == null) {
|
||||
if (other.projectName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.projectName.equals(other.projectName))
|
||||
return false;
|
||||
if (this.orgId == null) {
|
||||
if (other.orgId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.orgId.equals(other.orgId))
|
||||
return false;
|
||||
if (this.orgName == null) {
|
||||
if (other.orgName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.orgName.equals(other.orgName))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.projectName == null) ? 0 : this.projectName.hashCode());
|
||||
result = prime * result + ((this.orgId == null) ? 0 : this.orgId.hashCode());
|
||||
result = prime * result + ((this.orgName == null) ? 0 : this.orgName.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("Project (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(projectName);
|
||||
sb.append(", ").append(orgId);
|
||||
sb.append(", ").append(orgName);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,394 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* 阅读情况
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ReadLog implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String weid;
|
||||
private String contentId;
|
||||
private LocalDateTime starttime;
|
||||
private LocalDateTime endtime;
|
||||
private String ip;
|
||||
private String location;
|
||||
private Integer downloadtype;
|
||||
private String sign;
|
||||
private String readid;
|
||||
private String sm9hibeid;
|
||||
private Integer contentType;
|
||||
private Integer ischeck;
|
||||
|
||||
public ReadLog() {}
|
||||
|
||||
public ReadLog(ReadLog value) {
|
||||
this.id = value.id;
|
||||
this.weid = value.weid;
|
||||
this.contentId = value.contentId;
|
||||
this.starttime = value.starttime;
|
||||
this.endtime = value.endtime;
|
||||
this.ip = value.ip;
|
||||
this.location = value.location;
|
||||
this.downloadtype = value.downloadtype;
|
||||
this.sign = value.sign;
|
||||
this.readid = value.readid;
|
||||
this.sm9hibeid = value.sm9hibeid;
|
||||
this.contentType = value.contentType;
|
||||
this.ischeck = value.ischeck;
|
||||
}
|
||||
|
||||
public ReadLog(
|
||||
String id,
|
||||
String weid,
|
||||
String contentId,
|
||||
LocalDateTime starttime,
|
||||
LocalDateTime endtime,
|
||||
String ip,
|
||||
String location,
|
||||
Integer downloadtype,
|
||||
String sign,
|
||||
String readid,
|
||||
String sm9hibeid,
|
||||
Integer contentType,
|
||||
Integer ischeck
|
||||
) {
|
||||
this.id = id;
|
||||
this.weid = weid;
|
||||
this.contentId = contentId;
|
||||
this.starttime = starttime;
|
||||
this.endtime = endtime;
|
||||
this.ip = ip;
|
||||
this.location = location;
|
||||
this.downloadtype = downloadtype;
|
||||
this.sign = sign;
|
||||
this.readid = readid;
|
||||
this.sm9hibeid = sm9hibeid;
|
||||
this.contentType = contentType;
|
||||
this.ischeck = ischeck;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.weid</code>. 申请人id
|
||||
*/
|
||||
public String getWeid() {
|
||||
return this.weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.weid</code>. 申请人id
|
||||
*/
|
||||
public void setWeid(String weid) {
|
||||
this.weid = weid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.content_id</code>. 档案id
|
||||
*/
|
||||
public String getContentId() {
|
||||
return this.contentId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.content_id</code>. 档案id
|
||||
*/
|
||||
public void setContentId(String contentId) {
|
||||
this.contentId = contentId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.starttime</code>. 开始时间
|
||||
*/
|
||||
public LocalDateTime getStarttime() {
|
||||
return this.starttime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.starttime</code>. 开始时间
|
||||
*/
|
||||
public void setStarttime(LocalDateTime starttime) {
|
||||
this.starttime = starttime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.endtime</code>. 结束时间
|
||||
*/
|
||||
public LocalDateTime getEndtime() {
|
||||
return this.endtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.endtime</code>. 结束时间
|
||||
*/
|
||||
public void setEndtime(LocalDateTime endtime) {
|
||||
this.endtime = endtime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.ip</code>. ip地址
|
||||
*/
|
||||
public String getIp() {
|
||||
return this.ip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.ip</code>. ip地址
|
||||
*/
|
||||
public void setIp(String ip) {
|
||||
this.ip = ip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.location</code>. 区域
|
||||
*/
|
||||
public String getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.location</code>. 区域
|
||||
*/
|
||||
public void setLocation(String location) {
|
||||
this.location = location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.downloadtype</code>. 下载类型(1文件包/0单文件)
|
||||
*/
|
||||
public Integer getDownloadtype() {
|
||||
return this.downloadtype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.downloadtype</code>. 下载类型(1文件包/0单文件)
|
||||
*/
|
||||
public void setDownloadtype(Integer downloadtype) {
|
||||
this.downloadtype = downloadtype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.sign</code>. 数字签名
|
||||
*/
|
||||
public String getSign() {
|
||||
return this.sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.sign</code>. 数字签名
|
||||
*/
|
||||
public void setSign(String sign) {
|
||||
this.sign = sign;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.readid</code>. 一次阅读凭证id
|
||||
*/
|
||||
public String getReadid() {
|
||||
return this.readid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.readid</code>. 一次阅读凭证id
|
||||
*/
|
||||
public void setReadid(String readid) {
|
||||
this.readid = readid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.sm9hibeid</code>. 秘钥id
|
||||
*/
|
||||
public String getSm9hibeid() {
|
||||
return this.sm9hibeid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.sm9hibeid</code>. 秘钥id
|
||||
*/
|
||||
public void setSm9hibeid(String sm9hibeid) {
|
||||
this.sm9hibeid = sm9hibeid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.content_type</code>. 档案类型
|
||||
*/
|
||||
public Integer getContentType() {
|
||||
return this.contentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.content_type</code>. 档案类型
|
||||
*/
|
||||
public void setContentType(Integer contentType) {
|
||||
this.contentType = contentType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.read_log.ischeck</code>. 是否上链(1是,0否)
|
||||
*/
|
||||
public Integer getIscheck() {
|
||||
return this.ischeck;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.read_log.ischeck</code>. 是否上链(1是,0否)
|
||||
*/
|
||||
public void setIscheck(Integer ischeck) {
|
||||
this.ischeck = ischeck;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final ReadLog other = (ReadLog) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.weid == null) {
|
||||
if (other.weid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.weid.equals(other.weid))
|
||||
return false;
|
||||
if (this.contentId == null) {
|
||||
if (other.contentId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.contentId.equals(other.contentId))
|
||||
return false;
|
||||
if (this.starttime == null) {
|
||||
if (other.starttime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.starttime.equals(other.starttime))
|
||||
return false;
|
||||
if (this.endtime == null) {
|
||||
if (other.endtime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.endtime.equals(other.endtime))
|
||||
return false;
|
||||
if (this.ip == null) {
|
||||
if (other.ip != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.ip.equals(other.ip))
|
||||
return false;
|
||||
if (this.location == null) {
|
||||
if (other.location != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.location.equals(other.location))
|
||||
return false;
|
||||
if (this.downloadtype == null) {
|
||||
if (other.downloadtype != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.downloadtype.equals(other.downloadtype))
|
||||
return false;
|
||||
if (this.sign == null) {
|
||||
if (other.sign != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sign.equals(other.sign))
|
||||
return false;
|
||||
if (this.readid == null) {
|
||||
if (other.readid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.readid.equals(other.readid))
|
||||
return false;
|
||||
if (this.sm9hibeid == null) {
|
||||
if (other.sm9hibeid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sm9hibeid.equals(other.sm9hibeid))
|
||||
return false;
|
||||
if (this.contentType == null) {
|
||||
if (other.contentType != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.contentType.equals(other.contentType))
|
||||
return false;
|
||||
if (this.ischeck == null) {
|
||||
if (other.ischeck != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.ischeck.equals(other.ischeck))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.weid == null) ? 0 : this.weid.hashCode());
|
||||
result = prime * result + ((this.contentId == null) ? 0 : this.contentId.hashCode());
|
||||
result = prime * result + ((this.starttime == null) ? 0 : this.starttime.hashCode());
|
||||
result = prime * result + ((this.endtime == null) ? 0 : this.endtime.hashCode());
|
||||
result = prime * result + ((this.ip == null) ? 0 : this.ip.hashCode());
|
||||
result = prime * result + ((this.location == null) ? 0 : this.location.hashCode());
|
||||
result = prime * result + ((this.downloadtype == null) ? 0 : this.downloadtype.hashCode());
|
||||
result = prime * result + ((this.sign == null) ? 0 : this.sign.hashCode());
|
||||
result = prime * result + ((this.readid == null) ? 0 : this.readid.hashCode());
|
||||
result = prime * result + ((this.sm9hibeid == null) ? 0 : this.sm9hibeid.hashCode());
|
||||
result = prime * result + ((this.contentType == null) ? 0 : this.contentType.hashCode());
|
||||
result = prime * result + ((this.ischeck == null) ? 0 : this.ischeck.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("ReadLog (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(weid);
|
||||
sb.append(", ").append(contentId);
|
||||
sb.append(", ").append(starttime);
|
||||
sb.append(", ").append(endtime);
|
||||
sb.append(", ").append(ip);
|
||||
sb.append(", ").append(location);
|
||||
sb.append(", ").append(downloadtype);
|
||||
sb.append(", ").append(sign);
|
||||
sb.append(", ").append(readid);
|
||||
sb.append(", ").append(sm9hibeid);
|
||||
sb.append(", ").append(contentType);
|
||||
sb.append(", ").append(ischeck);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,211 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SharedRuleConfig implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String name;
|
||||
private String describe;
|
||||
private Integer status;
|
||||
private Integer sort;
|
||||
private String projectName;
|
||||
|
||||
public SharedRuleConfig() {}
|
||||
|
||||
public SharedRuleConfig(SharedRuleConfig value) {
|
||||
this.id = value.id;
|
||||
this.name = value.name;
|
||||
this.describe = value.describe;
|
||||
this.status = value.status;
|
||||
this.sort = value.sort;
|
||||
this.projectName = value.projectName;
|
||||
}
|
||||
|
||||
public SharedRuleConfig(
|
||||
String id,
|
||||
String name,
|
||||
String describe,
|
||||
Integer status,
|
||||
Integer sort,
|
||||
String projectName
|
||||
) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.describe = describe;
|
||||
this.status = status;
|
||||
this.sort = sort;
|
||||
this.projectName = projectName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_rule_config.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_rule_config.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_rule_config.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_rule_config.name</code>.
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_rule_config.describe</code>.
|
||||
*/
|
||||
public String getDescribe() {
|
||||
return this.describe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_rule_config.describe</code>.
|
||||
*/
|
||||
public void setDescribe(String describe) {
|
||||
this.describe = describe;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_rule_config.status</code>.
|
||||
*/
|
||||
public Integer getStatus() {
|
||||
return this.status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_rule_config.status</code>.
|
||||
*/
|
||||
public void setStatus(Integer status) {
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_rule_config.sort</code>.
|
||||
*/
|
||||
public Integer getSort() {
|
||||
return this.sort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_rule_config.sort</code>.
|
||||
*/
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_rule_config.project_name</code>.
|
||||
*/
|
||||
public String getProjectName() {
|
||||
return this.projectName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_rule_config.project_name</code>.
|
||||
*/
|
||||
public void setProjectName(String projectName) {
|
||||
this.projectName = projectName;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SharedRuleConfig other = (SharedRuleConfig) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.name == null) {
|
||||
if (other.name != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.name.equals(other.name))
|
||||
return false;
|
||||
if (this.describe == null) {
|
||||
if (other.describe != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.describe.equals(other.describe))
|
||||
return false;
|
||||
if (this.status == null) {
|
||||
if (other.status != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.status.equals(other.status))
|
||||
return false;
|
||||
if (this.sort == null) {
|
||||
if (other.sort != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sort.equals(other.sort))
|
||||
return false;
|
||||
if (this.projectName == null) {
|
||||
if (other.projectName != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.projectName.equals(other.projectName))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
|
||||
result = prime * result + ((this.describe == null) ? 0 : this.describe.hashCode());
|
||||
result = prime * result + ((this.status == null) ? 0 : this.status.hashCode());
|
||||
result = prime * result + ((this.sort == null) ? 0 : this.sort.hashCode());
|
||||
result = prime * result + ((this.projectName == null) ? 0 : this.projectName.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SharedRuleConfig (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(name);
|
||||
sb.append(", ").append(describe);
|
||||
sb.append(", ").append(status);
|
||||
sb.append(", ").append(sort);
|
||||
sb.append(", ").append(projectName);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,289 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SharedSynAll implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String synId;
|
||||
private Integer synType;
|
||||
private Integer isConfigRule;
|
||||
private Integer sharedStatus;
|
||||
private Integer synStatus;
|
||||
private String blockNumber;
|
||||
private String blockHash;
|
||||
private String blockTime;
|
||||
|
||||
public SharedSynAll() {}
|
||||
|
||||
public SharedSynAll(SharedSynAll value) {
|
||||
this.id = value.id;
|
||||
this.synId = value.synId;
|
||||
this.synType = value.synType;
|
||||
this.isConfigRule = value.isConfigRule;
|
||||
this.sharedStatus = value.sharedStatus;
|
||||
this.synStatus = value.synStatus;
|
||||
this.blockNumber = value.blockNumber;
|
||||
this.blockHash = value.blockHash;
|
||||
this.blockTime = value.blockTime;
|
||||
}
|
||||
|
||||
public SharedSynAll(
|
||||
String id,
|
||||
String synId,
|
||||
Integer synType,
|
||||
Integer isConfigRule,
|
||||
Integer sharedStatus,
|
||||
Integer synStatus,
|
||||
String blockNumber,
|
||||
String blockHash,
|
||||
String blockTime
|
||||
) {
|
||||
this.id = id;
|
||||
this.synId = synId;
|
||||
this.synType = synType;
|
||||
this.isConfigRule = isConfigRule;
|
||||
this.sharedStatus = sharedStatus;
|
||||
this.synStatus = synStatus;
|
||||
this.blockNumber = blockNumber;
|
||||
this.blockHash = blockHash;
|
||||
this.blockTime = blockTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.syn_id</code>.
|
||||
*/
|
||||
public String getSynId() {
|
||||
return this.synId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.syn_id</code>.
|
||||
*/
|
||||
public void setSynId(String synId) {
|
||||
this.synId = synId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.syn_type</code>.
|
||||
*/
|
||||
public Integer getSynType() {
|
||||
return this.synType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.syn_type</code>.
|
||||
*/
|
||||
public void setSynType(Integer synType) {
|
||||
this.synType = synType;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.is_config_rule</code>.
|
||||
*/
|
||||
public Integer getIsConfigRule() {
|
||||
return this.isConfigRule;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.is_config_rule</code>.
|
||||
*/
|
||||
public void setIsConfigRule(Integer isConfigRule) {
|
||||
this.isConfigRule = isConfigRule;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.shared_status</code>.
|
||||
*/
|
||||
public Integer getSharedStatus() {
|
||||
return this.sharedStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.shared_status</code>.
|
||||
*/
|
||||
public void setSharedStatus(Integer sharedStatus) {
|
||||
this.sharedStatus = sharedStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.syn_status</code>.
|
||||
*/
|
||||
public Integer getSynStatus() {
|
||||
return this.synStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.syn_status</code>.
|
||||
*/
|
||||
public void setSynStatus(Integer synStatus) {
|
||||
this.synStatus = synStatus;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.block_number</code>.
|
||||
*/
|
||||
public String getBlockNumber() {
|
||||
return this.blockNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.block_number</code>.
|
||||
*/
|
||||
public void setBlockNumber(String blockNumber) {
|
||||
this.blockNumber = blockNumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.block_hash</code>.
|
||||
*/
|
||||
public String getBlockHash() {
|
||||
return this.blockHash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.block_hash</code>.
|
||||
*/
|
||||
public void setBlockHash(String blockHash) {
|
||||
this.blockHash = blockHash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.shared_syn_all.block_time</code>.
|
||||
*/
|
||||
public String getBlockTime() {
|
||||
return this.blockTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.shared_syn_all.block_time</code>.
|
||||
*/
|
||||
public void setBlockTime(String blockTime) {
|
||||
this.blockTime = blockTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SharedSynAll other = (SharedSynAll) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.synId == null) {
|
||||
if (other.synId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synId.equals(other.synId))
|
||||
return false;
|
||||
if (this.synType == null) {
|
||||
if (other.synType != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synType.equals(other.synType))
|
||||
return false;
|
||||
if (this.isConfigRule == null) {
|
||||
if (other.isConfigRule != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isConfigRule.equals(other.isConfigRule))
|
||||
return false;
|
||||
if (this.sharedStatus == null) {
|
||||
if (other.sharedStatus != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sharedStatus.equals(other.sharedStatus))
|
||||
return false;
|
||||
if (this.synStatus == null) {
|
||||
if (other.synStatus != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.synStatus.equals(other.synStatus))
|
||||
return false;
|
||||
if (this.blockNumber == null) {
|
||||
if (other.blockNumber != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.blockNumber.equals(other.blockNumber))
|
||||
return false;
|
||||
if (this.blockHash == null) {
|
||||
if (other.blockHash != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.blockHash.equals(other.blockHash))
|
||||
return false;
|
||||
if (this.blockTime == null) {
|
||||
if (other.blockTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.blockTime.equals(other.blockTime))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.synId == null) ? 0 : this.synId.hashCode());
|
||||
result = prime * result + ((this.synType == null) ? 0 : this.synType.hashCode());
|
||||
result = prime * result + ((this.isConfigRule == null) ? 0 : this.isConfigRule.hashCode());
|
||||
result = prime * result + ((this.sharedStatus == null) ? 0 : this.sharedStatus.hashCode());
|
||||
result = prime * result + ((this.synStatus == null) ? 0 : this.synStatus.hashCode());
|
||||
result = prime * result + ((this.blockNumber == null) ? 0 : this.blockNumber.hashCode());
|
||||
result = prime * result + ((this.blockHash == null) ? 0 : this.blockHash.hashCode());
|
||||
result = prime * result + ((this.blockTime == null) ? 0 : this.blockTime.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SharedSynAll (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(synId);
|
||||
sb.append(", ").append(synType);
|
||||
sb.append(", ").append(isConfigRule);
|
||||
sb.append(", ").append(sharedStatus);
|
||||
sb.append(", ").append(synStatus);
|
||||
sb.append(", ").append(blockNumber);
|
||||
sb.append(", ").append(blockHash);
|
||||
sb.append(", ").append(blockTime);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,263 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SynDirectory implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String pId;
|
||||
private String wbsId;
|
||||
private String timeStamp;
|
||||
private Integer sortorder;
|
||||
private String tname;
|
||||
private Integer subjoin;
|
||||
private Integer isdel;
|
||||
|
||||
public SynDirectory() {}
|
||||
|
||||
public SynDirectory(SynDirectory value) {
|
||||
this.id = value.id;
|
||||
this.pId = value.pId;
|
||||
this.wbsId = value.wbsId;
|
||||
this.timeStamp = value.timeStamp;
|
||||
this.sortorder = value.sortorder;
|
||||
this.tname = value.tname;
|
||||
this.subjoin = value.subjoin;
|
||||
this.isdel = value.isdel;
|
||||
}
|
||||
|
||||
public SynDirectory(
|
||||
String id,
|
||||
String pId,
|
||||
String wbsId,
|
||||
String timeStamp,
|
||||
Integer sortorder,
|
||||
String tname,
|
||||
Integer subjoin,
|
||||
Integer isdel
|
||||
) {
|
||||
this.id = id;
|
||||
this.pId = pId;
|
||||
this.wbsId = wbsId;
|
||||
this.timeStamp = timeStamp;
|
||||
this.sortorder = sortorder;
|
||||
this.tname = tname;
|
||||
this.subjoin = subjoin;
|
||||
this.isdel = isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.p_id</code>.
|
||||
*/
|
||||
public String getPId() {
|
||||
return this.pId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.p_id</code>.
|
||||
*/
|
||||
public void setPId(String pId) {
|
||||
this.pId = pId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.wbs_id</code>.
|
||||
*/
|
||||
public String getWbsId() {
|
||||
return this.wbsId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.wbs_id</code>.
|
||||
*/
|
||||
public void setWbsId(String wbsId) {
|
||||
this.wbsId = wbsId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.time_stamp</code>.
|
||||
*/
|
||||
public String getTimeStamp() {
|
||||
return this.timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.time_stamp</code>.
|
||||
*/
|
||||
public void setTimeStamp(String timeStamp) {
|
||||
this.timeStamp = timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.sortorder</code>.
|
||||
*/
|
||||
public Integer getSortorder() {
|
||||
return this.sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.sortorder</code>.
|
||||
*/
|
||||
public void setSortorder(Integer sortorder) {
|
||||
this.sortorder = sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.tname</code>.
|
||||
*/
|
||||
public String getTname() {
|
||||
return this.tname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.tname</code>.
|
||||
*/
|
||||
public void setTname(String tname) {
|
||||
this.tname = tname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.subjoin</code>.
|
||||
*/
|
||||
public Integer getSubjoin() {
|
||||
return this.subjoin;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.subjoin</code>.
|
||||
*/
|
||||
public void setSubjoin(Integer subjoin) {
|
||||
this.subjoin = subjoin;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory.isdel</code>.
|
||||
*/
|
||||
public Integer getIsdel() {
|
||||
return this.isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory.isdel</code>.
|
||||
*/
|
||||
public void setIsdel(Integer isdel) {
|
||||
this.isdel = isdel;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SynDirectory other = (SynDirectory) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.pId == null) {
|
||||
if (other.pId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.pId.equals(other.pId))
|
||||
return false;
|
||||
if (this.wbsId == null) {
|
||||
if (other.wbsId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.wbsId.equals(other.wbsId))
|
||||
return false;
|
||||
if (this.timeStamp == null) {
|
||||
if (other.timeStamp != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.timeStamp.equals(other.timeStamp))
|
||||
return false;
|
||||
if (this.sortorder == null) {
|
||||
if (other.sortorder != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sortorder.equals(other.sortorder))
|
||||
return false;
|
||||
if (this.tname == null) {
|
||||
if (other.tname != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.tname.equals(other.tname))
|
||||
return false;
|
||||
if (this.subjoin == null) {
|
||||
if (other.subjoin != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.subjoin.equals(other.subjoin))
|
||||
return false;
|
||||
if (this.isdel == null) {
|
||||
if (other.isdel != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isdel.equals(other.isdel))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.pId == null) ? 0 : this.pId.hashCode());
|
||||
result = prime * result + ((this.wbsId == null) ? 0 : this.wbsId.hashCode());
|
||||
result = prime * result + ((this.timeStamp == null) ? 0 : this.timeStamp.hashCode());
|
||||
result = prime * result + ((this.sortorder == null) ? 0 : this.sortorder.hashCode());
|
||||
result = prime * result + ((this.tname == null) ? 0 : this.tname.hashCode());
|
||||
result = prime * result + ((this.subjoin == null) ? 0 : this.subjoin.hashCode());
|
||||
result = prime * result + ((this.isdel == null) ? 0 : this.isdel.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SynDirectory (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(pId);
|
||||
sb.append(", ").append(wbsId);
|
||||
sb.append(", ").append(timeStamp);
|
||||
sb.append(", ").append(sortorder);
|
||||
sb.append(", ").append(tname);
|
||||
sb.append(", ").append(subjoin);
|
||||
sb.append(", ").append(isdel);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,601 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SynDirectoryFile implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String pId;
|
||||
private String filesuper;
|
||||
private Integer filecount;
|
||||
private String dutyperson;
|
||||
private String eweavedate;
|
||||
private Integer filepage;
|
||||
private String sortorder;
|
||||
private String bpeg;
|
||||
private String epeg;
|
||||
private String filenum;
|
||||
private String remark;
|
||||
private String recordnum;
|
||||
private String piecenumber;
|
||||
private String adddate;
|
||||
private String editdate;
|
||||
private String timeStamp;
|
||||
private Integer isdel;
|
||||
private String catalogpdfurl;
|
||||
private String signtag;
|
||||
private String collecttag;
|
||||
|
||||
public SynDirectoryFile() {}
|
||||
|
||||
public SynDirectoryFile(SynDirectoryFile value) {
|
||||
this.id = value.id;
|
||||
this.pId = value.pId;
|
||||
this.filesuper = value.filesuper;
|
||||
this.filecount = value.filecount;
|
||||
this.dutyperson = value.dutyperson;
|
||||
this.eweavedate = value.eweavedate;
|
||||
this.filepage = value.filepage;
|
||||
this.sortorder = value.sortorder;
|
||||
this.bpeg = value.bpeg;
|
||||
this.epeg = value.epeg;
|
||||
this.filenum = value.filenum;
|
||||
this.remark = value.remark;
|
||||
this.recordnum = value.recordnum;
|
||||
this.piecenumber = value.piecenumber;
|
||||
this.adddate = value.adddate;
|
||||
this.editdate = value.editdate;
|
||||
this.timeStamp = value.timeStamp;
|
||||
this.isdel = value.isdel;
|
||||
this.catalogpdfurl = value.catalogpdfurl;
|
||||
this.signtag = value.signtag;
|
||||
this.collecttag = value.collecttag;
|
||||
}
|
||||
|
||||
public SynDirectoryFile(
|
||||
String id,
|
||||
String pId,
|
||||
String filesuper,
|
||||
Integer filecount,
|
||||
String dutyperson,
|
||||
String eweavedate,
|
||||
Integer filepage,
|
||||
String sortorder,
|
||||
String bpeg,
|
||||
String epeg,
|
||||
String filenum,
|
||||
String remark,
|
||||
String recordnum,
|
||||
String piecenumber,
|
||||
String adddate,
|
||||
String editdate,
|
||||
String timeStamp,
|
||||
Integer isdel,
|
||||
String catalogpdfurl,
|
||||
String signtag,
|
||||
String collecttag
|
||||
) {
|
||||
this.id = id;
|
||||
this.pId = pId;
|
||||
this.filesuper = filesuper;
|
||||
this.filecount = filecount;
|
||||
this.dutyperson = dutyperson;
|
||||
this.eweavedate = eweavedate;
|
||||
this.filepage = filepage;
|
||||
this.sortorder = sortorder;
|
||||
this.bpeg = bpeg;
|
||||
this.epeg = epeg;
|
||||
this.filenum = filenum;
|
||||
this.remark = remark;
|
||||
this.recordnum = recordnum;
|
||||
this.piecenumber = piecenumber;
|
||||
this.adddate = adddate;
|
||||
this.editdate = editdate;
|
||||
this.timeStamp = timeStamp;
|
||||
this.isdel = isdel;
|
||||
this.catalogpdfurl = catalogpdfurl;
|
||||
this.signtag = signtag;
|
||||
this.collecttag = collecttag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.p_id</code>.
|
||||
*/
|
||||
public String getPId() {
|
||||
return this.pId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.p_id</code>.
|
||||
*/
|
||||
public void setPId(String pId) {
|
||||
this.pId = pId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.filesuper</code>.
|
||||
*/
|
||||
public String getFilesuper() {
|
||||
return this.filesuper;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.filesuper</code>.
|
||||
*/
|
||||
public void setFilesuper(String filesuper) {
|
||||
this.filesuper = filesuper;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.filecount</code>.
|
||||
*/
|
||||
public Integer getFilecount() {
|
||||
return this.filecount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.filecount</code>.
|
||||
*/
|
||||
public void setFilecount(Integer filecount) {
|
||||
this.filecount = filecount;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.dutyperson</code>.
|
||||
*/
|
||||
public String getDutyperson() {
|
||||
return this.dutyperson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.dutyperson</code>.
|
||||
*/
|
||||
public void setDutyperson(String dutyperson) {
|
||||
this.dutyperson = dutyperson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.eweavedate</code>.
|
||||
*/
|
||||
public String getEweavedate() {
|
||||
return this.eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.eweavedate</code>.
|
||||
*/
|
||||
public void setEweavedate(String eweavedate) {
|
||||
this.eweavedate = eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.filepage</code>.
|
||||
*/
|
||||
public Integer getFilepage() {
|
||||
return this.filepage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.filepage</code>.
|
||||
*/
|
||||
public void setFilepage(Integer filepage) {
|
||||
this.filepage = filepage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.sortorder</code>.
|
||||
*/
|
||||
public String getSortorder() {
|
||||
return this.sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.sortorder</code>.
|
||||
*/
|
||||
public void setSortorder(String sortorder) {
|
||||
this.sortorder = sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.bpeg</code>.
|
||||
*/
|
||||
public String getBpeg() {
|
||||
return this.bpeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.bpeg</code>.
|
||||
*/
|
||||
public void setBpeg(String bpeg) {
|
||||
this.bpeg = bpeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.epeg</code>.
|
||||
*/
|
||||
public String getEpeg() {
|
||||
return this.epeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.epeg</code>.
|
||||
*/
|
||||
public void setEpeg(String epeg) {
|
||||
this.epeg = epeg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.filenum</code>.
|
||||
*/
|
||||
public String getFilenum() {
|
||||
return this.filenum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.filenum</code>.
|
||||
*/
|
||||
public void setFilenum(String filenum) {
|
||||
this.filenum = filenum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.remark</code>.
|
||||
*/
|
||||
public String getRemark() {
|
||||
return this.remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.remark</code>.
|
||||
*/
|
||||
public void setRemark(String remark) {
|
||||
this.remark = remark;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.recordnum</code>.
|
||||
*/
|
||||
public String getRecordnum() {
|
||||
return this.recordnum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.recordnum</code>.
|
||||
*/
|
||||
public void setRecordnum(String recordnum) {
|
||||
this.recordnum = recordnum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.piecenumber</code>.
|
||||
*/
|
||||
public String getPiecenumber() {
|
||||
return this.piecenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.piecenumber</code>.
|
||||
*/
|
||||
public void setPiecenumber(String piecenumber) {
|
||||
this.piecenumber = piecenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.adddate</code>.
|
||||
*/
|
||||
public String getAdddate() {
|
||||
return this.adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.adddate</code>.
|
||||
*/
|
||||
public void setAdddate(String adddate) {
|
||||
this.adddate = adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.editdate</code>.
|
||||
*/
|
||||
public String getEditdate() {
|
||||
return this.editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.editdate</code>.
|
||||
*/
|
||||
public void setEditdate(String editdate) {
|
||||
this.editdate = editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.time_stamp</code>.
|
||||
*/
|
||||
public String getTimeStamp() {
|
||||
return this.timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.time_stamp</code>.
|
||||
*/
|
||||
public void setTimeStamp(String timeStamp) {
|
||||
this.timeStamp = timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.isdel</code>.
|
||||
*/
|
||||
public Integer getIsdel() {
|
||||
return this.isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.isdel</code>.
|
||||
*/
|
||||
public void setIsdel(Integer isdel) {
|
||||
this.isdel = isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.catalogpdfurl</code>.
|
||||
*/
|
||||
public String getCatalogpdfurl() {
|
||||
return this.catalogpdfurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.catalogpdfurl</code>.
|
||||
*/
|
||||
public void setCatalogpdfurl(String catalogpdfurl) {
|
||||
this.catalogpdfurl = catalogpdfurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.signtag</code>.
|
||||
*/
|
||||
public String getSigntag() {
|
||||
return this.signtag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.signtag</code>.
|
||||
*/
|
||||
public void setSigntag(String signtag) {
|
||||
this.signtag = signtag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_directory_file.collecttag</code>.
|
||||
*/
|
||||
public String getCollecttag() {
|
||||
return this.collecttag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_directory_file.collecttag</code>.
|
||||
*/
|
||||
public void setCollecttag(String collecttag) {
|
||||
this.collecttag = collecttag;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SynDirectoryFile other = (SynDirectoryFile) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.pId == null) {
|
||||
if (other.pId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.pId.equals(other.pId))
|
||||
return false;
|
||||
if (this.filesuper == null) {
|
||||
if (other.filesuper != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesuper.equals(other.filesuper))
|
||||
return false;
|
||||
if (this.filecount == null) {
|
||||
if (other.filecount != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filecount.equals(other.filecount))
|
||||
return false;
|
||||
if (this.dutyperson == null) {
|
||||
if (other.dutyperson != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.dutyperson.equals(other.dutyperson))
|
||||
return false;
|
||||
if (this.eweavedate == null) {
|
||||
if (other.eweavedate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.eweavedate.equals(other.eweavedate))
|
||||
return false;
|
||||
if (this.filepage == null) {
|
||||
if (other.filepage != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filepage.equals(other.filepage))
|
||||
return false;
|
||||
if (this.sortorder == null) {
|
||||
if (other.sortorder != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sortorder.equals(other.sortorder))
|
||||
return false;
|
||||
if (this.bpeg == null) {
|
||||
if (other.bpeg != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.bpeg.equals(other.bpeg))
|
||||
return false;
|
||||
if (this.epeg == null) {
|
||||
if (other.epeg != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.epeg.equals(other.epeg))
|
||||
return false;
|
||||
if (this.filenum == null) {
|
||||
if (other.filenum != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filenum.equals(other.filenum))
|
||||
return false;
|
||||
if (this.remark == null) {
|
||||
if (other.remark != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.remark.equals(other.remark))
|
||||
return false;
|
||||
if (this.recordnum == null) {
|
||||
if (other.recordnum != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.recordnum.equals(other.recordnum))
|
||||
return false;
|
||||
if (this.piecenumber == null) {
|
||||
if (other.piecenumber != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.piecenumber.equals(other.piecenumber))
|
||||
return false;
|
||||
if (this.adddate == null) {
|
||||
if (other.adddate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.adddate.equals(other.adddate))
|
||||
return false;
|
||||
if (this.editdate == null) {
|
||||
if (other.editdate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.editdate.equals(other.editdate))
|
||||
return false;
|
||||
if (this.timeStamp == null) {
|
||||
if (other.timeStamp != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.timeStamp.equals(other.timeStamp))
|
||||
return false;
|
||||
if (this.isdel == null) {
|
||||
if (other.isdel != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isdel.equals(other.isdel))
|
||||
return false;
|
||||
if (this.catalogpdfurl == null) {
|
||||
if (other.catalogpdfurl != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.catalogpdfurl.equals(other.catalogpdfurl))
|
||||
return false;
|
||||
if (this.signtag == null) {
|
||||
if (other.signtag != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.signtag.equals(other.signtag))
|
||||
return false;
|
||||
if (this.collecttag == null) {
|
||||
if (other.collecttag != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.collecttag.equals(other.collecttag))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.pId == null) ? 0 : this.pId.hashCode());
|
||||
result = prime * result + ((this.filesuper == null) ? 0 : this.filesuper.hashCode());
|
||||
result = prime * result + ((this.filecount == null) ? 0 : this.filecount.hashCode());
|
||||
result = prime * result + ((this.dutyperson == null) ? 0 : this.dutyperson.hashCode());
|
||||
result = prime * result + ((this.eweavedate == null) ? 0 : this.eweavedate.hashCode());
|
||||
result = prime * result + ((this.filepage == null) ? 0 : this.filepage.hashCode());
|
||||
result = prime * result + ((this.sortorder == null) ? 0 : this.sortorder.hashCode());
|
||||
result = prime * result + ((this.bpeg == null) ? 0 : this.bpeg.hashCode());
|
||||
result = prime * result + ((this.epeg == null) ? 0 : this.epeg.hashCode());
|
||||
result = prime * result + ((this.filenum == null) ? 0 : this.filenum.hashCode());
|
||||
result = prime * result + ((this.remark == null) ? 0 : this.remark.hashCode());
|
||||
result = prime * result + ((this.recordnum == null) ? 0 : this.recordnum.hashCode());
|
||||
result = prime * result + ((this.piecenumber == null) ? 0 : this.piecenumber.hashCode());
|
||||
result = prime * result + ((this.adddate == null) ? 0 : this.adddate.hashCode());
|
||||
result = prime * result + ((this.editdate == null) ? 0 : this.editdate.hashCode());
|
||||
result = prime * result + ((this.timeStamp == null) ? 0 : this.timeStamp.hashCode());
|
||||
result = prime * result + ((this.isdel == null) ? 0 : this.isdel.hashCode());
|
||||
result = prime * result + ((this.catalogpdfurl == null) ? 0 : this.catalogpdfurl.hashCode());
|
||||
result = prime * result + ((this.signtag == null) ? 0 : this.signtag.hashCode());
|
||||
result = prime * result + ((this.collecttag == null) ? 0 : this.collecttag.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SynDirectoryFile (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(pId);
|
||||
sb.append(", ").append(filesuper);
|
||||
sb.append(", ").append(filecount);
|
||||
sb.append(", ").append(dutyperson);
|
||||
sb.append(", ").append(eweavedate);
|
||||
sb.append(", ").append(filepage);
|
||||
sb.append(", ").append(sortorder);
|
||||
sb.append(", ").append(bpeg);
|
||||
sb.append(", ").append(epeg);
|
||||
sb.append(", ").append(filenum);
|
||||
sb.append(", ").append(remark);
|
||||
sb.append(", ").append(recordnum);
|
||||
sb.append(", ").append(piecenumber);
|
||||
sb.append(", ").append(adddate);
|
||||
sb.append(", ").append(editdate);
|
||||
sb.append(", ").append(timeStamp);
|
||||
sb.append(", ").append(isdel);
|
||||
sb.append(", ").append(catalogpdfurl);
|
||||
sb.append(", ").append(signtag);
|
||||
sb.append(", ").append(collecttag);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,497 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SynFile implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String pId;
|
||||
private String tablenumber;
|
||||
private String annexname;
|
||||
private String projectname;
|
||||
private String eweavedate;
|
||||
private String checkdate;
|
||||
private Integer annexpage;
|
||||
private String sortorder;
|
||||
private String filefrom;
|
||||
private String archivestag;
|
||||
private String adddate;
|
||||
private String editdate;
|
||||
private String timeStamp;
|
||||
private Integer isdel;
|
||||
private String downurl;
|
||||
private Integer filesize;
|
||||
|
||||
public SynFile() {}
|
||||
|
||||
public SynFile(SynFile value) {
|
||||
this.id = value.id;
|
||||
this.pId = value.pId;
|
||||
this.tablenumber = value.tablenumber;
|
||||
this.annexname = value.annexname;
|
||||
this.projectname = value.projectname;
|
||||
this.eweavedate = value.eweavedate;
|
||||
this.checkdate = value.checkdate;
|
||||
this.annexpage = value.annexpage;
|
||||
this.sortorder = value.sortorder;
|
||||
this.filefrom = value.filefrom;
|
||||
this.archivestag = value.archivestag;
|
||||
this.adddate = value.adddate;
|
||||
this.editdate = value.editdate;
|
||||
this.timeStamp = value.timeStamp;
|
||||
this.isdel = value.isdel;
|
||||
this.downurl = value.downurl;
|
||||
this.filesize = value.filesize;
|
||||
}
|
||||
|
||||
public SynFile(
|
||||
String id,
|
||||
String pId,
|
||||
String tablenumber,
|
||||
String annexname,
|
||||
String projectname,
|
||||
String eweavedate,
|
||||
String checkdate,
|
||||
Integer annexpage,
|
||||
String sortorder,
|
||||
String filefrom,
|
||||
String archivestag,
|
||||
String adddate,
|
||||
String editdate,
|
||||
String timeStamp,
|
||||
Integer isdel,
|
||||
String downurl,
|
||||
Integer filesize
|
||||
) {
|
||||
this.id = id;
|
||||
this.pId = pId;
|
||||
this.tablenumber = tablenumber;
|
||||
this.annexname = annexname;
|
||||
this.projectname = projectname;
|
||||
this.eweavedate = eweavedate;
|
||||
this.checkdate = checkdate;
|
||||
this.annexpage = annexpage;
|
||||
this.sortorder = sortorder;
|
||||
this.filefrom = filefrom;
|
||||
this.archivestag = archivestag;
|
||||
this.adddate = adddate;
|
||||
this.editdate = editdate;
|
||||
this.timeStamp = timeStamp;
|
||||
this.isdel = isdel;
|
||||
this.downurl = downurl;
|
||||
this.filesize = filesize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.p_id</code>.
|
||||
*/
|
||||
public String getPId() {
|
||||
return this.pId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.p_id</code>.
|
||||
*/
|
||||
public void setPId(String pId) {
|
||||
this.pId = pId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.tablenumber</code>.
|
||||
*/
|
||||
public String getTablenumber() {
|
||||
return this.tablenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.tablenumber</code>.
|
||||
*/
|
||||
public void setTablenumber(String tablenumber) {
|
||||
this.tablenumber = tablenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.annexname</code>.
|
||||
*/
|
||||
public String getAnnexname() {
|
||||
return this.annexname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.annexname</code>.
|
||||
*/
|
||||
public void setAnnexname(String annexname) {
|
||||
this.annexname = annexname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.projectname</code>.
|
||||
*/
|
||||
public String getProjectname() {
|
||||
return this.projectname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.projectname</code>.
|
||||
*/
|
||||
public void setProjectname(String projectname) {
|
||||
this.projectname = projectname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.eweavedate</code>.
|
||||
*/
|
||||
public String getEweavedate() {
|
||||
return this.eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.eweavedate</code>.
|
||||
*/
|
||||
public void setEweavedate(String eweavedate) {
|
||||
this.eweavedate = eweavedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.checkdate</code>.
|
||||
*/
|
||||
public String getCheckdate() {
|
||||
return this.checkdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.checkdate</code>.
|
||||
*/
|
||||
public void setCheckdate(String checkdate) {
|
||||
this.checkdate = checkdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.annexpage</code>.
|
||||
*/
|
||||
public Integer getAnnexpage() {
|
||||
return this.annexpage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.annexpage</code>.
|
||||
*/
|
||||
public void setAnnexpage(Integer annexpage) {
|
||||
this.annexpage = annexpage;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.sortorder</code>.
|
||||
*/
|
||||
public String getSortorder() {
|
||||
return this.sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.sortorder</code>.
|
||||
*/
|
||||
public void setSortorder(String sortorder) {
|
||||
this.sortorder = sortorder;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.filefrom</code>.
|
||||
*/
|
||||
public String getFilefrom() {
|
||||
return this.filefrom;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.filefrom</code>.
|
||||
*/
|
||||
public void setFilefrom(String filefrom) {
|
||||
this.filefrom = filefrom;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.archivestag</code>.
|
||||
*/
|
||||
public String getArchivestag() {
|
||||
return this.archivestag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.archivestag</code>.
|
||||
*/
|
||||
public void setArchivestag(String archivestag) {
|
||||
this.archivestag = archivestag;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.adddate</code>.
|
||||
*/
|
||||
public String getAdddate() {
|
||||
return this.adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.adddate</code>.
|
||||
*/
|
||||
public void setAdddate(String adddate) {
|
||||
this.adddate = adddate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.editdate</code>.
|
||||
*/
|
||||
public String getEditdate() {
|
||||
return this.editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.editdate</code>.
|
||||
*/
|
||||
public void setEditdate(String editdate) {
|
||||
this.editdate = editdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.time_stamp</code>.
|
||||
*/
|
||||
public String getTimeStamp() {
|
||||
return this.timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.time_stamp</code>.
|
||||
*/
|
||||
public void setTimeStamp(String timeStamp) {
|
||||
this.timeStamp = timeStamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.isdel</code>.
|
||||
*/
|
||||
public Integer getIsdel() {
|
||||
return this.isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.isdel</code>.
|
||||
*/
|
||||
public void setIsdel(Integer isdel) {
|
||||
this.isdel = isdel;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.downurl</code>.
|
||||
*/
|
||||
public String getDownurl() {
|
||||
return this.downurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.downurl</code>.
|
||||
*/
|
||||
public void setDownurl(String downurl) {
|
||||
this.downurl = downurl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.syn_file.filesize</code>.
|
||||
*/
|
||||
public Integer getFilesize() {
|
||||
return this.filesize;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.syn_file.filesize</code>.
|
||||
*/
|
||||
public void setFilesize(Integer filesize) {
|
||||
this.filesize = filesize;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SynFile other = (SynFile) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.pId == null) {
|
||||
if (other.pId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.pId.equals(other.pId))
|
||||
return false;
|
||||
if (this.tablenumber == null) {
|
||||
if (other.tablenumber != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.tablenumber.equals(other.tablenumber))
|
||||
return false;
|
||||
if (this.annexname == null) {
|
||||
if (other.annexname != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.annexname.equals(other.annexname))
|
||||
return false;
|
||||
if (this.projectname == null) {
|
||||
if (other.projectname != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.projectname.equals(other.projectname))
|
||||
return false;
|
||||
if (this.eweavedate == null) {
|
||||
if (other.eweavedate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.eweavedate.equals(other.eweavedate))
|
||||
return false;
|
||||
if (this.checkdate == null) {
|
||||
if (other.checkdate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.checkdate.equals(other.checkdate))
|
||||
return false;
|
||||
if (this.annexpage == null) {
|
||||
if (other.annexpage != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.annexpage.equals(other.annexpage))
|
||||
return false;
|
||||
if (this.sortorder == null) {
|
||||
if (other.sortorder != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sortorder.equals(other.sortorder))
|
||||
return false;
|
||||
if (this.filefrom == null) {
|
||||
if (other.filefrom != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filefrom.equals(other.filefrom))
|
||||
return false;
|
||||
if (this.archivestag == null) {
|
||||
if (other.archivestag != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.archivestag.equals(other.archivestag))
|
||||
return false;
|
||||
if (this.adddate == null) {
|
||||
if (other.adddate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.adddate.equals(other.adddate))
|
||||
return false;
|
||||
if (this.editdate == null) {
|
||||
if (other.editdate != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.editdate.equals(other.editdate))
|
||||
return false;
|
||||
if (this.timeStamp == null) {
|
||||
if (other.timeStamp != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.timeStamp.equals(other.timeStamp))
|
||||
return false;
|
||||
if (this.isdel == null) {
|
||||
if (other.isdel != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.isdel.equals(other.isdel))
|
||||
return false;
|
||||
if (this.downurl == null) {
|
||||
if (other.downurl != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.downurl.equals(other.downurl))
|
||||
return false;
|
||||
if (this.filesize == null) {
|
||||
if (other.filesize != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.filesize.equals(other.filesize))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.pId == null) ? 0 : this.pId.hashCode());
|
||||
result = prime * result + ((this.tablenumber == null) ? 0 : this.tablenumber.hashCode());
|
||||
result = prime * result + ((this.annexname == null) ? 0 : this.annexname.hashCode());
|
||||
result = prime * result + ((this.projectname == null) ? 0 : this.projectname.hashCode());
|
||||
result = prime * result + ((this.eweavedate == null) ? 0 : this.eweavedate.hashCode());
|
||||
result = prime * result + ((this.checkdate == null) ? 0 : this.checkdate.hashCode());
|
||||
result = prime * result + ((this.annexpage == null) ? 0 : this.annexpage.hashCode());
|
||||
result = prime * result + ((this.sortorder == null) ? 0 : this.sortorder.hashCode());
|
||||
result = prime * result + ((this.filefrom == null) ? 0 : this.filefrom.hashCode());
|
||||
result = prime * result + ((this.archivestag == null) ? 0 : this.archivestag.hashCode());
|
||||
result = prime * result + ((this.adddate == null) ? 0 : this.adddate.hashCode());
|
||||
result = prime * result + ((this.editdate == null) ? 0 : this.editdate.hashCode());
|
||||
result = prime * result + ((this.timeStamp == null) ? 0 : this.timeStamp.hashCode());
|
||||
result = prime * result + ((this.isdel == null) ? 0 : this.isdel.hashCode());
|
||||
result = prime * result + ((this.downurl == null) ? 0 : this.downurl.hashCode());
|
||||
result = prime * result + ((this.filesize == null) ? 0 : this.filesize.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SynFile (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(pId);
|
||||
sb.append(", ").append(tablenumber);
|
||||
sb.append(", ").append(annexname);
|
||||
sb.append(", ").append(projectname);
|
||||
sb.append(", ").append(eweavedate);
|
||||
sb.append(", ").append(checkdate);
|
||||
sb.append(", ").append(annexpage);
|
||||
sb.append(", ").append(sortorder);
|
||||
sb.append(", ").append(filefrom);
|
||||
sb.append(", ").append(archivestag);
|
||||
sb.append(", ").append(adddate);
|
||||
sb.append(", ").append(editdate);
|
||||
sb.append(", ").append(timeStamp);
|
||||
sb.append(", ").append(isdel);
|
||||
sb.append(", ").append(downurl);
|
||||
sb.append(", ").append(filesize);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -17,264 +17,138 @@ public class SysAdmin implements Serializable {
|
|||
|
||||
private String id;
|
||||
private String orgId;
|
||||
private Integer type;
|
||||
private String realname;
|
||||
private String username;
|
||||
private String password;
|
||||
private String phone;
|
||||
private String email;
|
||||
private String job;
|
||||
private Integer gender;
|
||||
private Integer islock;
|
||||
private Integer type;
|
||||
private Integer sort;
|
||||
private String cerId;
|
||||
private String companyId;
|
||||
|
||||
public SysAdmin() {}
|
||||
|
||||
public SysAdmin(SysAdmin value) {
|
||||
this.id = value.id;
|
||||
this.orgId = value.orgId;
|
||||
this.type = value.type;
|
||||
this.realname = value.realname;
|
||||
this.username = value.username;
|
||||
this.password = value.password;
|
||||
this.phone = value.phone;
|
||||
this.email = value.email;
|
||||
this.job = value.job;
|
||||
this.gender = value.gender;
|
||||
this.islock = value.islock;
|
||||
this.type = value.type;
|
||||
this.sort = value.sort;
|
||||
this.cerId = value.cerId;
|
||||
this.companyId = value.companyId;
|
||||
}
|
||||
|
||||
public SysAdmin(
|
||||
String id,
|
||||
String orgId,
|
||||
Integer type,
|
||||
String realname,
|
||||
String username,
|
||||
String password,
|
||||
String phone,
|
||||
String email,
|
||||
String job,
|
||||
Integer gender,
|
||||
Integer islock,
|
||||
Integer type,
|
||||
Integer sort,
|
||||
String cerId,
|
||||
String companyId
|
||||
Integer islock
|
||||
) {
|
||||
this.id = id;
|
||||
this.orgId = orgId;
|
||||
this.type = type;
|
||||
this.realname = realname;
|
||||
this.username = username;
|
||||
this.password = password;
|
||||
this.phone = phone;
|
||||
this.email = email;
|
||||
this.job = job;
|
||||
this.gender = gender;
|
||||
this.islock = islock;
|
||||
this.type = type;
|
||||
this.sort = sort;
|
||||
this.cerId = cerId;
|
||||
this.companyId = companyId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.id</code>.
|
||||
* Getter for <code>yx.sys_admin.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.id</code>.
|
||||
* Setter for <code>yx.sys_admin.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.org_id</code>.
|
||||
* Getter for <code>yx.sys_admin.org_id</code>.
|
||||
*/
|
||||
public String getOrgId() {
|
||||
return this.orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.org_id</code>.
|
||||
* Setter for <code>yx.sys_admin.org_id</code>.
|
||||
*/
|
||||
public void setOrgId(String orgId) {
|
||||
this.orgId = orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.realname</code>.
|
||||
*/
|
||||
public String getRealname() {
|
||||
return this.realname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.realname</code>.
|
||||
*/
|
||||
public void setRealname(String realname) {
|
||||
this.realname = realname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.username</code>.
|
||||
*/
|
||||
public String getUsername() {
|
||||
return this.username;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.username</code>.
|
||||
*/
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.password</code>.
|
||||
*/
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.password</code>.
|
||||
*/
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.phone</code>.
|
||||
*/
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.phone</code>.
|
||||
*/
|
||||
public void setPhone(String phone) {
|
||||
this.phone = phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.email</code>.
|
||||
*/
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.email</code>.
|
||||
*/
|
||||
public void setEmail(String email) {
|
||||
this.email = email;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.job</code>.
|
||||
*/
|
||||
public String getJob() {
|
||||
return this.job;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.job</code>.
|
||||
*/
|
||||
public void setJob(String job) {
|
||||
this.job = job;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.gender</code>.
|
||||
*/
|
||||
public Integer getGender() {
|
||||
return this.gender;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.gender</code>.
|
||||
*/
|
||||
public void setGender(Integer gender) {
|
||||
this.gender = gender;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.islock</code>.
|
||||
*/
|
||||
public Integer getIslock() {
|
||||
return this.islock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.islock</code>.
|
||||
*/
|
||||
public void setIslock(Integer islock) {
|
||||
this.islock = islock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.type</code>.
|
||||
* Getter for <code>yx.sys_admin.type</code>. 0管理员,1普通用户
|
||||
*/
|
||||
public Integer getType() {
|
||||
return this.type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.type</code>.
|
||||
* Setter for <code>yx.sys_admin.type</code>. 0管理员,1普通用户
|
||||
*/
|
||||
public void setType(Integer type) {
|
||||
this.type = type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.sort</code>.
|
||||
* Getter for <code>yx.sys_admin.realname</code>.
|
||||
*/
|
||||
public Integer getSort() {
|
||||
return this.sort;
|
||||
public String getRealname() {
|
||||
return this.realname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.sort</code>.
|
||||
* Setter for <code>yx.sys_admin.realname</code>.
|
||||
*/
|
||||
public void setSort(Integer sort) {
|
||||
this.sort = sort;
|
||||
public void setRealname(String realname) {
|
||||
this.realname = realname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.cer_id</code>.
|
||||
* Getter for <code>yx.sys_admin.username</code>.
|
||||
*/
|
||||
public String getCerId() {
|
||||
return this.cerId;
|
||||
public String getUsername() {
|
||||
return this.username;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.cer_id</code>.
|
||||
* Setter for <code>yx.sys_admin.username</code>.
|
||||
*/
|
||||
public void setCerId(String cerId) {
|
||||
this.cerId = cerId;
|
||||
public void setUsername(String username) {
|
||||
this.username = username;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin.company_id</code>. 公司ID,组织ID的最高级
|
||||
* Getter for <code>yx.sys_admin.password</code>. sha3_256hex
|
||||
*/
|
||||
public String getCompanyId() {
|
||||
return this.companyId;
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin.company_id</code>. 公司ID,组织ID的最高级
|
||||
* Setter for <code>yx.sys_admin.password</code>. sha3_256hex
|
||||
*/
|
||||
public void setCompanyId(String companyId) {
|
||||
this.companyId = companyId;
|
||||
public void setPassword(String password) {
|
||||
this.password = password;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>yx.sys_admin.islock</code>. 0正常,1锁定
|
||||
*/
|
||||
public Integer getIslock() {
|
||||
return this.islock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>yx.sys_admin.islock</code>. 0正常,1锁定
|
||||
*/
|
||||
public void setIslock(Integer islock) {
|
||||
this.islock = islock;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -298,6 +172,12 @@ public class SysAdmin implements Serializable {
|
|||
}
|
||||
else if (!this.orgId.equals(other.orgId))
|
||||
return false;
|
||||
if (this.type == null) {
|
||||
if (other.type != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.type.equals(other.type))
|
||||
return false;
|
||||
if (this.realname == null) {
|
||||
if (other.realname != null)
|
||||
return false;
|
||||
|
|
@ -316,60 +196,12 @@ public class SysAdmin implements Serializable {
|
|||
}
|
||||
else if (!this.password.equals(other.password))
|
||||
return false;
|
||||
if (this.phone == null) {
|
||||
if (other.phone != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.phone.equals(other.phone))
|
||||
return false;
|
||||
if (this.email == null) {
|
||||
if (other.email != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.email.equals(other.email))
|
||||
return false;
|
||||
if (this.job == null) {
|
||||
if (other.job != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.job.equals(other.job))
|
||||
return false;
|
||||
if (this.gender == null) {
|
||||
if (other.gender != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.gender.equals(other.gender))
|
||||
return false;
|
||||
if (this.islock == null) {
|
||||
if (other.islock != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.islock.equals(other.islock))
|
||||
return false;
|
||||
if (this.type == null) {
|
||||
if (other.type != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.type.equals(other.type))
|
||||
return false;
|
||||
if (this.sort == null) {
|
||||
if (other.sort != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.sort.equals(other.sort))
|
||||
return false;
|
||||
if (this.cerId == null) {
|
||||
if (other.cerId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.cerId.equals(other.cerId))
|
||||
return false;
|
||||
if (this.companyId == null) {
|
||||
if (other.companyId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.companyId.equals(other.companyId))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -379,18 +211,11 @@ public class SysAdmin implements Serializable {
|
|||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.orgId == null) ? 0 : this.orgId.hashCode());
|
||||
result = prime * result + ((this.type == null) ? 0 : this.type.hashCode());
|
||||
result = prime * result + ((this.realname == null) ? 0 : this.realname.hashCode());
|
||||
result = prime * result + ((this.username == null) ? 0 : this.username.hashCode());
|
||||
result = prime * result + ((this.password == null) ? 0 : this.password.hashCode());
|
||||
result = prime * result + ((this.phone == null) ? 0 : this.phone.hashCode());
|
||||
result = prime * result + ((this.email == null) ? 0 : this.email.hashCode());
|
||||
result = prime * result + ((this.job == null) ? 0 : this.job.hashCode());
|
||||
result = prime * result + ((this.gender == null) ? 0 : this.gender.hashCode());
|
||||
result = prime * result + ((this.islock == null) ? 0 : this.islock.hashCode());
|
||||
result = prime * result + ((this.type == null) ? 0 : this.type.hashCode());
|
||||
result = prime * result + ((this.sort == null) ? 0 : this.sort.hashCode());
|
||||
result = prime * result + ((this.cerId == null) ? 0 : this.cerId.hashCode());
|
||||
result = prime * result + ((this.companyId == null) ? 0 : this.companyId.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
@ -400,18 +225,11 @@ public class SysAdmin implements Serializable {
|
|||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(orgId);
|
||||
sb.append(", ").append(type);
|
||||
sb.append(", ").append(realname);
|
||||
sb.append(", ").append(username);
|
||||
sb.append(", ").append(password);
|
||||
sb.append(", ").append(phone);
|
||||
sb.append(", ").append(email);
|
||||
sb.append(", ").append(job);
|
||||
sb.append(", ").append(gender);
|
||||
sb.append(", ").append(islock);
|
||||
sb.append(", ").append(type);
|
||||
sb.append(", ").append(sort);
|
||||
sb.append(", ").append(cerId);
|
||||
sb.append(", ").append(companyId);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
|
|
|
|||
|
|
@ -0,0 +1,133 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysAdminMenu implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String adminid;
|
||||
private String memuid;
|
||||
|
||||
public SysAdminMenu() {}
|
||||
|
||||
public SysAdminMenu(SysAdminMenu value) {
|
||||
this.id = value.id;
|
||||
this.adminid = value.adminid;
|
||||
this.memuid = value.memuid;
|
||||
}
|
||||
|
||||
public SysAdminMenu(
|
||||
String id,
|
||||
String adminid,
|
||||
String memuid
|
||||
) {
|
||||
this.id = id;
|
||||
this.adminid = adminid;
|
||||
this.memuid = memuid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>yx.sys_admin_menu.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>yx.sys_admin_menu.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>yx.sys_admin_menu.adminid</code>.
|
||||
*/
|
||||
public String getAdminid() {
|
||||
return this.adminid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>yx.sys_admin_menu.adminid</code>.
|
||||
*/
|
||||
public void setAdminid(String adminid) {
|
||||
this.adminid = adminid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>yx.sys_admin_menu.memuid</code>.
|
||||
*/
|
||||
public String getMemuid() {
|
||||
return this.memuid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>yx.sys_admin_menu.memuid</code>.
|
||||
*/
|
||||
public void setMemuid(String memuid) {
|
||||
this.memuid = memuid;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SysAdminMenu other = (SysAdminMenu) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.adminid == null) {
|
||||
if (other.adminid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.adminid.equals(other.adminid))
|
||||
return false;
|
||||
if (this.memuid == null) {
|
||||
if (other.memuid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.memuid.equals(other.memuid))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.adminid == null) ? 0 : this.adminid.hashCode());
|
||||
result = prime * result + ((this.memuid == null) ? 0 : this.memuid.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SysAdminMenu (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(adminid);
|
||||
sb.append(", ").append(memuid);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -16,67 +16,67 @@ public class SysAdminRole implements Serializable {
|
|||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String adminid;
|
||||
private String roleid;
|
||||
private String adminId;
|
||||
private Integer roleId;
|
||||
|
||||
public SysAdminRole() {}
|
||||
|
||||
public SysAdminRole(SysAdminRole value) {
|
||||
this.id = value.id;
|
||||
this.adminid = value.adminid;
|
||||
this.roleid = value.roleid;
|
||||
this.adminId = value.adminId;
|
||||
this.roleId = value.roleId;
|
||||
}
|
||||
|
||||
public SysAdminRole(
|
||||
String id,
|
||||
String adminid,
|
||||
String roleid
|
||||
String adminId,
|
||||
Integer roleId
|
||||
) {
|
||||
this.id = id;
|
||||
this.adminid = adminid;
|
||||
this.roleid = roleid;
|
||||
this.adminId = adminId;
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_role.id</code>.
|
||||
* Getter for <code>yx.sys_admin_role.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_role.id</code>.
|
||||
* Setter for <code>yx.sys_admin_role.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_role.adminid</code>.
|
||||
* Getter for <code>yx.sys_admin_role.admin_id</code>.
|
||||
*/
|
||||
public String getAdminid() {
|
||||
return this.adminid;
|
||||
public String getAdminId() {
|
||||
return this.adminId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_role.adminid</code>.
|
||||
* Setter for <code>yx.sys_admin_role.admin_id</code>.
|
||||
*/
|
||||
public void setAdminid(String adminid) {
|
||||
this.adminid = adminid;
|
||||
public void setAdminId(String adminId) {
|
||||
this.adminId = adminId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_role.roleid</code>.
|
||||
* Getter for <code>yx.sys_admin_role.role_id</code>.
|
||||
*/
|
||||
public String getRoleid() {
|
||||
return this.roleid;
|
||||
public Integer getRoleId() {
|
||||
return this.roleId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_role.roleid</code>.
|
||||
* Setter for <code>yx.sys_admin_role.role_id</code>.
|
||||
*/
|
||||
public void setRoleid(String roleid) {
|
||||
this.roleid = roleid;
|
||||
public void setRoleId(Integer roleId) {
|
||||
this.roleId = roleId;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -94,17 +94,17 @@ public class SysAdminRole implements Serializable {
|
|||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.adminid == null) {
|
||||
if (other.adminid != null)
|
||||
if (this.adminId == null) {
|
||||
if (other.adminId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.adminid.equals(other.adminid))
|
||||
else if (!this.adminId.equals(other.adminId))
|
||||
return false;
|
||||
if (this.roleid == null) {
|
||||
if (other.roleid != null)
|
||||
if (this.roleId == null) {
|
||||
if (other.roleId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.roleid.equals(other.roleid))
|
||||
else if (!this.roleId.equals(other.roleId))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
|
@ -114,8 +114,8 @@ public class SysAdminRole implements Serializable {
|
|||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.adminid == null) ? 0 : this.adminid.hashCode());
|
||||
result = prime * result + ((this.roleid == null) ? 0 : this.roleid.hashCode());
|
||||
result = prime * result + ((this.adminId == null) ? 0 : this.adminId.hashCode());
|
||||
result = prime * result + ((this.roleId == null) ? 0 : this.roleId.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
@ -124,8 +124,8 @@ public class SysAdminRole implements Serializable {
|
|||
StringBuilder sb = new StringBuilder("SysAdminRole (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(adminid);
|
||||
sb.append(", ").append(roleid);
|
||||
sb.append(", ").append(adminId);
|
||||
sb.append(", ").append(roleId);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
|
|
|
|||
|
|
@ -1,238 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysAdminWeid implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private String adminId;
|
||||
private String wid;
|
||||
private String wprivateKey;
|
||||
private LocalDateTime addTime;
|
||||
private String certificateHash;
|
||||
private String chainBlock;
|
||||
|
||||
public SysAdminWeid() {}
|
||||
|
||||
public SysAdminWeid(SysAdminWeid value) {
|
||||
this.id = value.id;
|
||||
this.adminId = value.adminId;
|
||||
this.wid = value.wid;
|
||||
this.wprivateKey = value.wprivateKey;
|
||||
this.addTime = value.addTime;
|
||||
this.certificateHash = value.certificateHash;
|
||||
this.chainBlock = value.chainBlock;
|
||||
}
|
||||
|
||||
public SysAdminWeid(
|
||||
String id,
|
||||
String adminId,
|
||||
String wid,
|
||||
String wprivateKey,
|
||||
LocalDateTime addTime,
|
||||
String certificateHash,
|
||||
String chainBlock
|
||||
) {
|
||||
this.id = id;
|
||||
this.adminId = adminId;
|
||||
this.wid = wid;
|
||||
this.wprivateKey = wprivateKey;
|
||||
this.addTime = addTime;
|
||||
this.certificateHash = certificateHash;
|
||||
this.chainBlock = chainBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_weid.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_weid.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_weid.admin_id</code>.
|
||||
*/
|
||||
public String getAdminId() {
|
||||
return this.adminId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_weid.admin_id</code>.
|
||||
*/
|
||||
public void setAdminId(String adminId) {
|
||||
this.adminId = adminId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_weid.wid</code>.
|
||||
*/
|
||||
public String getWid() {
|
||||
return this.wid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_weid.wid</code>.
|
||||
*/
|
||||
public void setWid(String wid) {
|
||||
this.wid = wid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_weid.wprivate_key</code>.
|
||||
*/
|
||||
public String getWprivateKey() {
|
||||
return this.wprivateKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_weid.wprivate_key</code>.
|
||||
*/
|
||||
public void setWprivateKey(String wprivateKey) {
|
||||
this.wprivateKey = wprivateKey;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_weid.add_time</code>.
|
||||
*/
|
||||
public LocalDateTime getAddTime() {
|
||||
return this.addTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_weid.add_time</code>.
|
||||
*/
|
||||
public void setAddTime(LocalDateTime addTime) {
|
||||
this.addTime = addTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_weid.certificate_hash</code>. 存证哈希
|
||||
*/
|
||||
public String getCertificateHash() {
|
||||
return this.certificateHash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_weid.certificate_hash</code>. 存证哈希
|
||||
*/
|
||||
public void setCertificateHash(String certificateHash) {
|
||||
this.certificateHash = certificateHash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_admin_weid.chain_block</code>.
|
||||
*/
|
||||
public String getChainBlock() {
|
||||
return this.chainBlock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_admin_weid.chain_block</code>.
|
||||
*/
|
||||
public void setChainBlock(String chainBlock) {
|
||||
this.chainBlock = chainBlock;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SysAdminWeid other = (SysAdminWeid) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.adminId == null) {
|
||||
if (other.adminId != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.adminId.equals(other.adminId))
|
||||
return false;
|
||||
if (this.wid == null) {
|
||||
if (other.wid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.wid.equals(other.wid))
|
||||
return false;
|
||||
if (this.wprivateKey == null) {
|
||||
if (other.wprivateKey != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.wprivateKey.equals(other.wprivateKey))
|
||||
return false;
|
||||
if (this.addTime == null) {
|
||||
if (other.addTime != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.addTime.equals(other.addTime))
|
||||
return false;
|
||||
if (this.certificateHash == null) {
|
||||
if (other.certificateHash != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.certificateHash.equals(other.certificateHash))
|
||||
return false;
|
||||
if (this.chainBlock == null) {
|
||||
if (other.chainBlock != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.chainBlock.equals(other.chainBlock))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.adminId == null) ? 0 : this.adminId.hashCode());
|
||||
result = prime * result + ((this.wid == null) ? 0 : this.wid.hashCode());
|
||||
result = prime * result + ((this.wprivateKey == null) ? 0 : this.wprivateKey.hashCode());
|
||||
result = prime * result + ((this.addTime == null) ? 0 : this.addTime.hashCode());
|
||||
result = prime * result + ((this.certificateHash == null) ? 0 : this.certificateHash.hashCode());
|
||||
result = prime * result + ((this.chainBlock == null) ? 0 : this.chainBlock.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SysAdminWeid (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(adminId);
|
||||
sb.append(", ").append(wid);
|
||||
sb.append(", ").append(wprivateKey);
|
||||
sb.append(", ").append(addTime);
|
||||
sb.append(", ").append(certificateHash);
|
||||
sb.append(", ").append(chainBlock);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,237 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package jj.tech.paolu.repository.jooq.tables.pojos;
|
||||
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class SysArea implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
private String id;
|
||||
private Short levelCode;
|
||||
private String parentCode;
|
||||
private String areaCode;
|
||||
private String name;
|
||||
private String pid;
|
||||
private String pids;
|
||||
|
||||
public SysArea() {}
|
||||
|
||||
public SysArea(SysArea value) {
|
||||
this.id = value.id;
|
||||
this.levelCode = value.levelCode;
|
||||
this.parentCode = value.parentCode;
|
||||
this.areaCode = value.areaCode;
|
||||
this.name = value.name;
|
||||
this.pid = value.pid;
|
||||
this.pids = value.pids;
|
||||
}
|
||||
|
||||
public SysArea(
|
||||
String id,
|
||||
Short levelCode,
|
||||
String parentCode,
|
||||
String areaCode,
|
||||
String name,
|
||||
String pid,
|
||||
String pids
|
||||
) {
|
||||
this.id = id;
|
||||
this.levelCode = levelCode;
|
||||
this.parentCode = parentCode;
|
||||
this.areaCode = areaCode;
|
||||
this.name = name;
|
||||
this.pid = pid;
|
||||
this.pids = pids;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_area.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_area.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_area.level_code</code>.
|
||||
*/
|
||||
public Short getLevelCode() {
|
||||
return this.levelCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_area.level_code</code>.
|
||||
*/
|
||||
public void setLevelCode(Short levelCode) {
|
||||
this.levelCode = levelCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_area.parent_code</code>.
|
||||
*/
|
||||
public String getParentCode() {
|
||||
return this.parentCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_area.parent_code</code>.
|
||||
*/
|
||||
public void setParentCode(String parentCode) {
|
||||
this.parentCode = parentCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_area.area_code</code>.
|
||||
*/
|
||||
public String getAreaCode() {
|
||||
return this.areaCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_area.area_code</code>.
|
||||
*/
|
||||
public void setAreaCode(String areaCode) {
|
||||
this.areaCode = areaCode;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_area.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_area.name</code>.
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_area.pid</code>.
|
||||
*/
|
||||
public String getPid() {
|
||||
return this.pid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_area.pid</code>.
|
||||
*/
|
||||
public void setPid(String pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_area.pids</code>.
|
||||
*/
|
||||
public String getPids() {
|
||||
return this.pids;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_area.pids</code>.
|
||||
*/
|
||||
public void setPids(String pids) {
|
||||
this.pids = pids;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
final SysArea other = (SysArea) obj;
|
||||
if (this.id == null) {
|
||||
if (other.id != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.id.equals(other.id))
|
||||
return false;
|
||||
if (this.levelCode == null) {
|
||||
if (other.levelCode != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.levelCode.equals(other.levelCode))
|
||||
return false;
|
||||
if (this.parentCode == null) {
|
||||
if (other.parentCode != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.parentCode.equals(other.parentCode))
|
||||
return false;
|
||||
if (this.areaCode == null) {
|
||||
if (other.areaCode != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.areaCode.equals(other.areaCode))
|
||||
return false;
|
||||
if (this.name == null) {
|
||||
if (other.name != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.name.equals(other.name))
|
||||
return false;
|
||||
if (this.pid == null) {
|
||||
if (other.pid != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.pid.equals(other.pid))
|
||||
return false;
|
||||
if (this.pids == null) {
|
||||
if (other.pids != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.pids.equals(other.pids))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.levelCode == null) ? 0 : this.levelCode.hashCode());
|
||||
result = prime * result + ((this.parentCode == null) ? 0 : this.parentCode.hashCode());
|
||||
result = prime * result + ((this.areaCode == null) ? 0 : this.areaCode.hashCode());
|
||||
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
|
||||
result = prime * result + ((this.pid == null) ? 0 : this.pid.hashCode());
|
||||
result = prime * result + ((this.pids == null) ? 0 : this.pids.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("SysArea (");
|
||||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(levelCode);
|
||||
sb.append(", ").append(parentCode);
|
||||
sb.append(", ").append(areaCode);
|
||||
sb.append(", ").append(name);
|
||||
sb.append(", ").append(pid);
|
||||
sb.append(", ").append(pids);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
}
|
||||
}
|
||||
|
|
@ -18,7 +18,7 @@ public class SysConfig implements Serializable {
|
|||
|
||||
private String id;
|
||||
private String subgroup;
|
||||
private String keys;
|
||||
private String k;
|
||||
private String val;
|
||||
private String adminId;
|
||||
private String adminname;
|
||||
|
|
@ -29,7 +29,7 @@ public class SysConfig implements Serializable {
|
|||
public SysConfig(SysConfig value) {
|
||||
this.id = value.id;
|
||||
this.subgroup = value.subgroup;
|
||||
this.keys = value.keys;
|
||||
this.k = value.k;
|
||||
this.val = value.val;
|
||||
this.adminId = value.adminId;
|
||||
this.adminname = value.adminname;
|
||||
|
|
@ -39,7 +39,7 @@ public class SysConfig implements Serializable {
|
|||
public SysConfig(
|
||||
String id,
|
||||
String subgroup,
|
||||
String keys,
|
||||
String k,
|
||||
String val,
|
||||
String adminId,
|
||||
String adminname,
|
||||
|
|
@ -47,7 +47,7 @@ public class SysConfig implements Serializable {
|
|||
) {
|
||||
this.id = id;
|
||||
this.subgroup = subgroup;
|
||||
this.keys = keys;
|
||||
this.k = k;
|
||||
this.val = val;
|
||||
this.adminId = adminId;
|
||||
this.adminname = adminname;
|
||||
|
|
@ -55,98 +55,98 @@ public class SysConfig implements Serializable {
|
|||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_config.id</code>.
|
||||
* Getter for <code>yx.sys_config.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_config.id</code>.
|
||||
* Setter for <code>yx.sys_config.id</code>.
|
||||
*/
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_config.subgroup</code>.
|
||||
* Getter for <code>yx.sys_config.subgroup</code>. 分组
|
||||
*/
|
||||
public String getSubgroup() {
|
||||
return this.subgroup;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_config.subgroup</code>.
|
||||
* Setter for <code>yx.sys_config.subgroup</code>. 分组
|
||||
*/
|
||||
public void setSubgroup(String subgroup) {
|
||||
this.subgroup = subgroup;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_config.keys</code>.
|
||||
* Getter for <code>yx.sys_config.k</code>. 键
|
||||
*/
|
||||
public String getKeys() {
|
||||
return this.keys;
|
||||
public String getK() {
|
||||
return this.k;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_config.keys</code>.
|
||||
* Setter for <code>yx.sys_config.k</code>. 键
|
||||
*/
|
||||
public void setKeys(String keys) {
|
||||
this.keys = keys;
|
||||
public void setK(String k) {
|
||||
this.k = k;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_config.val</code>.
|
||||
* Getter for <code>yx.sys_config.val</code>. 值
|
||||
*/
|
||||
public String getVal() {
|
||||
return this.val;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_config.val</code>.
|
||||
* Setter for <code>yx.sys_config.val</code>. 值
|
||||
*/
|
||||
public void setVal(String val) {
|
||||
this.val = val;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_config.admin_id</code>.
|
||||
* Getter for <code>yx.sys_config.admin_id</code>. 管理员id
|
||||
*/
|
||||
public String getAdminId() {
|
||||
return this.adminId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_config.admin_id</code>.
|
||||
* Setter for <code>yx.sys_config.admin_id</code>. 管理员id
|
||||
*/
|
||||
public void setAdminId(String adminId) {
|
||||
this.adminId = adminId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_config.adminname</code>.
|
||||
* Getter for <code>yx.sys_config.adminname</code>. 管理员名称
|
||||
*/
|
||||
public String getAdminname() {
|
||||
return this.adminname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_config.adminname</code>.
|
||||
* Setter for <code>yx.sys_config.adminname</code>. 管理员名称
|
||||
*/
|
||||
public void setAdminname(String adminname) {
|
||||
this.adminname = adminname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.sys_config.edittime</code>.
|
||||
* Getter for <code>yx.sys_config.edittime</code>. 最后编辑时间
|
||||
*/
|
||||
public LocalDateTime getEdittime() {
|
||||
return this.edittime;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.sys_config.edittime</code>.
|
||||
* Setter for <code>yx.sys_config.edittime</code>. 最后编辑时间
|
||||
*/
|
||||
public void setEdittime(LocalDateTime edittime) {
|
||||
this.edittime = edittime;
|
||||
|
|
@ -173,11 +173,11 @@ public class SysConfig implements Serializable {
|
|||
}
|
||||
else if (!this.subgroup.equals(other.subgroup))
|
||||
return false;
|
||||
if (this.keys == null) {
|
||||
if (other.keys != null)
|
||||
if (this.k == null) {
|
||||
if (other.k != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.keys.equals(other.keys))
|
||||
else if (!this.k.equals(other.k))
|
||||
return false;
|
||||
if (this.val == null) {
|
||||
if (other.val != null)
|
||||
|
|
@ -212,7 +212,7 @@ public class SysConfig implements Serializable {
|
|||
int result = 1;
|
||||
result = prime * result + ((this.id == null) ? 0 : this.id.hashCode());
|
||||
result = prime * result + ((this.subgroup == null) ? 0 : this.subgroup.hashCode());
|
||||
result = prime * result + ((this.keys == null) ? 0 : this.keys.hashCode());
|
||||
result = prime * result + ((this.k == null) ? 0 : this.k.hashCode());
|
||||
result = prime * result + ((this.val == null) ? 0 : this.val.hashCode());
|
||||
result = prime * result + ((this.adminId == null) ? 0 : this.adminId.hashCode());
|
||||
result = prime * result + ((this.adminname == null) ? 0 : this.adminname.hashCode());
|
||||
|
|
@ -226,7 +226,7 @@ public class SysConfig implements Serializable {
|
|||
|
||||
sb.append(id);
|
||||
sb.append(", ").append(subgroup);
|
||||
sb.append(", ").append(keys);
|
||||
sb.append(", ").append(k);
|
||||
sb.append(", ").append(val);
|
||||
sb.append(", ").append(adminId);
|
||||
sb.append(", ").append(adminname);
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user