[#1211] Enforce method name disambiguation also when using custom strategies (regression of #182)

[#1212] Enforce identifier disambiguation also when using custom strategies (regression)
This commit is contained in:
Lukas Eder 2012-03-03 21:02:58 +00:00
parent f260fd6f07
commit 6441abaefb
25 changed files with 0 additions and 2636 deletions

View File

@ -1,42 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources;
/**
* This class is generated by jOOQ.
*/
public class HumanResources extends org.jooq.impl.SchemaImpl {
private static final long serialVersionUID = -2081613650;
/**
* The singleton instance of HumanResources
*/
public static final HumanResources HumanResources = new HumanResources();
/**
* No further instances allowed
*/
private HumanResources() {
super("HumanResources");
}
@Override
public final java.util.List<org.jooq.Table<?>> getTables() {
return java.util.Arrays.<org.jooq.Table<?>>asList(
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.Department.Department,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.Employee.Employee,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeAddress.EmployeeAddress,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeDepartmentHistory.EmployeeDepartmentHistory,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeePayHistory.EmployeePayHistory,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.JobCandidate.JobCandidate,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.Shift.Shift,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployee.vEmployee,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartment.vEmployeeDepartment,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartmentHistory.vEmployeeDepartmentHistory,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidate.vJobCandidate,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEducation.vJobCandidateEducation,
org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEmployment.vJobCandidateEmployment);
}
}

View File

@ -1,41 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources;
/**
* This class is generated by jOOQ.
*/
public class HumanResourcesFactory extends org.jooq.util.sqlserver.SQLServerFactory {
private static final long serialVersionUID = -503553162;
/**
* Create a factory with a connection
*
* @param connection The connection to use with objects created from this factory
*/
public HumanResourcesFactory(java.sql.Connection connection) {
super(connection);
}
/**
* Create a factory with a connection and a schema mapping
*
* @deprecated - 2.0.5 - Use {@link #HumanResourcesFactory(java.sql.Connection, org.jooq.conf.Settings)} instead
*/
@Deprecated
public HumanResourcesFactory(java.sql.Connection connection, org.jooq.SchemaMapping mapping) {
super(connection, mapping);
}
/**
* Create a factory with a connection and some settings
*
* @param connection The connection to use with objects created from this factory
* @param settings The settings to apply to objects created from this factory
*/
public HumanResourcesFactory(java.sql.Connection connection, org.jooq.conf.Settings settings) {
super(connection, settings);
}
}

View File

@ -1,112 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.routines;
/**
* This class is generated by jOOQ.
*/
public class uspUpdateEmployeeHireInfo extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = -956049043;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> EmployeeID = createParameter("EmployeeID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> Title = createParameter("Title", org.jooq.impl.SQLDataType.NVARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> HireDate = createParameter("HireDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> RateChangeDate = createParameter("RateChangeDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.math.BigDecimal> Rate = createParameter("Rate", org.jooq.impl.SQLDataType.NUMERIC);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Byte> PayFrequency = createParameter("PayFrequency", org.jooq.impl.SQLDataType.TINYINT);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Boolean> CurrentFlag = createParameter("CurrentFlag", org.jooq.impl.SQLDataType.BIT);
/**
* Create a new routine call instance
*/
public uspUpdateEmployeeHireInfo() {
super("uspUpdateEmployeeHireInfo", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
addInParameter(EmployeeID);
addInParameter(Title);
addInParameter(HireDate);
addInParameter(RateChangeDate);
addInParameter(Rate);
addInParameter(PayFrequency);
addInParameter(CurrentFlag);
}
/**
* Set the <code>EmployeeID</code> parameter to the routine
*/
public void setEmployeeID(java.lang.Integer value) {
setValue(EmployeeID, value);
}
/**
* Set the <code>Title</code> parameter to the routine
*/
public void setTitle(java.lang.String value) {
setValue(Title, value);
}
/**
* Set the <code>HireDate</code> parameter to the routine
*/
public void setHireDate(java.sql.Timestamp value) {
setValue(HireDate, value);
}
/**
* Set the <code>RateChangeDate</code> parameter to the routine
*/
public void setRateChangeDate(java.sql.Timestamp value) {
setValue(RateChangeDate, value);
}
/**
* Set the <code>Rate</code> parameter to the routine
*/
public void setRate(java.math.BigDecimal value) {
setValue(Rate, value);
}
/**
* Set the <code>PayFrequency</code> parameter to the routine
*/
public void setPayFrequency(java.lang.Byte value) {
setValue(PayFrequency, value);
}
/**
* Set the <code>CurrentFlag</code> parameter to the routine
*/
public void setCurrentFlag(java.lang.Boolean value) {
setValue(CurrentFlag, value);
}
}

View File

@ -1,99 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.routines;
/**
* This class is generated by jOOQ.
*/
public class uspUpdateEmployeeLogin extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = 940022256;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> EmployeeID = createParameter("EmployeeID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> ManagerID = createParameter("ManagerID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> LoginID = createParameter("LoginID", org.jooq.impl.SQLDataType.NVARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> Title = createParameter("Title", org.jooq.impl.SQLDataType.NVARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> HireDate = createParameter("HireDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Boolean> CurrentFlag = createParameter("CurrentFlag", org.jooq.impl.SQLDataType.BIT);
/**
* Create a new routine call instance
*/
public uspUpdateEmployeeLogin() {
super("uspUpdateEmployeeLogin", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
addInParameter(EmployeeID);
addInParameter(ManagerID);
addInParameter(LoginID);
addInParameter(Title);
addInParameter(HireDate);
addInParameter(CurrentFlag);
}
/**
* Set the <code>EmployeeID</code> parameter to the routine
*/
public void setEmployeeID(java.lang.Integer value) {
setValue(EmployeeID, value);
}
/**
* Set the <code>ManagerID</code> parameter to the routine
*/
public void setManagerID(java.lang.Integer value) {
setValue(ManagerID, value);
}
/**
* Set the <code>LoginID</code> parameter to the routine
*/
public void setLoginID(java.lang.String value) {
setValue(LoginID, value);
}
/**
* Set the <code>Title</code> parameter to the routine
*/
public void setTitle(java.lang.String value) {
setValue(Title, value);
}
/**
* Set the <code>HireDate</code> parameter to the routine
*/
public void setHireDate(java.sql.Timestamp value) {
setValue(HireDate, value);
}
/**
* Set the <code>CurrentFlag</code> parameter to the routine
*/
public void setCurrentFlag(java.lang.Boolean value) {
setValue(CurrentFlag, value);
}
}

View File

@ -1,86 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.routines;
/**
* This class is generated by jOOQ.
*/
public class uspUpdateEmployeePersonalInfo extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
private static final long serialVersionUID = -1260130444;
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.Integer> EmployeeID = createParameter("EmployeeID", org.jooq.impl.SQLDataType.INTEGER);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> NationalIDNumber = createParameter("NationalIDNumber", org.jooq.impl.SQLDataType.NVARCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.sql.Timestamp> BirthDate = createParameter("BirthDate", org.jooq.impl.SQLDataType.TIMESTAMP);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> MaritalStatus = createParameter("MaritalStatus", org.jooq.impl.SQLDataType.NCHAR);
/**
* An uncommented item
*/
public static final org.jooq.Parameter<java.lang.String> Gender = createParameter("Gender", org.jooq.impl.SQLDataType.NCHAR);
/**
* Create a new routine call instance
*/
public uspUpdateEmployeePersonalInfo() {
super("uspUpdateEmployeePersonalInfo", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
addInParameter(EmployeeID);
addInParameter(NationalIDNumber);
addInParameter(BirthDate);
addInParameter(MaritalStatus);
addInParameter(Gender);
}
/**
* Set the <code>EmployeeID</code> parameter to the routine
*/
public void setEmployeeID(java.lang.Integer value) {
setValue(EmployeeID, value);
}
/**
* Set the <code>NationalIDNumber</code> parameter to the routine
*/
public void setNationalIDNumber(java.lang.String value) {
setValue(NationalIDNumber, value);
}
/**
* Set the <code>BirthDate</code> parameter to the routine
*/
public void setBirthDate(java.sql.Timestamp value) {
setValue(BirthDate, value);
}
/**
* Set the <code>MaritalStatus</code> parameter to the routine
*/
public void setMaritalStatus(java.lang.String value) {
setValue(MaritalStatus, value);
}
/**
* Set the <code>Gender</code> parameter to the routine
*/
public void setGender(java.lang.String value) {
setValue(Gender, value);
}
}

View File

@ -1,102 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class EmployeeAddress extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress> {
private static final long serialVersionUID = -1255068532;
/**
* The singleton instance of HumanResources.EmployeeAddress
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeAddress EmployeeAddress = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeAddress();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*
* PRIMARY KEY
* <p>
* <code><pre>
* CONSTRAINT FK_EmployeeAddress_Employee_EmployeeID
* FOREIGN KEY (EmployeeID)
* REFERENCES HumanResources.Employee (EmployeeID)
* </pre></code>
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*
* PRIMARY KEY
* <p>
* <code><pre>
* CONSTRAINT FK_EmployeeAddress_Address_AddressID
* FOREIGN KEY (AddressID)
* REFERENCES Person.Address (AddressID)
* </pre></code>
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress, java.lang.Integer> AddressID = createField("AddressID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress, 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.humanresources.tables.records.EmployeeAddress, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* No further instances allowed
*/
private EmployeeAddress() {
super("EmployeeAddress", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private EmployeeAddress(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeAddress.EmployeeAddress);
}
@Override
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress> getMainKey() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_EmployeeAddress_EmployeeID_AddressID;
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress>> getKeys() {
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_EmployeeAddress_EmployeeID_AddressID);
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress, ?>> getReferences() {
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeAddress, ?>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.FK_EmployeeAddress_Employee_EmployeeID, org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.FK_EmployeeAddress_Address_AddressID);
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeAddress as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeAddress(alias);
}
}

View File

@ -1,122 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class EmployeeDepartmentHistory extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory> {
private static final long serialVersionUID = -1284157163;
/**
* The singleton instance of HumanResources.EmployeeDepartmentHistory
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeDepartmentHistory EmployeeDepartmentHistory = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeDepartmentHistory();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*
* PRIMARY KEY
* <p>
* <code><pre>
* CONSTRAINT FK_EmployeeDepartmentHistory_Employee_EmployeeID
* FOREIGN KEY (EmployeeID)
* REFERENCES HumanResources.Employee (EmployeeID)
* </pre></code>
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*
* PRIMARY KEY
* <p>
* <code><pre>
* CONSTRAINT FK_EmployeeDepartmentHistory_Department_DepartmentID
* FOREIGN KEY (DepartmentID)
* REFERENCES HumanResources.Department (DepartmentID)
* </pre></code>
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, java.lang.Short> DepartmentID = createField("DepartmentID", org.jooq.impl.SQLDataType.SMALLINT, this);
/**
* An uncommented item
*
* PRIMARY KEY
* <p>
* <code><pre>
* CONSTRAINT FK_EmployeeDepartmentHistory_Shift_ShiftID
* FOREIGN KEY (ShiftID)
* REFERENCES HumanResources.Shift (ShiftID)
* </pre></code>
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, java.lang.Byte> ShiftID = createField("ShiftID", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* An uncommented item
*
* PRIMARY KEY
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, java.sql.Timestamp> StartDate = createField("StartDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, java.sql.Timestamp> EndDate = createField("EndDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* No further instances allowed
*/
private EmployeeDepartmentHistory() {
super("EmployeeDepartmentHistory", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private EmployeeDepartmentHistory(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeDepartmentHistory.EmployeeDepartmentHistory);
}
@Override
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory> getMainKey() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_EmployeeDepartmentHistory_EmployeeID_StartDate_DepartmentID;
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory>> getKeys() {
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_EmployeeDepartmentHistory_EmployeeID_StartDate_DepartmentID);
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, ?>> getReferences() {
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeeDepartmentHistory, ?>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.FK_EmployeeDepartmentHistory_Employee_EmployeeID, org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.FK_EmployeeDepartmentHistory_Department_DepartmentID, org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.FK_EmployeeDepartmentHistory_Shift_ShiftID);
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeDepartmentHistory as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeeDepartmentHistory(alias);
}
}

View File

@ -1,101 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class EmployeePayHistory extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory> {
private static final long serialVersionUID = 780889872;
/**
* The singleton instance of HumanResources.EmployeePayHistory
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeePayHistory EmployeePayHistory = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeePayHistory();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*
* PRIMARY KEY
* <p>
* <code><pre>
* CONSTRAINT FK_EmployeePayHistory_Employee_EmployeeID
* FOREIGN KEY (EmployeeID)
* REFERENCES HumanResources.Employee (EmployeeID)
* </pre></code>
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*
* PRIMARY KEY
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory, java.sql.Timestamp> RateChangeDate = createField("RateChangeDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory, java.math.BigDecimal> Rate = createField("Rate", org.jooq.impl.SQLDataType.NUMERIC, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory, java.lang.Byte> PayFrequency = createField("PayFrequency", org.jooq.impl.SQLDataType.TINYINT, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* No further instances allowed
*/
private EmployeePayHistory() {
super("EmployeePayHistory", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private EmployeePayHistory(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeePayHistory.EmployeePayHistory);
}
@Override
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory> getMainKey() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_EmployeePayHistory_EmployeeID_RateChangeDate;
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory>> getKeys() {
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_EmployeePayHistory_EmployeeID_RateChangeDate);
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory, ?>> getReferences() {
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.EmployeePayHistory, ?>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.FK_EmployeePayHistory_Employee_EmployeeID);
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeePayHistory as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.EmployeePayHistory(alias);
}
}

View File

@ -1,102 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class JobCandidate extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate> {
private static final long serialVersionUID = 1552797788;
/**
* The singleton instance of HumanResources.JobCandidate
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.JobCandidate JobCandidate = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.JobCandidate();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*
* PRIMARY KEY
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate, java.lang.Integer> JobCandidateID = createField("JobCandidateID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
* <p>
* <code><pre>
* CONSTRAINT FK_JobCandidate_Employee_EmployeeID
* FOREIGN KEY (EmployeeID)
* REFERENCES HumanResources.Employee (EmployeeID)
* </pre></code>
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*
* The SQL type of this item (xml, ) could not be mapped.<br/>
* Deserialising this field might not work!
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate, java.lang.Object> Resume = createField("Resume", org.jooq.util.sqlserver.SQLServerDataType.getDefaultDataType("xml"), this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* No further instances allowed
*/
private JobCandidate() {
super("JobCandidate", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private JobCandidate(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.JobCandidate.JobCandidate);
}
@Override
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate, java.lang.Integer> getIdentity() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.IDENTITY_JobCandidate;
}
@Override
public org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate> getMainKey() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_JobCandidate_JobCandidateID;
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate>> getKeys() {
return java.util.Arrays.<org.jooq.UniqueKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.PK_JobCandidate_JobCandidateID);
}
@Override
@SuppressWarnings("unchecked")
public java.util.List<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate, ?>> getReferences() {
return java.util.Arrays.<org.jooq.ForeignKey<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.JobCandidate, ?>>asList(org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.FK_JobCandidate_Employee_EmployeeID);
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.JobCandidate as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.JobCandidate(alias);
}
}

View File

@ -1,137 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class vEmployee extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee> {
private static final long serialVersionUID = 172934681;
/**
* The singleton instance of HumanResources.vEmployee
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployee vEmployee = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployee();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, java.lang.String> Title = createField("Title", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, 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.humanresources.tables.records.vEmployee, 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.humanresources.tables.records.vEmployee, 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.humanresources.tables.records.vEmployee, java.lang.String> Suffix = createField("Suffix", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, java.lang.String> JobTitle = createField("JobTitle", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, java.lang.String> Phone = createField("Phone", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, 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.humanresources.tables.records.vEmployee, java.lang.Integer> EmailPromotion = createField("EmailPromotion", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, java.lang.String> AddressLine1 = createField("AddressLine1", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, java.lang.String> AddressLine2 = createField("AddressLine2", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, 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.humanresources.tables.records.vEmployee, 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.humanresources.tables.records.vEmployee, 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.humanresources.tables.records.vEmployee, java.lang.String> CountryRegionName = createField("CountryRegionName", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*
* The SQL type of this item (xml, ) could not be mapped.<br/>
* Deserialising this field might not work!
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployee, java.lang.Object> AdditionalContactInfo = createField("AdditionalContactInfo", org.jooq.util.sqlserver.SQLServerDataType.getDefaultDataType("xml"), this);
/**
* No further instances allowed
*/
private vEmployee() {
super("vEmployee", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private vEmployee(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployee.vEmployee);
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployee as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployee(alias);
}
}

View File

@ -1,99 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class vEmployeeDepartment extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment> {
private static final long serialVersionUID = -1813212640;
/**
* The singleton instance of HumanResources.vEmployeeDepartment
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartment vEmployeeDepartment = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartment();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment, java.lang.String> Title = createField("Title", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment, 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.humanresources.tables.records.vEmployeeDepartment, 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.humanresources.tables.records.vEmployeeDepartment, 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.humanresources.tables.records.vEmployeeDepartment, java.lang.String> Suffix = createField("Suffix", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment, java.lang.String> JobTitle = createField("JobTitle", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment, java.lang.String> Department = createField("Department", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment, java.lang.String> GroupName = createField("GroupName", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartment, java.sql.Timestamp> StartDate = createField("StartDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* No further instances allowed
*/
private vEmployeeDepartment() {
super("vEmployeeDepartment", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private vEmployeeDepartment(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartment.vEmployeeDepartment);
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartment as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartment(alias);
}
}

View File

@ -1,104 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class vEmployeeDepartmentHistory extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory> {
private static final long serialVersionUID = -1309729877;
/**
* The singleton instance of HumanResources.vEmployeeDepartmentHistory
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartmentHistory vEmployeeDepartmentHistory = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartmentHistory();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, java.lang.String> Title = createField("Title", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, 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.humanresources.tables.records.vEmployeeDepartmentHistory, 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.humanresources.tables.records.vEmployeeDepartmentHistory, 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.humanresources.tables.records.vEmployeeDepartmentHistory, java.lang.String> Suffix = createField("Suffix", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, java.lang.String> Shift = createField("Shift", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, java.lang.String> Department = createField("Department", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, java.lang.String> GroupName = createField("GroupName", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, java.sql.Timestamp> StartDate = createField("StartDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vEmployeeDepartmentHistory, java.sql.Timestamp> EndDate = createField("EndDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* No further instances allowed
*/
private vEmployeeDepartmentHistory() {
super("vEmployeeDepartmentHistory", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private vEmployeeDepartmentHistory(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartmentHistory.vEmployeeDepartmentHistory);
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartmentHistory as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vEmployeeDepartmentHistory(alias);
}
}

View File

@ -1,134 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class vJobCandidate extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate> {
private static final long serialVersionUID = 1249746846;
/**
* The singleton instance of HumanResources.vJobCandidate
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidate vJobCandidate = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidate();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.Integer> JobCandidateID = createField("JobCandidateID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.Integer> EmployeeID = createField("EmployeeID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Name_Prefix = createField("Name.Prefix", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Name_First = createField("Name.First", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Name_Middle = createField("Name.Middle", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Name_Last = createField("Name.Last", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Name_Suffix = createField("Name.Suffix", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Skills = createField("Skills", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Addr_Type = createField("Addr.Type", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Addr_Loc_CountryRegion = createField("Addr.Loc.CountryRegion", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Addr_Loc_State = createField("Addr.Loc.State", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Addr_Loc_City = createField("Addr.Loc.City", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> Addr_PostalCode = createField("Addr.PostalCode", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> EMail = createField("EMail", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.String> WebSite = createField("WebSite", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.sql.Timestamp> ModifiedDate = createField("ModifiedDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* No further instances allowed
*/
private vJobCandidate() {
super("vJobCandidate", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private vJobCandidate(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidate.vJobCandidate);
}
@Override
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidate, java.lang.Integer> getIdentity() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.IDENTITY_vJobCandidate;
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidate as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidate(alias);
}
}

View File

@ -1,119 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class vJobCandidateEducation extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation> {
private static final long serialVersionUID = -347515099;
/**
* The singleton instance of HumanResources.vJobCandidateEducation
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEducation vJobCandidateEducation = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEducation();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.Integer> JobCandidateID = createField("JobCandidateID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_Level = createField("Edu.Level", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.sql.Timestamp> Edu_StartDate = createField("Edu.StartDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.sql.Timestamp> Edu_EndDate = createField("Edu.EndDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_Degree = createField("Edu.Degree", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_Major = createField("Edu.Major", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_Minor = createField("Edu.Minor", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_GPA = createField("Edu.GPA", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_GPAScale = createField("Edu.GPAScale", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_School = createField("Edu.School", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_Loc_CountryRegion = createField("Edu.Loc.CountryRegion", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_Loc_State = createField("Edu.Loc.State", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.String> Edu_Loc_City = createField("Edu.Loc.City", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* No further instances allowed
*/
private vJobCandidateEducation() {
super("vJobCandidateEducation", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private vJobCandidateEducation(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEducation.vJobCandidateEducation);
}
@Override
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEducation, java.lang.Integer> getIdentity() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.IDENTITY_vJobCandidateEducation;
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEducation as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEducation(alias);
}
}

View File

@ -1,109 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables;
/**
* This class is generated by jOOQ.
*/
public class vJobCandidateEmployment extends org.jooq.impl.TableImpl<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment> {
private static final long serialVersionUID = 1863731069;
/**
* The singleton instance of HumanResources.vJobCandidateEmployment
*/
public static final org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEmployment vJobCandidateEmployment = new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEmployment();
/**
* The class holding records for this type
*/
private static final java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment> __RECORD_TYPE = org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment.class;
/**
* The class holding records for this type
*/
@Override
public java.lang.Class<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment> getRecordType() {
return __RECORD_TYPE;
}
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.Integer> JobCandidateID = createField("JobCandidateID", org.jooq.impl.SQLDataType.INTEGER, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.sql.Timestamp> Emp_StartDate = createField("Emp.StartDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.sql.Timestamp> Emp_EndDate = createField("Emp.EndDate", org.jooq.impl.SQLDataType.TIMESTAMP, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_OrgName = createField("Emp.OrgName", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_JobTitle = createField("Emp.JobTitle", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_Responsibility = createField("Emp.Responsibility", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_FunctionCategory = createField("Emp.FunctionCategory", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_IndustryCategory = createField("Emp.IndustryCategory", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_Loc_CountryRegion = createField("Emp.Loc.CountryRegion", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_Loc_State = createField("Emp.Loc.State", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* An uncommented item
*/
public final org.jooq.TableField<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.String> Emp_Loc_City = createField("Emp.Loc.City", org.jooq.impl.SQLDataType.NVARCHAR, this);
/**
* No further instances allowed
*/
private vJobCandidateEmployment() {
super("vJobCandidateEmployment", org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources);
}
/**
* No further instances allowed
*/
private vJobCandidateEmployment(java.lang.String alias) {
super(alias, org.jooq.examples.sqlserver.adventureworks.humanresources.HumanResources.HumanResources, org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEmployment.vJobCandidateEmployment);
}
@Override
public org.jooq.Identity<org.jooq.examples.sqlserver.adventureworks.humanresources.tables.records.vJobCandidateEmployment, java.lang.Integer> getIdentity() {
return org.jooq.examples.sqlserver.adventureworks.humanresources.Keys.IDENTITY_vJobCandidateEmployment;
}
@Override
public org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEmployment as(java.lang.String alias) {
return new org.jooq.examples.sqlserver.adventureworks.humanresources.tables.vJobCandidateEmployment(alias);
}
}

View File

@ -1,57 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "EmployeeAddress", schema = "HumanResources", uniqueConstraints = {
@javax.persistence.UniqueConstraint(columnNames = {"EmployeeID", "AddressID"})
})
public class EmployeeAddress implements java.io.Serializable {
private static final long serialVersionUID = -1638475789;
private java.lang.Integer EmployeeID;
private java.lang.Integer AddressID;
private java.lang.String rowguid;
private java.sql.Timestamp ModifiedDate;
@javax.persistence.Column(name = "EmployeeID", nullable = false)
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "AddressID", nullable = false)
public java.lang.Integer getAddressID() {
return this.AddressID;
}
public void setAddressID(java.lang.Integer AddressID) {
this.AddressID = AddressID;
}
@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;
}
}

View File

@ -1,77 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "EmployeeDepartmentHistory", schema = "HumanResources", uniqueConstraints = {
@javax.persistence.UniqueConstraint(columnNames = {"EmployeeID", "StartDate", "DepartmentID", "ShiftID"})
})
public class EmployeeDepartmentHistory implements java.io.Serializable {
private static final long serialVersionUID = 968981254;
private java.lang.Integer EmployeeID;
private java.lang.Short DepartmentID;
private java.lang.Byte ShiftID;
private java.sql.Timestamp StartDate;
private java.sql.Timestamp EndDate;
private java.sql.Timestamp ModifiedDate;
@javax.persistence.Column(name = "EmployeeID", nullable = false)
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "DepartmentID", nullable = false)
public java.lang.Short getDepartmentID() {
return this.DepartmentID;
}
public void setDepartmentID(java.lang.Short DepartmentID) {
this.DepartmentID = DepartmentID;
}
@javax.persistence.Column(name = "ShiftID", nullable = false)
public java.lang.Byte getShiftID() {
return this.ShiftID;
}
public void setShiftID(java.lang.Byte ShiftID) {
this.ShiftID = ShiftID;
}
@javax.persistence.Column(name = "StartDate", nullable = false)
public java.sql.Timestamp getStartDate() {
return this.StartDate;
}
public void setStartDate(java.sql.Timestamp StartDate) {
this.StartDate = StartDate;
}
@javax.persistence.Column(name = "EndDate")
public java.sql.Timestamp getEndDate() {
return this.EndDate;
}
public void setEndDate(java.sql.Timestamp EndDate) {
this.EndDate = EndDate;
}
@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;
}
}

View File

@ -1,67 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "EmployeePayHistory", schema = "HumanResources", uniqueConstraints = {
@javax.persistence.UniqueConstraint(columnNames = {"EmployeeID", "RateChangeDate"})
})
public class EmployeePayHistory implements java.io.Serializable {
private static final long serialVersionUID = -965404362;
private java.lang.Integer EmployeeID;
private java.sql.Timestamp RateChangeDate;
private java.math.BigDecimal Rate;
private java.lang.Byte PayFrequency;
private java.sql.Timestamp ModifiedDate;
@javax.persistence.Column(name = "EmployeeID", nullable = false)
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "RateChangeDate", nullable = false)
public java.sql.Timestamp getRateChangeDate() {
return this.RateChangeDate;
}
public void setRateChangeDate(java.sql.Timestamp RateChangeDate) {
this.RateChangeDate = RateChangeDate;
}
@javax.persistence.Column(name = "Rate", nullable = false)
public java.math.BigDecimal getRate() {
return this.Rate;
}
public void setRate(java.math.BigDecimal Rate) {
this.Rate = Rate;
}
@javax.persistence.Column(name = "PayFrequency", nullable = false)
public java.lang.Byte getPayFrequency() {
return this.PayFrequency;
}
public void setPayFrequency(java.lang.Byte PayFrequency) {
this.PayFrequency = PayFrequency;
}
@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;
}
}

View File

@ -1,56 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "JobCandidate", schema = "HumanResources")
public class JobCandidate implements java.io.Serializable {
private static final long serialVersionUID = 1518856052;
private java.lang.Integer JobCandidateID;
private java.lang.Integer EmployeeID;
private java.lang.Object Resume;
private java.sql.Timestamp ModifiedDate;
@javax.persistence.Id
@javax.persistence.Column(name = "JobCandidateID", unique = true, nullable = false)
public java.lang.Integer getJobCandidateID() {
return this.JobCandidateID;
}
public void setJobCandidateID(java.lang.Integer JobCandidateID) {
this.JobCandidateID = JobCandidateID;
}
@javax.persistence.Column(name = "EmployeeID")
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "Resume")
public java.lang.Object getResume() {
return this.Resume;
}
public void setResume(java.lang.Object Resume) {
this.Resume = Resume;
}
@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;
}
}

View File

@ -1,185 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "vEmployee", schema = "HumanResources")
public class vEmployee implements java.io.Serializable {
private static final long serialVersionUID = -307072818;
private java.lang.Integer EmployeeID;
private java.lang.String Title;
private java.lang.String FirstName;
private java.lang.String MiddleName;
private java.lang.String LastName;
private java.lang.String Suffix;
private java.lang.String JobTitle;
private java.lang.String Phone;
private java.lang.String EmailAddress;
private java.lang.Integer EmailPromotion;
private java.lang.String AddressLine1;
private java.lang.String AddressLine2;
private java.lang.String City;
private java.lang.String StateProvinceName;
private java.lang.String PostalCode;
private java.lang.String CountryRegionName;
private java.lang.Object AdditionalContactInfo;
@javax.persistence.Column(name = "EmployeeID", nullable = false)
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "Title")
public java.lang.String getTitle() {
return this.Title;
}
public void setTitle(java.lang.String Title) {
this.Title = Title;
}
@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 = "Suffix")
public java.lang.String getSuffix() {
return this.Suffix;
}
public void setSuffix(java.lang.String Suffix) {
this.Suffix = Suffix;
}
@javax.persistence.Column(name = "JobTitle", nullable = false)
public java.lang.String getJobTitle() {
return this.JobTitle;
}
public void setJobTitle(java.lang.String JobTitle) {
this.JobTitle = JobTitle;
}
@javax.persistence.Column(name = "Phone")
public java.lang.String getPhone() {
return this.Phone;
}
public void setPhone(java.lang.String Phone) {
this.Phone = Phone;
}
@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 = "EmailPromotion", nullable = false)
public java.lang.Integer getEmailPromotion() {
return this.EmailPromotion;
}
public void setEmailPromotion(java.lang.Integer EmailPromotion) {
this.EmailPromotion = EmailPromotion;
}
@javax.persistence.Column(name = "AddressLine1", nullable = false)
public java.lang.String getAddressLine1() {
return this.AddressLine1;
}
public void setAddressLine1(java.lang.String AddressLine1) {
this.AddressLine1 = AddressLine1;
}
@javax.persistence.Column(name = "AddressLine2")
public java.lang.String getAddressLine2() {
return this.AddressLine2;
}
public void setAddressLine2(java.lang.String AddressLine2) {
this.AddressLine2 = AddressLine2;
}
@javax.persistence.Column(name = "City", nullable = false)
public java.lang.String getCity() {
return this.City;
}
public void setCity(java.lang.String City) {
this.City = City;
}
@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 = "PostalCode", nullable = false)
public java.lang.String getPostalCode() {
return this.PostalCode;
}
public void setPostalCode(java.lang.String PostalCode) {
this.PostalCode = PostalCode;
}
@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;
}
@javax.persistence.Column(name = "AdditionalContactInfo")
public java.lang.Object getAdditionalContactInfo() {
return this.AdditionalContactInfo;
}
public void setAdditionalContactInfo(java.lang.Object AdditionalContactInfo) {
this.AdditionalContactInfo = AdditionalContactInfo;
}
}

