| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- /*
- * 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.ModelintimateRecord;
- 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 Modelintimate extends TableImpl<ModelintimateRecord> {
- private static final long serialVersionUID = -507176011;
- /**
- * The reference instance of <code>thmodel.modelintimate</code>
- */
- public static final Modelintimate MODELINTIMATE = new Modelintimate();
- /**
- * The class holding records for this type
- */
- @Override
- public Class<ModelintimateRecord> getRecordType() {
- return ModelintimateRecord.class;
- }
- /**
- * The column <code>thmodel.modelintimate.PK</code>.
- */
- public final TableField<ModelintimateRecord, Integer> PK = createField("PK", org.jooq.impl.SQLDataType.INTEGER.nullable(false).identity(true), this, "");
- /**
- * The column <code>thmodel.modelintimate.ModelPK</code>.
- */
- public final TableField<ModelintimateRecord, Integer> MODELPK = createField("ModelPK", org.jooq.impl.SQLDataType.INTEGER, this, "");
- /**
- * The column <code>thmodel.modelintimate.MemberPK</code>.
- */
- public final TableField<ModelintimateRecord, Integer> MEMBERPK = createField("MemberPK", org.jooq.impl.SQLDataType.INTEGER, this, "");
- /**
- * The column <code>thmodel.modelintimate.IDate</code>.
- */
- public final TableField<ModelintimateRecord, Timestamp> IDATE = createField("IDate", org.jooq.impl.SQLDataType.TIMESTAMP, this, "");
- /**
- * Create a <code>thmodel.modelintimate</code> table reference
- */
- public Modelintimate() {
- this(DSL.name("modelintimate"), null);
- }
- /**
- * Create an aliased <code>thmodel.modelintimate</code> table reference
- */
- public Modelintimate(String alias) {
- this(DSL.name(alias), MODELINTIMATE);
- }
- /**
- * Create an aliased <code>thmodel.modelintimate</code> table reference
- */
- public Modelintimate(Name alias) {
- this(alias, MODELINTIMATE);
- }
- private Modelintimate(Name alias, Table<ModelintimateRecord> aliased) {
- this(alias, aliased, null);
- }
- private Modelintimate(Name alias, Table<ModelintimateRecord> aliased, Field<?>[] parameters) {
- super(alias, null, aliased, parameters, DSL.comment(""));
- }
- public <O extends Record> Modelintimate(Table<O> child, ForeignKey<O, ModelintimateRecord> key) {
- super(child, key, MODELINTIMATE);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public Schema getSchema() {
- return Thmodel.THMODEL;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public List<Index> getIndexes() {
- return Arrays.<Index>asList(Indexes.MODELINTIMATE_INDEX_1, Indexes.MODELINTIMATE_PRIMARY);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public Identity<ModelintimateRecord, Integer> getIdentity() {
- return Keys.IDENTITY_MODELINTIMATE;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public UniqueKey<ModelintimateRecord> getPrimaryKey() {
- return Keys.KEY_MODELINTIMATE_PRIMARY;
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public List<UniqueKey<ModelintimateRecord>> getKeys() {
- return Arrays.<UniqueKey<ModelintimateRecord>>asList(Keys.KEY_MODELINTIMATE_PRIMARY);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public Modelintimate as(String alias) {
- return new Modelintimate(DSL.name(alias), this);
- }
- /**
- * {@inheritDoc}
- */
- @Override
- public Modelintimate as(Name alias) {
- return new Modelintimate(alias, this);
- }
- /**
- * Rename this table
- */
- @Override
- public Modelintimate rename(String name) {
- return new Modelintimate(DSL.name(name), null);
- }
- /**
- * Rename this table
- */
- @Override
- public Modelintimate rename(Name name) {
- return new Modelintimate(name, null);
- }
- }
|