001package com.echothree.model.jooq.server.keys.accounting; 002 003import com.echothree.model.jooq.server.records.accounting.Currencies; 004import com.echothree.model.jooq.server.records.accounting.CurrencyDescriptions; 005import com.echothree.model.jooq.server.records.accounting.GlAccountCategories; 006import com.echothree.model.jooq.server.records.accounting.GlAccountCategoryDescriptions; 007import com.echothree.model.jooq.server.records.accounting.GlAccountCategoryDetails; 008import com.echothree.model.jooq.server.records.accounting.GlAccountClassDescriptions; 009import com.echothree.model.jooq.server.records.accounting.GlAccountClassDetails; 010import com.echothree.model.jooq.server.records.accounting.GlAccountClasses; 011import com.echothree.model.jooq.server.records.accounting.GlAccountDescriptions; 012import com.echothree.model.jooq.server.records.accounting.GlAccountDetails; 013import com.echothree.model.jooq.server.records.accounting.GlAccountSummaries; 014import com.echothree.model.jooq.server.records.accounting.GlAccountTypeDescriptions; 015import com.echothree.model.jooq.server.records.accounting.GlAccountTypes; 016import com.echothree.model.jooq.server.records.accounting.GlAccounts; 017import com.echothree.model.jooq.server.records.accounting.GlResourceTypeDescriptions; 018import com.echothree.model.jooq.server.records.accounting.GlResourceTypeDetails; 019import com.echothree.model.jooq.server.records.accounting.GlResourceTypes; 020import com.echothree.model.jooq.server.records.accounting.ItemAccountingCategories; 021import com.echothree.model.jooq.server.records.accounting.ItemAccountingCategoryDescriptions; 022import com.echothree.model.jooq.server.records.accounting.ItemAccountingCategoryDetails; 023import com.echothree.model.jooq.server.records.accounting.PartyGlAccounts; 024import com.echothree.model.jooq.server.records.accounting.SymbolPositionDescriptions; 025import com.echothree.model.jooq.server.records.accounting.SymbolPositionDetails; 026import com.echothree.model.jooq.server.records.accounting.SymbolPositions; 027import com.echothree.model.jooq.server.records.accounting.TransactionDetails; 028import com.echothree.model.jooq.server.records.accounting.TransactionEntityRoleTypeDescriptions; 029import com.echothree.model.jooq.server.records.accounting.TransactionEntityRoleTypeDetails; 030import com.echothree.model.jooq.server.records.accounting.TransactionEntityRoleTypes; 031import com.echothree.model.jooq.server.records.accounting.TransactionEntityRoles; 032import com.echothree.model.jooq.server.records.accounting.TransactionGlAccountCategories; 033import com.echothree.model.jooq.server.records.accounting.TransactionGlAccountCategoryDescriptions; 034import com.echothree.model.jooq.server.records.accounting.TransactionGlAccountCategoryDetails; 035import com.echothree.model.jooq.server.records.accounting.TransactionGlAccounts; 036import com.echothree.model.jooq.server.records.accounting.TransactionGlEntries; 037import com.echothree.model.jooq.server.records.accounting.TransactionGroupDetails; 038import com.echothree.model.jooq.server.records.accounting.TransactionGroups; 039import com.echothree.model.jooq.server.records.accounting.TransactionStatuses; 040import com.echothree.model.jooq.server.records.accounting.TransactionTimeTypeDescriptions; 041import com.echothree.model.jooq.server.records.accounting.TransactionTimeTypeDetails; 042import com.echothree.model.jooq.server.records.accounting.TransactionTimeTypes; 043import com.echothree.model.jooq.server.records.accounting.TransactionTimes; 044import com.echothree.model.jooq.server.records.accounting.TransactionTypeDescriptions; 045import com.echothree.model.jooq.server.records.accounting.TransactionTypeDetails; 046import com.echothree.model.jooq.server.records.accounting.TransactionTypes; 047import com.echothree.model.jooq.server.records.accounting.Transactions; 048 049import org.jooq.TableField; 050import org.jooq.UniqueKey; 051import org.jooq.impl.DSL; 052import org.jooq.impl.Internal; 053 054/** 055 * Key definitions for the AccountingUnique component. 056 */ 057public interface AccountingUniqueKeys { 058 public static final UniqueKey<Currencies> CURRENCIES_CURRENCY_ISO_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.Currencies.Currencies, DSL.name("currencyisoname_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.Currencies.Currencies.CURRENCY_ISO_NAME }, true); 059 public static final UniqueKey<Currencies> CURRENCIES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.Currencies.Currencies, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.Currencies.Currencies.CURRENCY }, true); 060 public static final UniqueKey<CurrencyDescriptions> CURRENCY_DESCRIPTIONS_CURRENCY_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.CurrencyDescriptions.CurrencyDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.CurrencyDescriptions.CurrencyDescriptions.CURRENCY, com.echothree.model.jooq.server.tables.accounting.CurrencyDescriptions.CurrencyDescriptions.LANGUAGE }, true); 061 public static final UniqueKey<CurrencyDescriptions> CURRENCY_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.CurrencyDescriptions.CurrencyDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.CurrencyDescriptions.CurrencyDescriptions.CURRENCY_DESCRIPTION }, true); 062 public static final UniqueKey<GlAccountCategories> GL_ACCOUNT_CATEGORIES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategories.GlAccountCategories, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategories.GlAccountCategories.ACTIVE_DETAIL }, true); 063 public static final UniqueKey<GlAccountCategories> GL_ACCOUNT_CATEGORIES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategories.GlAccountCategories, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategories.GlAccountCategories.LAST_DETAIL }, true); 064 public static final UniqueKey<GlAccountCategories> GL_ACCOUNT_CATEGORIES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategories.GlAccountCategories, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategories.GlAccountCategories.GL_ACCOUNT_CATEGORY }, true); 065 public static final UniqueKey<GlAccountCategoryDescriptions> GL_ACCOUNT_CATEGORY_DESCRIPTIONS_GL_ACCOUNT_CATEGORY_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDescriptions.GlAccountCategoryDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDescriptions.GlAccountCategoryDescriptions.GL_ACCOUNT_CATEGORY, com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDescriptions.GlAccountCategoryDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDescriptions.GlAccountCategoryDescriptions.THRU_TIME }, true); 066 public static final UniqueKey<GlAccountCategoryDescriptions> GL_ACCOUNT_CATEGORY_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDescriptions.GlAccountCategoryDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDescriptions.GlAccountCategoryDescriptions.GL_ACCOUNT_CATEGORY_DESCRIPTION }, true); 067 public static final UniqueKey<GlAccountCategoryDetails> GL_ACCOUNT_CATEGORY_DETAILS_GL_ACCOUNT_CATEGORY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails.GL_ACCOUNT_CATEGORY, com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails.THRU_TIME }, true); 068 public static final UniqueKey<GlAccountCategoryDetails> GL_ACCOUNT_CATEGORY_DETAILS_GL_ACCOUNT_CATEGORY_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails.GL_ACCOUNT_CATEGORY_NAME, com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails.THRU_TIME }, true); 069 public static final UniqueKey<GlAccountCategoryDetails> GL_ACCOUNT_CATEGORY_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountCategoryDetails.GlAccountCategoryDetails.GL_ACCOUNT_CATEGORY_DETAIL }, true); 070 public static final UniqueKey<GlAccountClassDescriptions> GL_ACCOUNT_CLASS_DESCRIPTIONS_GL_ACCOUNT_CLASS_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClassDescriptions.GlAccountClassDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClassDescriptions.GlAccountClassDescriptions.GL_ACCOUNT_CLASS, com.echothree.model.jooq.server.tables.accounting.GlAccountClassDescriptions.GlAccountClassDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.GlAccountClassDescriptions.GlAccountClassDescriptions.THRU_TIME }, true); 071 public static final UniqueKey<GlAccountClassDescriptions> GL_ACCOUNT_CLASS_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClassDescriptions.GlAccountClassDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClassDescriptions.GlAccountClassDescriptions.GL_ACCOUNT_CLASS_DESCRIPTION }, true); 072 public static final UniqueKey<GlAccountClassDetails> GL_ACCOUNT_CLASS_DETAILS_GL_ACCOUNT_CLASS_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails.GL_ACCOUNT_CLASS, com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails.THRU_TIME }, true); 073 public static final UniqueKey<GlAccountClassDetails> GL_ACCOUNT_CLASS_DETAILS_GL_ACCOUNT_CLASS_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails.GL_ACCOUNT_CLASS_NAME, com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails.THRU_TIME }, true); 074 public static final UniqueKey<GlAccountClassDetails> GL_ACCOUNT_CLASS_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClassDetails.GlAccountClassDetails.GL_ACCOUNT_CLASS_DETAIL }, true); 075 public static final UniqueKey<GlAccountClasses> GL_ACCOUNT_CLASSES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClasses.GlAccountClasses, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClasses.GlAccountClasses.ACTIVE_DETAIL }, true); 076 public static final UniqueKey<GlAccountClasses> GL_ACCOUNT_CLASSES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClasses.GlAccountClasses, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClasses.GlAccountClasses.LAST_DETAIL }, true); 077 public static final UniqueKey<GlAccountClasses> GL_ACCOUNT_CLASSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountClasses.GlAccountClasses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountClasses.GlAccountClasses.GL_ACCOUNT_CLASS }, true); 078 public static final UniqueKey<GlAccountDescriptions> GL_ACCOUNT_DESCRIPTIONS_GL_ACCOUNT_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountDescriptions.GlAccountDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountDescriptions.GlAccountDescriptions.GL_ACCOUNT, com.echothree.model.jooq.server.tables.accounting.GlAccountDescriptions.GlAccountDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.GlAccountDescriptions.GlAccountDescriptions.THRU_TIME }, true); 079 public static final UniqueKey<GlAccountDescriptions> GL_ACCOUNT_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountDescriptions.GlAccountDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountDescriptions.GlAccountDescriptions.GL_ACCOUNT_DESCRIPTION }, true); 080 public static final UniqueKey<GlAccountDetails> GL_ACCOUNT_DETAILS_GL_ACCOUNT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails.GL_ACCOUNT, com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails.THRU_TIME }, true); 081 public static final UniqueKey<GlAccountDetails> GL_ACCOUNT_DETAILS_GL_ACCOUNT_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails.GL_ACCOUNT_NAME, com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails.THRU_TIME }, true); 082 public static final UniqueKey<GlAccountDetails> GL_ACCOUNT_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountDetails.GlAccountDetails.GL_ACCOUNT_DETAIL }, true); 083 public static final UniqueKey<GlAccounts> GL_ACCOUNTS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccounts.GlAccounts, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccounts.GlAccounts.ACTIVE_DETAIL }, true); 084 public static final UniqueKey<GlAccounts> GL_ACCOUNTS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccounts.GlAccounts, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccounts.GlAccounts.LAST_DETAIL }, true); 085 public static final UniqueKey<GlAccounts> GL_ACCOUNTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccounts.GlAccounts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccounts.GlAccounts.GL_ACCOUNT }, true); 086 public static final UniqueKey<GlAccountSummaries> GL_ACCOUNT_SUMMARIES_GL_ACCOUNT_AND_GROUP_PARTY_AND_PERIOD_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountSummaries.GlAccountSummaries, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountSummaries.GlAccountSummaries.GL_ACCOUNT, com.echothree.model.jooq.server.tables.accounting.GlAccountSummaries.GlAccountSummaries.GROUP_PARTY, com.echothree.model.jooq.server.tables.accounting.GlAccountSummaries.GlAccountSummaries.PERIOD }, true); 087 public static final UniqueKey<GlAccountSummaries> GL_ACCOUNT_SUMMARIES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountSummaries.GlAccountSummaries, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountSummaries.GlAccountSummaries.GL_ACCOUNT_SUMMARY }, true); 088 public static final UniqueKey<GlAccountTypeDescriptions> GL_ACCOUNT_TYPE_DESCRIPTIONS_GL_ACCOUNT_TYPE_AND_LANGUAGE_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountTypeDescriptions.GlAccountTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountTypeDescriptions.GlAccountTypeDescriptions.GL_ACCOUNT_TYPE, com.echothree.model.jooq.server.tables.accounting.GlAccountTypeDescriptions.GlAccountTypeDescriptions.LANGUAGE }, true); 089 public static final UniqueKey<GlAccountTypeDescriptions> GL_ACCOUNT_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountTypeDescriptions.GlAccountTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountTypeDescriptions.GlAccountTypeDescriptions.GL_ACCOUNT_TYPE_DESCRIPTION }, true); 090 public static final UniqueKey<GlAccountTypes> GL_ACCOUNT_TYPES_GL_ACCOUNT_TYPE_NAME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountTypes.GlAccountTypes, DSL.name("glaccounttypename_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountTypes.GlAccountTypes.GL_ACCOUNT_TYPE_NAME }, true); 091 public static final UniqueKey<GlAccountTypes> GL_ACCOUNT_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlAccountTypes.GlAccountTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlAccountTypes.GlAccountTypes.GL_ACCOUNT_TYPE }, true); 092 public static final UniqueKey<GlResourceTypeDescriptions> GL_RESOURCE_TYPE_DESCRIPTIONS_GL_RESOURCE_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDescriptions.GlResourceTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDescriptions.GlResourceTypeDescriptions.GL_RESOURCE_TYPE, com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDescriptions.GlResourceTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDescriptions.GlResourceTypeDescriptions.THRU_TIME }, true); 093 public static final UniqueKey<GlResourceTypeDescriptions> GL_RESOURCE_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDescriptions.GlResourceTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDescriptions.GlResourceTypeDescriptions.GL_RESOURCE_TYPE_DESCRIPTION }, true); 094 public static final UniqueKey<GlResourceTypeDetails> GL_RESOURCE_TYPE_DETAILS_GL_RESOURCE_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails.GL_RESOURCE_TYPE, com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails.THRU_TIME }, true); 095 public static final UniqueKey<GlResourceTypeDetails> GL_RESOURCE_TYPE_DETAILS_GL_RESOURCE_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails.GL_RESOURCE_TYPE_NAME, com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails.THRU_TIME }, true); 096 public static final UniqueKey<GlResourceTypeDetails> GL_RESOURCE_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypeDetails.GlResourceTypeDetails.GL_RESOURCE_TYPE_DETAIL }, true); 097 public static final UniqueKey<GlResourceTypes> GL_RESOURCE_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypes.GlResourceTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypes.GlResourceTypes.ACTIVE_DETAIL }, true); 098 public static final UniqueKey<GlResourceTypes> GL_RESOURCE_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypes.GlResourceTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypes.GlResourceTypes.LAST_DETAIL }, true); 099 public static final UniqueKey<GlResourceTypes> GL_RESOURCE_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.GlResourceTypes.GlResourceTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.GlResourceTypes.GlResourceTypes.GL_RESOURCE_TYPE }, true); 100 public static final UniqueKey<ItemAccountingCategories> ITEM_ACCOUNTING_CATEGORIES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategories.ItemAccountingCategories, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategories.ItemAccountingCategories.ACTIVE_DETAIL }, true); 101 public static final UniqueKey<ItemAccountingCategories> ITEM_ACCOUNTING_CATEGORIES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategories.ItemAccountingCategories, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategories.ItemAccountingCategories.LAST_DETAIL }, true); 102 public static final UniqueKey<ItemAccountingCategories> ITEM_ACCOUNTING_CATEGORIES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategories.ItemAccountingCategories, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategories.ItemAccountingCategories.ITEM_ACCOUNTING_CATEGORY }, true); 103 public static final UniqueKey<ItemAccountingCategoryDescriptions> ITEM_ACCOUNTING_CATEGORY_DESCRIPTIONS_ITEM_ACCOUNTING_CATEGORY_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDescriptions.ItemAccountingCategoryDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDescriptions.ItemAccountingCategoryDescriptions.ITEM_ACCOUNTING_CATEGORY, com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDescriptions.ItemAccountingCategoryDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDescriptions.ItemAccountingCategoryDescriptions.THRU_TIME }, true); 104 public static final UniqueKey<ItemAccountingCategoryDescriptions> ITEM_ACCOUNTING_CATEGORY_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDescriptions.ItemAccountingCategoryDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDescriptions.ItemAccountingCategoryDescriptions.ITEM_ACCOUNTING_CATEGORY_DESCRIPTION }, true); 105 public static final UniqueKey<ItemAccountingCategoryDetails> ITEM_ACCOUNTING_CATEGORY_DETAILS_ITEM_ACCOUNTING_CATEGORY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails.ITEM_ACCOUNTING_CATEGORY, com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails.THRU_TIME }, true); 106 public static final UniqueKey<ItemAccountingCategoryDetails> ITEM_ACCOUNTING_CATEGORY_DETAILS_ITEM_ACCOUNTING_CATEGORY_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails.ITEM_ACCOUNTING_CATEGORY_NAME, com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails.THRU_TIME }, true); 107 public static final UniqueKey<ItemAccountingCategoryDetails> ITEM_ACCOUNTING_CATEGORY_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.ItemAccountingCategoryDetails.ItemAccountingCategoryDetails.ITEM_ACCOUNTING_CATEGORY_DETAIL }, true); 108 public static final UniqueKey<PartyGlAccounts> PARTY_GL_ACCOUNTS_PARTY_AND_GL_ACCOUNT_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.PartyGlAccounts.PartyGlAccounts, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.PartyGlAccounts.PartyGlAccounts.PARTY, com.echothree.model.jooq.server.tables.accounting.PartyGlAccounts.PartyGlAccounts.GL_ACCOUNT, com.echothree.model.jooq.server.tables.accounting.PartyGlAccounts.PartyGlAccounts.THRU_TIME }, true); 109 public static final UniqueKey<PartyGlAccounts> PARTY_GL_ACCOUNTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.PartyGlAccounts.PartyGlAccounts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.PartyGlAccounts.PartyGlAccounts.PARTY_GL_ACCOUNT }, true); 110 public static final UniqueKey<SymbolPositionDescriptions> SYMBOL_POSITION_DESCRIPTIONS_SYMBOL_POSITION_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositionDescriptions.SymbolPositionDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositionDescriptions.SymbolPositionDescriptions.SYMBOL_POSITION, com.echothree.model.jooq.server.tables.accounting.SymbolPositionDescriptions.SymbolPositionDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.SymbolPositionDescriptions.SymbolPositionDescriptions.THRU_TIME }, true); 111 public static final UniqueKey<SymbolPositionDescriptions> SYMBOL_POSITION_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositionDescriptions.SymbolPositionDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositionDescriptions.SymbolPositionDescriptions.SYMBOL_POSITION_DESCRIPTION }, true); 112 public static final UniqueKey<SymbolPositionDetails> SYMBOL_POSITION_DETAILS_SYMBOL_POSITION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails.SYMBOL_POSITION, com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails.THRU_TIME }, true); 113 public static final UniqueKey<SymbolPositionDetails> SYMBOL_POSITION_DETAILS_SYMBOL_POSITION_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails.SYMBOL_POSITION_NAME, com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails.THRU_TIME }, true); 114 public static final UniqueKey<SymbolPositionDetails> SYMBOL_POSITION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositionDetails.SymbolPositionDetails.SYMBOL_POSITION_DETAIL }, true); 115 public static final UniqueKey<SymbolPositions> SYMBOL_POSITIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositions.SymbolPositions, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositions.SymbolPositions.ACTIVE_DETAIL }, true); 116 public static final UniqueKey<SymbolPositions> SYMBOL_POSITIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositions.SymbolPositions, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositions.SymbolPositions.LAST_DETAIL }, true); 117 public static final UniqueKey<SymbolPositions> SYMBOL_POSITIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.SymbolPositions.SymbolPositions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.SymbolPositions.SymbolPositions.SYMBOL_POSITION }, true); 118 public static final UniqueKey<TransactionDetails> TRANSACTION_DETAILS_TRANSACTION_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails.TRANSACTION, com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails.THRU_TIME }, true); 119 public static final UniqueKey<TransactionDetails> TRANSACTION_DETAILS_TRANSACTION_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails.TRANSACTION_NAME, com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails.THRU_TIME }, true); 120 public static final UniqueKey<TransactionDetails> TRANSACTION_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionDetails.TransactionDetails.TRANSACTION_DETAIL }, true); 121 public static final UniqueKey<TransactionEntityRoles> TRANSACTION_ENTITY_ROLES_TRANSACTION_AND_TRANSACTION_ENTITY_ROLE_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoles.TransactionEntityRoles, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoles.TransactionEntityRoles.TRANSACTION, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoles.TransactionEntityRoles.TRANSACTION_ENTITY_ROLE_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoles.TransactionEntityRoles.THRU_TIME }, true); 122 public static final UniqueKey<TransactionEntityRoles> TRANSACTION_ENTITY_ROLES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoles.TransactionEntityRoles, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoles.TransactionEntityRoles.TRANSACTION_ENTITY_ROLE }, true); 123 public static final UniqueKey<TransactionEntityRoleTypeDescriptions> TRANSACTION_ENTITY_ROLE_TYPE_DESCRIPTIONS_TRANSACTION_ENTITY_ROLE_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDescriptions.TransactionEntityRoleTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDescriptions.TransactionEntityRoleTypeDescriptions.TRANSACTION_ENTITY_ROLE_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDescriptions.TransactionEntityRoleTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDescriptions.TransactionEntityRoleTypeDescriptions.THRU_TIME }, true); 124 public static final UniqueKey<TransactionEntityRoleTypeDescriptions> TRANSACTION_ENTITY_ROLE_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDescriptions.TransactionEntityRoleTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDescriptions.TransactionEntityRoleTypeDescriptions.TRANSACTION_ENTITY_ROLE_TYPE_DESCRIPTION }, true); 125 public static final UniqueKey<TransactionEntityRoleTypeDetails> TRANSACTION_ENTITY_ROLE_TYPE_DETAILS_TRANSACTION_ENTITY_ROLE_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.TRANSACTION_ENTITY_ROLE_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.THRU_TIME }, true); 126 public static final UniqueKey<TransactionEntityRoleTypeDetails> TRANSACTION_ENTITY_ROLE_TYPE_DETAILS_TRANSACTION_TYPE_AND_TRANSACTION_ENTITY_ROLE_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.TRANSACTION_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.TRANSACTION_ENTITY_ROLE_TYPE_NAME, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.THRU_TIME }, true); 127 public static final UniqueKey<TransactionEntityRoleTypeDetails> TRANSACTION_ENTITY_ROLE_TYPE_DETAILS_TRANSACTION_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails, DSL.name("index3_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.TRANSACTION_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.THRU_TIME }, true); 128 public static final UniqueKey<TransactionEntityRoleTypeDetails> TRANSACTION_ENTITY_ROLE_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypeDetails.TransactionEntityRoleTypeDetails.TRANSACTION_ENTITY_ROLE_TYPE_DETAIL }, true); 129 public static final UniqueKey<TransactionEntityRoleTypes> TRANSACTION_ENTITY_ROLE_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypes.TransactionEntityRoleTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypes.TransactionEntityRoleTypes.ACTIVE_DETAIL }, true); 130 public static final UniqueKey<TransactionEntityRoleTypes> TRANSACTION_ENTITY_ROLE_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypes.TransactionEntityRoleTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypes.TransactionEntityRoleTypes.LAST_DETAIL }, true); 131 public static final UniqueKey<TransactionEntityRoleTypes> TRANSACTION_ENTITY_ROLE_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypes.TransactionEntityRoleTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionEntityRoleTypes.TransactionEntityRoleTypes.TRANSACTION_ENTITY_ROLE_TYPE }, true); 132 public static final UniqueKey<TransactionGlAccountCategories> TRANSACTION_GL_ACCOUNT_CATEGORIES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategories.TransactionGlAccountCategories, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategories.TransactionGlAccountCategories.ACTIVE_DETAIL }, true); 133 public static final UniqueKey<TransactionGlAccountCategories> TRANSACTION_GL_ACCOUNT_CATEGORIES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategories.TransactionGlAccountCategories, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategories.TransactionGlAccountCategories.LAST_DETAIL }, true); 134 public static final UniqueKey<TransactionGlAccountCategories> TRANSACTION_GL_ACCOUNT_CATEGORIES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategories.TransactionGlAccountCategories, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategories.TransactionGlAccountCategories.TRANSACTION_GL_ACCOUNT_CATEGORY }, true); 135 public static final UniqueKey<TransactionGlAccountCategoryDescriptions> TRANSACTION_GL_ACCOUNT_CATEGORY_DESCRIPTIONS_TRANSACTION_GL_ACCOUNT_CATEGORY_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDescriptions.TransactionGlAccountCategoryDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDescriptions.TransactionGlAccountCategoryDescriptions.TRANSACTION_GL_ACCOUNT_CATEGORY, com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDescriptions.TransactionGlAccountCategoryDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDescriptions.TransactionGlAccountCategoryDescriptions.THRU_TIME }, true); 136 public static final UniqueKey<TransactionGlAccountCategoryDescriptions> TRANSACTION_GL_ACCOUNT_CATEGORY_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDescriptions.TransactionGlAccountCategoryDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDescriptions.TransactionGlAccountCategoryDescriptions.TRANSACTION_GL_ACCOUNT_CATEGORY_DESCRIPTION }, true); 137 public static final UniqueKey<TransactionGlAccountCategoryDetails> TRANSACTION_GL_ACCOUNT_CATEGORY_DETAILS_TRANSACTION_GL_ACCOUNT_CATEGORY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails.TRANSACTION_GL_ACCOUNT_CATEGORY, com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails.THRU_TIME }, true); 138 public static final UniqueKey<TransactionGlAccountCategoryDetails> TRANSACTION_GL_ACCOUNT_CATEGORY_DETAILS_TRANSACTION_TYPE_AND_TRANSACTION_GL_ACCOUNT_CATEGORY_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails.TRANSACTION_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails.TRANSACTION_GL_ACCOUNT_CATEGORY_NAME, com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails.THRU_TIME }, true); 139 public static final UniqueKey<TransactionGlAccountCategoryDetails> TRANSACTION_GL_ACCOUNT_CATEGORY_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccountCategoryDetails.TransactionGlAccountCategoryDetails.TRANSACTION_GL_ACCOUNT_CATEGORY_DETAIL }, true); 140 public static final UniqueKey<TransactionGlAccounts> TRANSACTION_GL_ACCOUNTS_TRANSACTION_GL_ACCOUNT_CATEGORY_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccounts.TransactionGlAccounts, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccounts.TransactionGlAccounts.TRANSACTION_GL_ACCOUNT_CATEGORY, com.echothree.model.jooq.server.tables.accounting.TransactionGlAccounts.TransactionGlAccounts.THRU_TIME }, true); 141 public static final UniqueKey<TransactionGlAccounts> TRANSACTION_GL_ACCOUNTS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlAccounts.TransactionGlAccounts, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlAccounts.TransactionGlAccounts.TRANSACTION_GL_ACCOUNT }, true); 142 public static final UniqueKey<TransactionGlEntries> TRANSACTION_GL_ENTRIES_TRANSACTION_AND_TRANSACTION_GL_ENTRY_SEQUENCE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlEntries.TransactionGlEntries, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlEntries.TransactionGlEntries.TRANSACTION, com.echothree.model.jooq.server.tables.accounting.TransactionGlEntries.TransactionGlEntries.TRANSACTION_GL_ENTRY_SEQUENCE, com.echothree.model.jooq.server.tables.accounting.TransactionGlEntries.TransactionGlEntries.THRU_TIME }, true); 143 public static final UniqueKey<TransactionGlEntries> TRANSACTION_GL_ENTRIES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGlEntries.TransactionGlEntries, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGlEntries.TransactionGlEntries.TRANSACTION_GL_ENTRY }, true); 144 public static final UniqueKey<TransactionGroupDetails> TRANSACTION_GROUP_DETAILS_TRANSACTION_GROUP_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails.TRANSACTION_GROUP, com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails.THRU_TIME }, true); 145 public static final UniqueKey<TransactionGroupDetails> TRANSACTION_GROUP_DETAILS_TRANSACTION_GROUP_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails.TRANSACTION_GROUP_NAME, com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails.THRU_TIME }, true); 146 public static final UniqueKey<TransactionGroupDetails> TRANSACTION_GROUP_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGroupDetails.TransactionGroupDetails.TRANSACTION_GROUP_DETAIL }, true); 147 public static final UniqueKey<TransactionGroups> TRANSACTION_GROUPS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGroups.TransactionGroups, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGroups.TransactionGroups.ACTIVE_DETAIL }, true); 148 public static final UniqueKey<TransactionGroups> TRANSACTION_GROUPS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGroups.TransactionGroups, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGroups.TransactionGroups.LAST_DETAIL }, true); 149 public static final UniqueKey<TransactionGroups> TRANSACTION_GROUPS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionGroups.TransactionGroups, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionGroups.TransactionGroups.TRANSACTION_GROUP }, true); 150 public static final UniqueKey<Transactions> TRANSACTIONS_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.Transactions.Transactions, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.Transactions.Transactions.ACTIVE_DETAIL }, true); 151 public static final UniqueKey<Transactions> TRANSACTIONS_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.Transactions.Transactions, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.Transactions.Transactions.LAST_DETAIL }, true); 152 public static final UniqueKey<Transactions> TRANSACTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.Transactions.Transactions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.Transactions.Transactions.TRANSACTION }, true); 153 public static final UniqueKey<TransactionStatuses> TRANSACTION_STATUSES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionStatuses.TransactionStatuses, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionStatuses.TransactionStatuses.TRANSACTION_STATUS }, true); 154 public static final UniqueKey<TransactionStatuses> TRANSACTION_STATUSES_TRANSACTION_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionStatuses.TransactionStatuses, DSL.name("transactionid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionStatuses.TransactionStatuses.TRANSACTION }, true); 155 public static final UniqueKey<TransactionTimes> TRANSACTION_TIMES_TRANSACTION_AND_TRANSACTION_TIME_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimes.TransactionTimes, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimes.TransactionTimes.TRANSACTION, com.echothree.model.jooq.server.tables.accounting.TransactionTimes.TransactionTimes.TRANSACTION_TIME_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionTimes.TransactionTimes.THRU_TIME }, true); 156 public static final UniqueKey<TransactionTimes> TRANSACTION_TIMES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimes.TransactionTimes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimes.TransactionTimes.TRANSACTION_TIME }, true); 157 public static final UniqueKey<TransactionTimeTypeDescriptions> TRANSACTION_TIME_TYPE_DESCRIPTIONS_TRANSACTION_TIME_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDescriptions.TransactionTimeTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDescriptions.TransactionTimeTypeDescriptions.TRANSACTION_TIME_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDescriptions.TransactionTimeTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDescriptions.TransactionTimeTypeDescriptions.THRU_TIME }, true); 158 public static final UniqueKey<TransactionTimeTypeDescriptions> TRANSACTION_TIME_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDescriptions.TransactionTimeTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDescriptions.TransactionTimeTypeDescriptions.TRANSACTION_TIME_TYPE_DESCRIPTION }, true); 159 public static final UniqueKey<TransactionTimeTypeDetails> TRANSACTION_TIME_TYPE_DETAILS_TRANSACTION_TIME_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails.TRANSACTION_TIME_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails.THRU_TIME }, true); 160 public static final UniqueKey<TransactionTimeTypeDetails> TRANSACTION_TIME_TYPE_DETAILS_TRANSACTION_TIME_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails.TRANSACTION_TIME_TYPE_NAME, com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails.THRU_TIME }, true); 161 public static final UniqueKey<TransactionTimeTypeDetails> TRANSACTION_TIME_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypeDetails.TransactionTimeTypeDetails.TRANSACTION_TIME_TYPE_DETAIL }, true); 162 public static final UniqueKey<TransactionTimeTypes> TRANSACTION_TIME_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypes.TransactionTimeTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypes.TransactionTimeTypes.ACTIVE_DETAIL }, true); 163 public static final UniqueKey<TransactionTimeTypes> TRANSACTION_TIME_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypes.TransactionTimeTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypes.TransactionTimeTypes.LAST_DETAIL }, true); 164 public static final UniqueKey<TransactionTimeTypes> TRANSACTION_TIME_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypes.TransactionTimeTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTimeTypes.TransactionTimeTypes.TRANSACTION_TIME_TYPE }, true); 165 public static final UniqueKey<TransactionTypeDescriptions> TRANSACTION_TYPE_DESCRIPTIONS_TRANSACTION_TYPE_AND_LANGUAGE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypeDescriptions.TransactionTypeDescriptions, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypeDescriptions.TransactionTypeDescriptions.TRANSACTION_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionTypeDescriptions.TransactionTypeDescriptions.LANGUAGE, com.echothree.model.jooq.server.tables.accounting.TransactionTypeDescriptions.TransactionTypeDescriptions.THRU_TIME }, true); 166 public static final UniqueKey<TransactionTypeDescriptions> TRANSACTION_TYPE_DESCRIPTIONS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypeDescriptions.TransactionTypeDescriptions, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypeDescriptions.TransactionTypeDescriptions.TRANSACTION_TYPE_DESCRIPTION }, true); 167 public static final UniqueKey<TransactionTypeDetails> TRANSACTION_TYPE_DETAILS_TRANSACTION_TYPE_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails, DSL.name("index1_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails.TRANSACTION_TYPE, com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails.THRU_TIME }, true); 168 public static final UniqueKey<TransactionTypeDetails> TRANSACTION_TYPE_DETAILS_TRANSACTION_TYPE_NAME_AND_THRU_TIME_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails, DSL.name("index2_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails.TRANSACTION_TYPE_NAME, com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails.THRU_TIME }, true); 169 public static final UniqueKey<TransactionTypeDetails> TRANSACTION_TYPE_DETAILS_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypeDetails.TransactionTypeDetails.TRANSACTION_TYPE_DETAIL }, true); 170 public static final UniqueKey<TransactionTypes> TRANSACTION_TYPES_ACTIVE_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypes.TransactionTypes, DSL.name("activedetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypes.TransactionTypes.ACTIVE_DETAIL }, true); 171 public static final UniqueKey<TransactionTypes> TRANSACTION_TYPES_LAST_DETAIL_UK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypes.TransactionTypes, DSL.name("lastdetailid_idx"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypes.TransactionTypes.LAST_DETAIL }, true); 172 public static final UniqueKey<TransactionTypes> TRANSACTION_TYPES_PK = Internal.createUniqueKey(com.echothree.model.jooq.server.tables.accounting.TransactionTypes.TransactionTypes, DSL.name("PRIMARY"), new TableField[] { com.echothree.model.jooq.server.tables.accounting.TransactionTypes.TransactionTypes.TRANSACTION_TYPE }, true); 173}