View File

@ -1,115 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "vEmployeeDepartment", schema = "HumanResources")
public class vEmployeeDepartment implements java.io.Serializable {
private static final long serialVersionUID = -2049728459;
private java.lang.Integer EmployeeID;
private java.lang.String Title;
private java.lang.String FirstName;
private java.lang.String MiddleName;
private java.lang.String LastName;
private java.lang.String Suffix;
private java.lang.String JobTitle;
private java.lang.String Department;
private java.lang.String GroupName;
private java.sql.Timestamp StartDate;
@javax.persistence.Column(name = "EmployeeID", nullable = false)
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "Title")
public java.lang.String getTitle() {
return this.Title;
}
public void setTitle(java.lang.String Title) {
this.Title = Title;
}
@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 = "Suffix")
public java.lang.String getSuffix() {
return this.Suffix;
}
public void setSuffix(java.lang.String Suffix) {
this.Suffix = Suffix;
}
@javax.persistence.Column(name = "JobTitle", nullable = false)
public java.lang.String getJobTitle() {
return this.JobTitle;
}
public void setJobTitle(java.lang.String JobTitle) {
this.JobTitle = JobTitle;
}
@javax.persistence.Column(name = "Department", nullable = false)
public java.lang.String getDepartment() {
return this.Department;
}
public void setDepartment(java.lang.String Department) {
this.Department = Department;
}
@javax.persistence.Column(name = "GroupName", nullable = false)
public java.lang.String getGroupName() {
return this.GroupName;
}
public void setGroupName(java.lang.String GroupName) {
this.GroupName = GroupName;
}
@javax.persistence.Column(name = "StartDate", nullable = false)
public java.sql.Timestamp getStartDate() {
return this.StartDate;
}
public void setStartDate(java.sql.Timestamp StartDate) {
this.StartDate = StartDate;
}
}

