[#1212] Enforce identifier disambiguation also when using custom strategies (regression)
This commit is contained in:
parent
6441abaefb
commit
70fbda2e86
@ -1,87 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public class AddressType extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType> {
|
||||
|
||||
private static final long serialVersionUID = 1295094076;
|
||||
|
||||
/**
|
||||
* The singleton instance of Person.AddressType
|
||||
*/
|
||||
public static final org.jooq.examples.sqlserver.adventureworks.person.tables.AddressType AddressType = new org.jooq.examples.sqlserver.adventureworks.person.tables.AddressType();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* PRIMARY KEY
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType, java.lang.Integer> AddressTypeID = createField("AddressTypeID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType, java.lang.String> Name = createField("Name", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType, java.lang.String> rowguid = createField("rowguid", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private AddressType() {
|
||||
super("AddressType", org.jooq.examples.sqlserver.adventureworks.person.Person.Person);
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private AddressType(java.lang.String alias) {
|
||||
super(alias, org.jooq.examples.sqlserver.adventureworks.person.Person.Person, org.jooq.examples.sqlserver.adventureworks.person.tables.AddressType.AddressType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.IDENTITY_AddressType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType> getMainKey() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_AddressType_AddressTypeID;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.AddressType>>asList(org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_AddressType_AddressTypeID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.examples.sqlserver.adventureworks.person.tables.AddressType as(java.lang.String alias) {
|
||||
return new org.jooq.examples.sqlserver.adventureworks.person.tables.AddressType(alias);
|
||||
}
|
||||
}
|
||||
@ -1,82 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public class ContactType extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType> {
|
||||
|
||||
private static final long serialVersionUID = 1713518750;
|
||||
|
||||
/**
|
||||
* The singleton instance of Person.ContactType
|
||||
*/
|
||||
public static final org.jooq.examples.sqlserver.adventureworks.person.tables.ContactType ContactType = new org.jooq.examples.sqlserver.adventureworks.person.tables.ContactType();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* PRIMARY KEY
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType, java.lang.Integer> ContactTypeID = createField("ContactTypeID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType, java.lang.String> Name = createField("Name", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private ContactType() {
|
||||
super("ContactType", org.jooq.examples.sqlserver.adventureworks.person.Person.Person);
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private ContactType(java.lang.String alias) {
|
||||
super(alias, org.jooq.examples.sqlserver.adventureworks.person.Person.Person, org.jooq.examples.sqlserver.adventureworks.person.tables.ContactType.ContactType);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.IDENTITY_ContactType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType> getMainKey() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_ContactType_ContactTypeID;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.ContactType>>asList(org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_ContactType_ContactTypeID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.examples.sqlserver.adventureworks.person.tables.ContactType as(java.lang.String alias) {
|
||||
return new org.jooq.examples.sqlserver.adventureworks.person.tables.ContactType(alias);
|
||||
}
|
||||
}
|
||||
@ -1,77 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public class CountryRegion extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion> {
|
||||
|
||||
private static final long serialVersionUID = 1264003475;
|
||||
|
||||
/**
|
||||
* The singleton instance of Person.CountryRegion
|
||||
*/
|
||||
public static final org.jooq.examples.sqlserver.adventureworks.person.tables.CountryRegion CountryRegion = new org.jooq.examples.sqlserver.adventureworks.person.tables.CountryRegion();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* PRIMARY KEY
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion, java.lang.String> CountryRegionCode = createField("CountryRegionCode", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion, java.lang.String> Name = createField("Name", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private CountryRegion() {
|
||||
super("CountryRegion", org.jooq.examples.sqlserver.adventureworks.person.Person.Person);
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private CountryRegion(java.lang.String alias) {
|
||||
super(alias, org.jooq.examples.sqlserver.adventureworks.person.Person.Person, org.jooq.examples.sqlserver.adventureworks.person.tables.CountryRegion.CountryRegion);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion> getMainKey() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_CountryRegion_CountryRegionCode;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.CountryRegion>>asList(org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_CountryRegion_CountryRegionCode);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.examples.sqlserver.adventureworks.person.tables.CountryRegion as(java.lang.String alias) {
|
||||
return new org.jooq.examples.sqlserver.adventureworks.person.tables.CountryRegion(alias);
|
||||
}
|
||||
}
|
||||
@ -1,125 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public class StateProvince extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince> {
|
||||
|
||||
private static final long serialVersionUID = 287362667;
|
||||
|
||||
/**
|
||||
* The singleton instance of Person.StateProvince
|
||||
*/
|
||||
public static final org.jooq.examples.sqlserver.adventureworks.person.tables.StateProvince StateProvince = new org.jooq.examples.sqlserver.adventureworks.person.tables.StateProvince();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*
|
||||
* PRIMARY KEY
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.Integer> StateProvinceID = createField("StateProvinceID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.String> StateProvinceCode = createField("StateProvinceCode", org.jooq.impl.SQLDataType.NCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* <p>
|
||||
* <code><pre>
|
||||
* CONSTRAINT FK_StateProvince_CountryRegion_CountryRegionCode
|
||||
* FOREIGN KEY (CountryRegionCode)
|
||||
* REFERENCES Person.CountryRegion (CountryRegionCode)
|
||||
* </pre></code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.String> CountryRegionCode = createField("CountryRegionCode", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.Boolean> IsOnlyStateProvinceFlag = createField("IsOnlyStateProvinceFlag", org.jooq.impl.SQLDataType.BIT, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.String> Name = createField("Name", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
* <p>
|
||||
* <code><pre>
|
||||
* CONSTRAINT FK_StateProvince_SalesTerritory_TerritoryID
|
||||
* FOREIGN KEY (TerritoryID)
|
||||
* REFERENCES Sales.SalesTerritory (TerritoryID)
|
||||
* </pre></code>
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.Integer> TerritoryID = createField("TerritoryID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.String> rowguid = createField("rowguid", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private StateProvince() {
|
||||
super("StateProvince", org.jooq.examples.sqlserver.adventureworks.person.Person.Person);
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private StateProvince(java.lang.String alias) {
|
||||
super(alias, org.jooq.examples.sqlserver.adventureworks.person.Person.Person, org.jooq.examples.sqlserver.adventureworks.person.tables.StateProvince.StateProvince);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.IDENTITY_StateProvince;
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince> getMainKey() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_StateProvince_StateProvinceID;
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince>> getKeys() {
|
||||
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince>>asList(org.jooq.examples.sqlserver.adventureworks.person.Keys.PK_StateProvince_StateProvinceID);
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("unchecked")
|
||||
public java.util.List<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, ?>> getReferences() {
|
||||
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.person.tables.records.StateProvince, ?>>asList(org.jooq.examples.sqlserver.adventureworks.person.Keys.FK_StateProvince_CountryRegion_CountryRegionCode, org.jooq.examples.sqlserver.adventureworks.person.Keys.FK_StateProvince_SalesTerritory_TerritoryID);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.examples.sqlserver.adventureworks.person.tables.StateProvince as(java.lang.String alias) {
|
||||
return new org.jooq.examples.sqlserver.adventureworks.person.tables.StateProvince(alias);
|
||||
}
|
||||
}
|
||||
@ -1,139 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public class vAdditionalContactInfo extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo> {
|
||||
|
||||
private static final long serialVersionUID = 939403023;
|
||||
|
||||
/**
|
||||
* The singleton instance of Person.vAdditionalContactInfo
|
||||
*/
|
||||
public static final org.jooq.examples.sqlserver.adventureworks.person.tables.vAdditionalContactInfo vAdditionalContactInfo = new org.jooq.examples.sqlserver.adventureworks.person.tables.vAdditionalContactInfo();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.Integer> ContactID = createField("ContactID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> FirstName = createField("FirstName", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> MiddleName = createField("MiddleName", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> LastName = createField("LastName", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> TelephoneNumber = createField("TelephoneNumber", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> TelephoneSpecialInstructions = createField("TelephoneSpecialInstructions", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> Street = createField("Street", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> City = createField("City", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> StateProvince = createField("StateProvince", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> PostalCode = createField("PostalCode", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> CountryRegion = createField("CountryRegion", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> HomeAddressSpecialInstructions = createField("HomeAddressSpecialInstructions", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> EMailAddress = createField("EMailAddress", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> EMailSpecialInstructions = createField("EMailSpecialInstructions", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> EMailTelephoneNumber = createField("EMailTelephoneNumber", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.String> rowguid = createField("rowguid", org.jooq.impl.SQLDataType.VARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private vAdditionalContactInfo() {
|
||||
super("vAdditionalContactInfo", org.jooq.examples.sqlserver.adventureworks.person.Person.Person);
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private vAdditionalContactInfo(java.lang.String alias) {
|
||||
super(alias, org.jooq.examples.sqlserver.adventureworks.person.Person.Person, org.jooq.examples.sqlserver.adventureworks.person.tables.vAdditionalContactInfo.vAdditionalContactInfo);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vAdditionalContactInfo, java.lang.Integer> getIdentity() {
|
||||
return org.jooq.examples.sqlserver.adventureworks.person.Keys.IDENTITY_vAdditionalContactInfo;
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.examples.sqlserver.adventureworks.person.tables.vAdditionalContactInfo as(java.lang.String alias) {
|
||||
return new org.jooq.examples.sqlserver.adventureworks.person.tables.vAdditionalContactInfo(alias);
|
||||
}
|
||||
}
|
||||
@ -1,84 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
public class vStateProvinceCountryRegion extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion> {
|
||||
|
||||
private static final long serialVersionUID = 1328451346;
|
||||
|
||||
/**
|
||||
* The singleton instance of Person.vStateProvinceCountryRegion
|
||||
*/
|
||||
public static final org.jooq.examples.sqlserver.adventureworks.person.tables.vStateProvinceCountryRegion vStateProvinceCountryRegion = new org.jooq.examples.sqlserver.adventureworks.person.tables.vStateProvinceCountryRegion();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion.class;
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion> getRecordType() {
|
||||
return __RECORD_TYPE;
|
||||
}
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion, java.lang.Integer> StateProvinceID = createField("StateProvinceID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion, java.lang.String> StateProvinceCode = createField("StateProvinceCode", org.jooq.impl.SQLDataType.NCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion, java.lang.Boolean> IsOnlyStateProvinceFlag = createField("IsOnlyStateProvinceFlag", org.jooq.impl.SQLDataType.BIT, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion, java.lang.String> StateProvinceName = createField("StateProvinceName", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion, java.lang.Integer> TerritoryID = createField("TerritoryID", org.jooq.impl.SQLDataType.INTEGER, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion, java.lang.String> CountryRegionCode = createField("CountryRegionCode", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.person.tables.records.vStateProvinceCountryRegion, java.lang.String> CountryRegionName = createField("CountryRegionName", org.jooq.impl.SQLDataType.NVARCHAR, this);
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private vStateProvinceCountryRegion() {
|
||||
super("vStateProvinceCountryRegion", org.jooq.examples.sqlserver.adventureworks.person.Person.Person);
|
||||
}
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private vStateProvinceCountryRegion(java.lang.String alias) {
|
||||
super(alias, org.jooq.examples.sqlserver.adventureworks.person.Person.Person, org.jooq.examples.sqlserver.adventureworks.person.tables.vStateProvinceCountryRegion.vStateProvinceCountryRegion);
|
||||
}
|
||||
|
||||
@Override
|
||||
public org.jooq.examples.sqlserver.adventureworks.person.tables.vStateProvinceCountryRegion as(java.lang.String alias) {
|
||||
return new org.jooq.examples.sqlserver.adventureworks.person.tables.vStateProvinceCountryRegion(alias);
|
||||
}
|
||||
}
|
||||
@ -1,56 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.persistence.Entity
|
||||
@javax.persistence.Table(name = "AddressType", schema = "Person")
|
||||
public class AddressType implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 943628619;
|
||||
|
||||
private java.lang.Integer AddressTypeID;
|
||||
private java.lang.String Name;
|
||||
private java.lang.String rowguid;
|
||||
private java.sql.Timestamp ModifiedDate;
|
||||
|
||||
@javax.persistence.Id
|
||||
@javax.persistence.Column(name = "AddressTypeID", unique = true, nullable = false)
|
||||
public java.lang.Integer getAddressTypeID() {
|
||||
return this.AddressTypeID;
|
||||
}
|
||||
|
||||
public void setAddressTypeID(java.lang.Integer AddressTypeID) {
|
||||
this.AddressTypeID = AddressTypeID;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "Name", nullable = false)
|
||||
public java.lang.String getName() {
|
||||
return this.Name;
|
||||
}
|
||||
|
||||
public void setName(java.lang.String Name) {
|
||||
this.Name = Name;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "rowguid", nullable = false)
|
||||
public java.lang.String getrowguid() {
|
||||
return this.rowguid;
|
||||
}
|
||||
|
||||
public void setrowguid(java.lang.String rowguid) {
|
||||
this.rowguid = rowguid;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "ModifiedDate", nullable = false)
|
||||
public java.sql.Timestamp getModifiedDate() {
|
||||
return this.ModifiedDate;
|
||||
}
|
||||
|
||||
public void setModifiedDate(java.sql.Timestamp ModifiedDate) {
|
||||
this.ModifiedDate = ModifiedDate;
|
||||
}
|
||||
}
|
||||
@ -1,46 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.persistence.Entity
|
||||
@javax.persistence.Table(name = "ContactType", schema = "Person")
|
||||
public class ContactType implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1577140314;
|
||||
|
||||
private java.lang.Integer ContactTypeID;
|
||||
private java.lang.String Name;
|
||||
private java.sql.Timestamp ModifiedDate;
|
||||
|
||||
@javax.persistence.Id
|
||||
@javax.persistence.Column(name = "ContactTypeID", unique = true, nullable = false)
|
||||
public java.lang.Integer getContactTypeID() {
|
||||
return this.ContactTypeID;
|
||||
}
|
||||
|
||||
public void setContactTypeID(java.lang.Integer ContactTypeID) {
|
||||
this.ContactTypeID = ContactTypeID;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "Name", nullable = false)
|
||||
public java.lang.String getName() {
|
||||
return this.Name;
|
||||
}
|
||||
|
||||
public void setName(java.lang.String Name) {
|
||||
this.Name = Name;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "ModifiedDate", nullable = false)
|
||||
public java.sql.Timestamp getModifiedDate() {
|
||||
return this.ModifiedDate;
|
||||
}
|
||||
|
||||
public void setModifiedDate(java.sql.Timestamp ModifiedDate) {
|
||||
this.ModifiedDate = ModifiedDate;
|
||||
}
|
||||
}
|
||||
@ -1,46 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.persistence.Entity
|
||||
@javax.persistence.Table(name = "CountryRegion", schema = "Person")
|
||||
public class CountryRegion implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 226974233;
|
||||
|
||||
private java.lang.String CountryRegionCode;
|
||||
private java.lang.String Name;
|
||||
private java.sql.Timestamp ModifiedDate;
|
||||
|
||||
@javax.persistence.Id
|
||||
@javax.persistence.Column(name = "CountryRegionCode", unique = true, nullable = false)
|
||||
public java.lang.String getCountryRegionCode() {
|
||||
return this.CountryRegionCode;
|
||||
}
|
||||
|
||||
public void setCountryRegionCode(java.lang.String CountryRegionCode) {
|
||||
this.CountryRegionCode = CountryRegionCode;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "Name", nullable = false)
|
||||
public java.lang.String getName() {
|
||||
return this.Name;
|
||||
}
|
||||
|
||||
public void setName(java.lang.String Name) {
|
||||
this.Name = Name;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "ModifiedDate", nullable = false)
|
||||
public java.sql.Timestamp getModifiedDate() {
|
||||
return this.ModifiedDate;
|
||||
}
|
||||
|
||||
public void setModifiedDate(java.sql.Timestamp ModifiedDate) {
|
||||
this.ModifiedDate = ModifiedDate;
|
||||
}
|
||||
}
|
||||
@ -1,96 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.persistence.Entity
|
||||
@javax.persistence.Table(name = "StateProvince", schema = "Person")
|
||||
public class StateProvince implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -456749505;
|
||||
|
||||
private java.lang.Integer StateProvinceID;
|
||||
private java.lang.String StateProvinceCode;
|
||||
private java.lang.String CountryRegionCode;
|
||||
private java.lang.Boolean IsOnlyStateProvinceFlag;
|
||||
private java.lang.String Name;
|
||||
private java.lang.Integer TerritoryID;
|
||||
private java.lang.String rowguid;
|
||||
private java.sql.Timestamp ModifiedDate;
|
||||
|
||||
@javax.persistence.Id
|
||||
@javax.persistence.Column(name = "StateProvinceID", unique = true, nullable = false)
|
||||
public java.lang.Integer getStateProvinceID() {
|
||||
return this.StateProvinceID;
|
||||
}
|
||||
|
||||
public void setStateProvinceID(java.lang.Integer StateProvinceID) {
|
||||
this.StateProvinceID = StateProvinceID;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "StateProvinceCode", nullable = false)
|
||||
public java.lang.String getStateProvinceCode() {
|
||||
return this.StateProvinceCode;
|
||||
}
|
||||
|
||||
public void setStateProvinceCode(java.lang.String StateProvinceCode) {
|
||||
this.StateProvinceCode = StateProvinceCode;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "CountryRegionCode", nullable = false)
|
||||
public java.lang.String getCountryRegionCode() {
|
||||
return this.CountryRegionCode;
|
||||
}
|
||||
|
||||
public void setCountryRegionCode(java.lang.String CountryRegionCode) {
|
||||
this.CountryRegionCode = CountryRegionCode;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "IsOnlyStateProvinceFlag", nullable = false)
|
||||
public java.lang.Boolean getIsOnlyStateProvinceFlag() {
|
||||
return this.IsOnlyStateProvinceFlag;
|
||||
}
|
||||
|
||||
public void setIsOnlyStateProvinceFlag(java.lang.Boolean IsOnlyStateProvinceFlag) {
|
||||
this.IsOnlyStateProvinceFlag = IsOnlyStateProvinceFlag;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "Name", nullable = false)
|
||||
public java.lang.String getName() {
|
||||
return this.Name;
|
||||
}
|
||||
|
||||
public void setName(java.lang.String Name) {
|
||||
this.Name = Name;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "TerritoryID", nullable = false)
|
||||
public java.lang.Integer getTerritoryID() {
|
||||
return this.TerritoryID;
|
||||
}
|
||||
|
||||
public void setTerritoryID(java.lang.Integer TerritoryID) {
|
||||
this.TerritoryID = TerritoryID;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "rowguid", nullable = false)
|
||||
public java.lang.String getrowguid() {
|
||||
return this.rowguid;
|
||||
}
|
||||
|
||||
public void setrowguid(java.lang.String rowguid) {
|
||||
this.rowguid = rowguid;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "ModifiedDate", nullable = false)
|
||||
public java.sql.Timestamp getModifiedDate() {
|
||||
return this.ModifiedDate;
|
||||
}
|
||||
|
||||
public void setModifiedDate(java.sql.Timestamp ModifiedDate) {
|
||||
this.ModifiedDate = ModifiedDate;
|
||||
}
|
||||
}
|
||||
@ -1,185 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.persistence.Entity
|
||||
@javax.persistence.Table(name = "vAdditionalContactInfo", schema = "Person")
|
||||
public class vAdditionalContactInfo implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1861307589;
|
||||
|
||||
private java.lang.Integer ContactID;
|
||||
private java.lang.String FirstName;
|
||||
private java.lang.String MiddleName;
|
||||
private java.lang.String LastName;
|
||||
private java.lang.String TelephoneNumber;
|
||||
private java.lang.String TelephoneSpecialInstructions;
|
||||
private java.lang.String Street;
|
||||
private java.lang.String City;
|
||||
private java.lang.String StateProvince;
|
||||
private java.lang.String PostalCode;
|
||||
private java.lang.String CountryRegion;
|
||||
private java.lang.String HomeAddressSpecialInstructions;
|
||||
private java.lang.String EMailAddress;
|
||||
private java.lang.String EMailSpecialInstructions;
|
||||
private java.lang.String EMailTelephoneNumber;
|
||||
private java.lang.String rowguid;
|
||||
private java.sql.Timestamp ModifiedDate;
|
||||
|
||||
@javax.persistence.Column(name = "ContactID", nullable = false)
|
||||
public java.lang.Integer getContactID() {
|
||||
return this.ContactID;
|
||||
}
|
||||
|
||||
public void setContactID(java.lang.Integer ContactID) {
|
||||
this.ContactID = ContactID;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "FirstName", nullable = false)
|
||||
public java.lang.String getFirstName() {
|
||||
return this.FirstName;
|
||||
}
|
||||
|
||||
public void setFirstName(java.lang.String FirstName) {
|
||||
this.FirstName = FirstName;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "MiddleName")
|
||||
public java.lang.String getMiddleName() {
|
||||
return this.MiddleName;
|
||||
}
|
||||
|
||||
public void setMiddleName(java.lang.String MiddleName) {
|
||||
this.MiddleName = MiddleName;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "LastName", nullable = false)
|
||||
public java.lang.String getLastName() {
|
||||
return this.LastName;
|
||||
}
|
||||
|
||||
public void setLastName(java.lang.String LastName) {
|
||||
this.LastName = LastName;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "TelephoneNumber")
|
||||
public java.lang.String getTelephoneNumber() {
|
||||
return this.TelephoneNumber;
|
||||
}
|
||||
|
||||
public void setTelephoneNumber(java.lang.String TelephoneNumber) {
|
||||
this.TelephoneNumber = TelephoneNumber;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "TelephoneSpecialInstructions")
|
||||
public java.lang.String getTelephoneSpecialInstructions() {
|
||||
return this.TelephoneSpecialInstructions;
|
||||
}
|
||||
|
||||
public void setTelephoneSpecialInstructions(java.lang.String TelephoneSpecialInstructions) {
|
||||
this.TelephoneSpecialInstructions = TelephoneSpecialInstructions;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "Street")
|
||||
public java.lang.String getStreet() {
|
||||
return this.Street;
|
||||
}
|
||||
|
||||
public void setStreet(java.lang.String Street) {
|
||||
this.Street = Street;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "City")
|
||||
public java.lang.String getCity() {
|
||||
return this.City;
|
||||
}
|
||||
|
||||
public void setCity(java.lang.String City) {
|
||||
this.City = City;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "StateProvince")
|
||||
public java.lang.String getStateProvince() {
|
||||
return this.StateProvince;
|
||||
}
|
||||
|
||||
public void setStateProvince(java.lang.String StateProvince) {
|
||||
this.StateProvince = StateProvince;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "PostalCode")
|
||||
public java.lang.String getPostalCode() {
|
||||
return this.PostalCode;
|
||||
}
|
||||
|
||||
public void setPostalCode(java.lang.String PostalCode) {
|
||||
this.PostalCode = PostalCode;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "CountryRegion")
|
||||
public java.lang.String getCountryRegion() {
|
||||
return this.CountryRegion;
|
||||
}
|
||||
|
||||
public void setCountryRegion(java.lang.String CountryRegion) {
|
||||
this.CountryRegion = CountryRegion;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "HomeAddressSpecialInstructions")
|
||||
public java.lang.String getHomeAddressSpecialInstructions() {
|
||||
return this.HomeAddressSpecialInstructions;
|
||||
}
|
||||
|
||||
public void setHomeAddressSpecialInstructions(java.lang.String HomeAddressSpecialInstructions) {
|
||||
this.HomeAddressSpecialInstructions = HomeAddressSpecialInstructions;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "EMailAddress")
|
||||
public java.lang.String getEMailAddress() {
|
||||
return this.EMailAddress;
|
||||
}
|
||||
|
||||
public void setEMailAddress(java.lang.String EMailAddress) {
|
||||
this.EMailAddress = EMailAddress;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "EMailSpecialInstructions")
|
||||
public java.lang.String getEMailSpecialInstructions() {
|
||||
return this.EMailSpecialInstructions;
|
||||
}
|
||||
|
||||
public void setEMailSpecialInstructions(java.lang.String EMailSpecialInstructions) {
|
||||
this.EMailSpecialInstructions = EMailSpecialInstructions;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "EMailTelephoneNumber")
|
||||
public java.lang.String getEMailTelephoneNumber() {
|
||||
return this.EMailTelephoneNumber;
|
||||
}
|
||||
|
||||
public void setEMailTelephoneNumber(java.lang.String EMailTelephoneNumber) {
|
||||
this.EMailTelephoneNumber = EMailTelephoneNumber;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "rowguid", nullable = false)
|
||||
public java.lang.String getrowguid() {
|
||||
return this.rowguid;
|
||||
}
|
||||
|
||||
public void setrowguid(java.lang.String rowguid) {
|
||||
this.rowguid = rowguid;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "ModifiedDate", nullable = false)
|
||||
public java.sql.Timestamp getModifiedDate() {
|
||||
return this.ModifiedDate;
|
||||
}
|
||||
|
||||
public void setModifiedDate(java.sql.Timestamp ModifiedDate) {
|
||||
this.ModifiedDate = ModifiedDate;
|
||||
}
|
||||
}
|
||||
@ -1,85 +0,0 @@
|
||||
/**
|
||||
* This class is generated by jOOQ
|
||||
*/
|
||||
package org.jooq.examples.sqlserver.adventureworks.person.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.persistence.Entity
|
||||
@javax.persistence.Table(name = "vStateProvinceCountryRegion", schema = "Person")
|
||||
public class vStateProvinceCountryRegion implements java.io.Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1854848768;
|
||||
|
||||
private java.lang.Integer StateProvinceID;
|
||||
private java.lang.String StateProvinceCode;
|
||||
private java.lang.Boolean IsOnlyStateProvinceFlag;
|
||||
private java.lang.String StateProvinceName;
|
||||
private java.lang.Integer TerritoryID;
|
||||
private java.lang.String CountryRegionCode;
|
||||
private java.lang.String CountryRegionName;
|
||||
|
||||
@javax.persistence.Column(name = "StateProvinceID", nullable = false)
|
||||
public java.lang.Integer getStateProvinceID() {
|
||||
return this.StateProvinceID;
|
||||
}
|
||||
|
||||
public void setStateProvinceID(java.lang.Integer StateProvinceID) {
|
||||
this.StateProvinceID = StateProvinceID;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "StateProvinceCode", nullable = false)
|
||||
public java.lang.String getStateProvinceCode() {
|
||||
return this.StateProvinceCode;
|
||||
}
|
||||
|
||||
public void setStateProvinceCode(java.lang.String StateProvinceCode) {
|
||||
this.StateProvinceCode = StateProvinceCode;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "IsOnlyStateProvinceFlag", nullable = false)
|
||||
public java.lang.Boolean getIsOnlyStateProvinceFlag() {
|
||||
return this.IsOnlyStateProvinceFlag;
|
||||
}
|
||||
|
||||
public void setIsOnlyStateProvinceFlag(java.lang.Boolean IsOnlyStateProvinceFlag) {
|
||||
this.IsOnlyStateProvinceFlag = IsOnlyStateProvinceFlag;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "StateProvinceName", nullable = false)
|
||||
public java.lang.String getStateProvinceName() {
|
||||
return this.StateProvinceName;
|
||||
}
|
||||
|
||||
public void setStateProvinceName(java.lang.String StateProvinceName) {
|
||||
this.StateProvinceName = StateProvinceName;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "TerritoryID", nullable = false)
|
||||
public java.lang.Integer getTerritoryID() {
|
||||
return this.TerritoryID;
|
||||
}
|
||||
|
||||
public void setTerritoryID(java.lang.Integer TerritoryID) {
|
||||
this.TerritoryID = TerritoryID;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "CountryRegionCode", nullable = false)
|
||||
public java.lang.String getCountryRegionCode() {
|
||||
return this.CountryRegionCode;
|
||||
}
|
||||
|
||||
public void setCountryRegionCode(java.lang.String CountryRegionCode) {
|
||||
this.CountryRegionCode = CountryRegionCode;
|
||||
}
|
||||
|
||||
@javax.persistence.Column(name = "CountryRegionName", nullable = false)
|
||||
public java.lang.String getCountryRegionName() {
|
||||
return this.CountryRegionName;
|
||||
}
|
||||
|
||||
public void setCountryRegionName(java.lang.String CountryRegionName) {
|
||||
this.CountryRegionName = CountryRegionName;
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user