| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- /*
- * 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<ModelactitemRecord> {
- private static final long serialVersionUID = -1507586304;
- /**
- * The reference instance of <code>thmodel.modelactitem</code>
- */
- public static final Modelactitem MODELACTITEM = new Modelactitem();
- /**
- * The class holding records for this type
- */
- @Override
- public Class<ModelactitemRecord> getRecordType() {
- return ModelactitemRecord.class;
- }
- /**
- * The column <code>thmodel.modelactitem.PK</code>.
- */
- public final TableField<ModelactitemRecord, Integer> PK = createField("PK", org.jooq.impl.SQLDataType.INTEGER.nullable(false).identity(true), this, "");
- /**
- * The column <code>thmodel.modelactitem.ActPK</code>.
- */
- public final TableField<ModelactitemRecord, Integer> ACTPK = createField("ActPK", org.jooq.impl.SQLDataType.INTEGER, this, "");
- /**
- * The column <code>thmodel.modelactitem.MemberPK</code>.
- */
- public final TableField<ModelactitemRecord, Integer> MEMBERPK = createField("MemberPK", org.jooq.impl.SQLDataType.INTEGER, this, "");
- /**
- * The column <code>thmodel.modelactitem.IDate</code>.
- */
- public final TableField<ModelactitemRecord, Timestamp> IDATE = createField("IDate", org.jooq.impl.SQLDataType.TIMESTAMP, this, "");
- /**
- * The column <code>thmodel.modelactitem.IsGood</code>.
- */
- public final TableField<ModelactitemRecord, Integer> ISGOOD = createField("IsGood", org.jooq.impl.SQLDataType.INTEGER, this, "");
- /**
- * Create a <code>thmodel.modelactitem</code> table reference
- */
- public Modelactitem() {
- this(DSL.name("modelactitem"), null);
- }
- /**
- * Create an aliased <code>thmodel.modelactitem</code> table reference
- */
- public Modelactitem(String alias) {
- this(DSL.name(alias), MODELACTITEM);
- }
- /**
- * Create an aliased <code>thmodel.modelactitem</code> table reference
- */
- public Modelactitem(Name alias) {
- this(alias, MODELACTITEM);
- }
- private Modelactitem(Name alias, Table<ModelactitemRecord> aliased) {
- this(alias, aliased, null);
- }
- private Modelactitem(Name alias, Table<ModelactitemRecord> aliased, Field<?>[] parameters) {
- super(alias, null, aliased, parameters, DSL.comment(""));
- }
- public <O extends Record> Modelactitem(Table<O> child, ForeignKey<O, ModelactitemRecord> key) {
- super(child, key, MODELACTITEM);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public Schema getSchema() {
- return Thmodel.THMODEL;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public List<Index> getIndexes() {
- return Arrays.<Index>asList(Indexes.MODELACTITEM_INDEX_1, Indexes.MODELACTITEM_PRIMARY);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public Identity<ModelactitemRecord, Integer> getIdentity() {
- return Keys.IDENTITY_MODELACTITEM;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public UniqueKey<ModelactitemRecord> getPrimaryKey() {
- return Keys.KEY_MODELACTITEM_PRIMARY;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public List<UniqueKey<ModelactitemRecord>> getKeys() {
- return Arrays.<UniqueKey<ModelactitemRecord>>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);
- }
- }
|