View File

@ -1,125 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "vEmployeeDepartmentHistory", schema = "HumanResources")
public class vEmployeeDepartmentHistory implements java.io.Serializable {
private static final long serialVersionUID = 959159722;
private java.lang.Integer EmployeeID;
private java.lang.String Title;
private java.lang.String FirstName;
private java.lang.String MiddleName;
private java.lang.String LastName;
private java.lang.String Suffix;
private java.lang.String Shift;
private java.lang.String Department;
private java.lang.String GroupName;
private java.sql.Timestamp StartDate;
private java.sql.Timestamp EndDate;
@javax.persistence.Column(name = "EmployeeID", nullable = false)
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "Title")
public java.lang.String getTitle() {
return this.Title;
}
public void setTitle(java.lang.String Title) {
this.Title = Title;
}
@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 = "Suffix")
public java.lang.String getSuffix() {
return this.Suffix;
}
public void setSuffix(java.lang.String Suffix) {
this.Suffix = Suffix;
}
@javax.persistence.Column(name = "Shift", nullable = false)
public java.lang.String getShift() {
return this.Shift;
}
public void setShift(java.lang.String Shift) {
this.Shift = Shift;
}
@javax.persistence.Column(name = "Department", nullable = false)
public java.lang.String getDepartment() {
return this.Department;
}
public void setDepartment(java.lang.String Department) {
this.Department = Department;
}
@javax.persistence.Column(name = "GroupName", nullable = false)
public java.lang.String getGroupName() {
return this.GroupName;
}
public void setGroupName(java.lang.String GroupName) {
this.GroupName = GroupName;
}
@javax.persistence.Column(name = "StartDate", nullable = false)
public java.sql.Timestamp getStartDate() {
return this.StartDate;
}
public void setStartDate(java.sql.Timestamp StartDate) {
this.StartDate = StartDate;
}
@javax.persistence.Column(name = "EndDate")
public java.sql.Timestamp getEndDate() {
return this.EndDate;
}
public void setEndDate(java.sql.Timestamp EndDate) {
this.EndDate = EndDate;
}
}

