/* * This file is generated by jOOQ. */ package jooq.tables; import java.sql.Timestamp; import java.util.Arrays; import java.util.List; import javax.annotation.Generated; import jooq.Indexes; import jooq.Keys; import jooq.Thmodel; import jooq.tables.records.ModelactitemRecord; import org.jooq.Field; import org.jooq.ForeignKey; import org.jooq.Identity; import org.jooq.Index; import org.jooq.Name; import org.jooq.Record; import org.jooq.Schema; import org.jooq.Table; import org.jooq.TableField; import org.jooq.UniqueKey; import org.jooq.impl.DSL; import org.jooq.impl.TableImpl; /** * This class is generated by jOOQ. */ @Generated( value = { "http://www.jooq.org", "jOOQ version:3.11.5" }, comments = "This class is generated by jOOQ" ) @SuppressWarnings({ "all", "unchecked", "rawtypes" }) public class Modelactitem extends TableImpl { private static final long serialVersionUID = -1507586304; /** * The reference instance of thmodel.modelactitem */ public static final Modelactitem MODELACTITEM = new Modelactitem(); /** * The class holding records for this type */ @Override public Class getRecordType() { return ModelactitemRecord.class; } /** * The column thmodel.modelactitem.PK. */ public final TableField PK = createField("PK", org.jooq.impl.SQLDataType.INTEGER.nullable(false).identity(true), this, ""); /** * The column thmodel.modelactitem.ActPK. */ public final TableField ACTPK = createField("ActPK", org.jooq.impl.SQLDataType.INTEGER, this, ""); /** * The column thmodel.modelactitem.MemberPK. */ public final TableField MEMBERPK = createField("MemberPK", org.jooq.impl.SQLDataType.INTEGER, this, ""); /** * The column thmodel.modelactitem.IDate. */ public final TableField IDATE = createField("IDate", org.jooq.impl.SQLDataType.TIMESTAMP, this, ""); /** * The column thmodel.modelactitem.IsGood. */ public final TableField ISGOOD = createField("IsGood", org.jooq.impl.SQLDataType.INTEGER, this, ""); /** * Create a thmodel.modelactitem table reference */ public Modelactitem() { this(DSL.name("modelactitem"), null); } /** * Create an aliased thmodel.modelactitem table reference */ public Modelactitem(String alias) { this(DSL.name(alias), MODELACTITEM); } /** * Create an aliased thmodel.modelactitem table reference */ public Modelactitem(Name alias) { this(alias, MODELACTITEM); } private Modelactitem(Name alias, Table aliased) { this(alias, aliased, null); } private Modelactitem(Name alias, Table aliased, Field[] parameters) { super(alias, null, aliased, parameters, DSL.comment("")); } public Modelactitem(Table child, ForeignKey key) { super(child, key, MODELACTITEM); } /** * {@inheritDoc} */ @Override public Schema getSchema() { return Thmodel.THMODEL; } /** * {@inheritDoc} */ @Override public List getIndexes() { return Arrays.asList(Indexes.MODELACTITEM_INDEX_1, Indexes.MODELACTITEM_PRIMARY); } /** * {@inheritDoc} */ @Override public Identity getIdentity() { return Keys.IDENTITY_MODELACTITEM; } /** * {@inheritDoc} */ @Override public UniqueKey getPrimaryKey() { return Keys.KEY_MODELACTITEM_PRIMARY; } /** * {@inheritDoc} */ @Override public List> getKeys() { return Arrays.>asList(Keys.KEY_MODELACTITEM_PRIMARY); } /** * {@inheritDoc} */ @Override public Modelactitem as(String alias) { return new Modelactitem(DSL.name(alias), this); } /** * {@inheritDoc} */ @Override public Modelactitem as(Name alias) { return new Modelactitem(alias, this); } /** * Rename this table */ @Override public Modelactitem rename(String name) { return new Modelactitem(DSL.name(name), null); } /** * Rename this table */ @Override public Modelactitem rename(Name name) { return new Modelactitem(name, null); } }