View File

@ -1,175 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "vJobCandidate", schema = "HumanResources")
public class vJobCandidate implements java.io.Serializable {
private static final long serialVersionUID = 2007044112;
private java.lang.Integer JobCandidateID;
private java.lang.Integer EmployeeID;
private java.lang.String Name_Prefix;
private java.lang.String Name_First;
private java.lang.String Name_Middle;
private java.lang.String Name_Last;
private java.lang.String Name_Suffix;
private java.lang.String Skills;
private java.lang.String Addr_Type;
private java.lang.String Addr_Loc_CountryRegion;
private java.lang.String Addr_Loc_State;
private java.lang.String Addr_Loc_City;
private java.lang.String Addr_PostalCode;
private java.lang.String EMail;
private java.lang.String WebSite;
private java.sql.Timestamp ModifiedDate;
@javax.persistence.Column(name = "JobCandidateID", nullable = false)
public java.lang.Integer getJobCandidateID() {
return this.JobCandidateID;
}
public void setJobCandidateID(java.lang.Integer JobCandidateID) {
this.JobCandidateID = JobCandidateID;
}
@javax.persistence.Column(name = "EmployeeID")
public java.lang.Integer getEmployeeID() {
return this.EmployeeID;
}
public void setEmployeeID(java.lang.Integer EmployeeID) {
this.EmployeeID = EmployeeID;
}
@javax.persistence.Column(name = "Name.Prefix")
public java.lang.String getName_Prefix() {
return this.Name_Prefix;
}
public void setName_Prefix(java.lang.String Name_Prefix) {
this.Name_Prefix = Name_Prefix;
}
@javax.persistence.Column(name = "Name.First")
public java.lang.String getName_First() {
return this.Name_First;
}
public void setName_First(java.lang.String Name_First) {
this.Name_First = Name_First;
}
@javax.persistence.Column(name = "Name.Middle")
public java.lang.String getName_Middle() {
return this.Name_Middle;
}
public void setName_Middle(java.lang.String Name_Middle) {
this.Name_Middle = Name_Middle;
}
@javax.persistence.Column(name = "Name.Last")
public java.lang.String getName_Last() {
return this.Name_Last;
}
public void setName_Last(java.lang.String Name_Last) {
this.Name_Last = Name_Last;
}
@javax.persistence.Column(name = "Name.Suffix")
public java.lang.String getName_Suffix() {
return this.Name_Suffix;
}
public void setName_Suffix(java.lang.String Name_Suffix) {
this.Name_Suffix = Name_Suffix;
}
@javax.persistence.Column(name = "Skills")
public java.lang.String getSkills() {
return this.Skills;
}
public void setSkills(java.lang.String Skills) {
this.Skills = Skills;
}
@javax.persistence.Column(name = "Addr.Type")
public java.lang.String getAddr_Type() {
return this.Addr_Type;
}
public void setAddr_Type(java.lang.String Addr_Type) {
this.Addr_Type = Addr_Type;
}
@javax.persistence.Column(name = "Addr.Loc.CountryRegion")
public java.lang.String getAddr_Loc_CountryRegion() {
return this.Addr_Loc_CountryRegion;
}
public void setAddr_Loc_CountryRegion(java.lang.String Addr_Loc_CountryRegion) {
this.Addr_Loc_CountryRegion = Addr_Loc_CountryRegion;
}
@javax.persistence.Column(name = "Addr.Loc.State")
public java.lang.String getAddr_Loc_State() {
return this.Addr_Loc_State;
}
public void setAddr_Loc_State(java.lang.String Addr_Loc_State) {
this.Addr_Loc_State = Addr_Loc_State;
}
@javax.persistence.Column(name = "Addr.Loc.City")
public java.lang.String getAddr_Loc_City() {
return this.Addr_Loc_City;
}
public void setAddr_Loc_City(java.lang.String Addr_Loc_City) {
this.Addr_Loc_City = Addr_Loc_City;
}
@javax.persistence.Column(name = "Addr.PostalCode")
public java.lang.String getAddr_PostalCode() {
return this.Addr_PostalCode;
}
public void setAddr_PostalCode(java.lang.String Addr_PostalCode) {
this.Addr_PostalCode = Addr_PostalCode;
}
@javax.persistence.Column(name = "EMail")
public java.lang.String getEMail() {
return this.EMail;
}
public void setEMail(java.lang.String EMail) {
this.EMail = EMail;
}
@javax.persistence.Column(name = "WebSite")
public java.lang.String getWebSite() {
return this.WebSite;
}
public void setWebSite(java.lang.String WebSite) {
this.WebSite = WebSite;
}
@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;
}
}

View File

@ -1,145 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "vJobCandidateEducation", schema = "HumanResources")
public class vJobCandidateEducation implements java.io.Serializable {
private static final long serialVersionUID = 1747829609;
private java.lang.Integer JobCandidateID;
private java.lang.String Edu_Level;
private java.sql.Timestamp Edu_StartDate;
private java.sql.Timestamp Edu_EndDate;
private java.lang.String Edu_Degree;
private java.lang.String Edu_Major;
private java.lang.String Edu_Minor;
private java.lang.String Edu_GPA;
private java.lang.String Edu_GPAScale;
private java.lang.String Edu_School;
private java.lang.String Edu_Loc_CountryRegion;
private java.lang.String Edu_Loc_State;
private java.lang.String Edu_Loc_City;
@javax.persistence.Column(name = "JobCandidateID", nullable = false)
public java.lang.Integer getJobCandidateID() {
return this.JobCandidateID;
}
public void setJobCandidateID(java.lang.Integer JobCandidateID) {
this.JobCandidateID = JobCandidateID;
}
@javax.persistence.Column(name = "Edu.Level")
public java.lang.String getEdu_Level() {
return this.Edu_Level;
}
public void setEdu_Level(java.lang.String Edu_Level) {
this.Edu_Level = Edu_Level;
}
@javax.persistence.Column(name = "Edu.StartDate")
public java.sql.Timestamp getEdu_StartDate() {
return this.Edu_StartDate;
}
public void setEdu_StartDate(java.sql.Timestamp Edu_StartDate) {
this.Edu_StartDate = Edu_StartDate;
}
@javax.persistence.Column(name = "Edu.EndDate")
public java.sql.Timestamp getEdu_EndDate() {
return this.Edu_EndDate;
}
public void setEdu_EndDate(java.sql.Timestamp Edu_EndDate) {
this.Edu_EndDate = Edu_EndDate;
}
@javax.persistence.Column(name = "Edu.Degree")
public java.lang.String getEdu_Degree() {
return this.Edu_Degree;
}
public void setEdu_Degree(java.lang.String Edu_Degree) {
this.Edu_Degree = Edu_Degree;
}
@javax.persistence.Column(name = "Edu.Major")
public java.lang.String getEdu_Major() {
return this.Edu_Major;
}
public void setEdu_Major(java.lang.String Edu_Major) {
this.Edu_Major = Edu_Major;
}
@javax.persistence.Column(name = "Edu.Minor")
public java.lang.String getEdu_Minor() {
return this.Edu_Minor;
}
public void setEdu_Minor(java.lang.String Edu_Minor) {
this.Edu_Minor = Edu_Minor;
}
@javax.persistence.Column(name = "Edu.GPA")
public java.lang.String getEdu_GPA() {
return this.Edu_GPA;
}
public void setEdu_GPA(java.lang.String Edu_GPA) {
this.Edu_GPA = Edu_GPA;
}
@javax.persistence.Column(name = "Edu.GPAScale")
public java.lang.String getEdu_GPAScale() {
return this.Edu_GPAScale;
}
public void setEdu_GPAScale(java.lang.String Edu_GPAScale) {
this.Edu_GPAScale = Edu_GPAScale;
}
@javax.persistence.Column(name = "Edu.School")
public java.lang.String getEdu_School() {
return this.Edu_School;
}
public void setEdu_School(java.lang.String Edu_School) {
this.Edu_School = Edu_School;
}
@javax.persistence.Column(name = "Edu.Loc.CountryRegion")
public java.lang.String getEdu_Loc_CountryRegion() {
return this.Edu_Loc_CountryRegion;
}
public void setEdu_Loc_CountryRegion(java.lang.String Edu_Loc_CountryRegion) {
this.Edu_Loc_CountryRegion = Edu_Loc_CountryRegion;
}
@javax.persistence.Column(name = "Edu.Loc.State")
public java.lang.String getEdu_Loc_State() {
return this.Edu_Loc_State;
}
public void setEdu_Loc_State(java.lang.String Edu_Loc_State) {
this.Edu_Loc_State = Edu_Loc_State;
}
@javax.persistence.Column(name = "Edu.Loc.City")
public java.lang.String getEdu_Loc_City() {
return this.Edu_Loc_City;
}
public void setEdu_Loc_City(java.lang.String Edu_Loc_City) {
this.Edu_Loc_City = Edu_Loc_City;
}
}

View File

@ -1,125 +0,0 @@
/**
* This class is generated by jOOQ
*/
package org.jooq.examples.sqlserver.adventureworks.humanresources.tables.pojos;
/**
* This class is generated by jOOQ.
*/
@javax.persistence.Entity
@javax.persistence.Table(name = "vJobCandidateEmployment", schema = "HumanResources")
public class vJobCandidateEmployment implements java.io.Serializable {
private static final long serialVersionUID = 865736883;
private java.lang.Integer JobCandidateID;
private java.sql.Timestamp Emp_StartDate;
private java.sql.Timestamp Emp_EndDate;
private java.lang.String Emp_OrgName;
private java.lang.String Emp_JobTitle;
private java.lang.String Emp_Responsibility;
private java.lang.String Emp_FunctionCategory;
private java.lang.String Emp_IndustryCategory;
private java.lang.String Emp_Loc_CountryRegion;
private java.lang.String Emp_Loc_State;
private java.lang.String Emp_Loc_City;
@javax.persistence.Column(name = "JobCandidateID", nullable = false)
public java.lang.Integer getJobCandidateID() {
return this.JobCandidateID;
}
public void setJobCandidateID(java.lang.Integer JobCandidateID) {
this.JobCandidateID = JobCandidateID;
}
@javax.persistence.Column(name = "Emp.StartDate")
public java.sql.Timestamp getEmp_StartDate() {
return this.Emp_StartDate;
}
public void setEmp_StartDate(java.sql.Timestamp Emp_StartDate) {
this.Emp_StartDate = Emp_StartDate;
}
@javax.persistence.Column(name = "Emp.EndDate")
public java.sql.Timestamp getEmp_EndDate() {
return this.Emp_EndDate;
}
public void setEmp_EndDate(java.sql.Timestamp Emp_EndDate) {
this.Emp_EndDate = Emp_EndDate;
}
@javax.persistence.Column(name = "Emp.OrgName")
public java.lang.String getEmp_OrgName() {
return this.Emp_OrgName;
}
public void setEmp_OrgName(java.lang.String Emp_OrgName) {
this.Emp_OrgName = Emp_OrgName;
}
@javax.persistence.Column(name = "Emp.JobTitle")
public java.lang.String getEmp_JobTitle() {
return this.Emp_JobTitle;
}
public void setEmp_JobTitle(java.lang.String Emp_JobTitle) {
this.Emp_JobTitle = Emp_JobTitle;
}
@javax.persistence.Column(name = "Emp.Responsibility")
public java.lang.String getEmp_Responsibility() {
return this.Emp_Responsibility;
}
public void setEmp_Responsibility(java.lang.String Emp_Responsibility) {
this.Emp_Responsibility = Emp_Responsibility;
}
@javax.persistence.Column(name = "Emp.FunctionCategory")
public java.lang.String getEmp_FunctionCategory() {
return this.Emp_FunctionCategory;
}
public void setEmp_FunctionCategory(java.lang.String Emp_FunctionCategory) {
this.Emp_FunctionCategory = Emp_FunctionCategory;
}
@javax.persistence.Column(name = "Emp.IndustryCategory")
public java.lang.String getEmp_IndustryCategory() {
return this.Emp_IndustryCategory;
}
public void setEmp_IndustryCategory(java.lang.String Emp_IndustryCategory) {
this.Emp_IndustryCategory = Emp_IndustryCategory;
}
@javax.persistence.Column(name = "Emp.Loc.CountryRegion")
public java.lang.String getEmp_Loc_CountryRegion() {
return this.Emp_Loc_CountryRegion;
}
public void setEmp_Loc_CountryRegion(java.lang.String Emp_Loc_CountryRegion) {
this.Emp_Loc_CountryRegion = Emp_Loc_CountryRegion;
}
@javax.persistence.Column(name = "Emp.Loc.State")
public java.lang.String getEmp_Loc_State() {
return this.Emp_Loc_State;
}
public void setEmp_Loc_State(java.lang.String Emp_Loc_State) {
this.Emp_Loc_State = Emp_Loc_State;
}
@javax.persistence.Column(name = "Emp.Loc.City")
public java.lang.String getEmp_Loc_City() {
return this.Emp_Loc_City;
}
public void setEmp_Loc_City(java.lang.String Emp_Loc_City) {
this.Emp_Loc_City = Emp_Loc_City;
}
}