[#3597] Generate table and column comments also for PostgreSQL - Regenerated schema
This commit is contained in:
parent
bc2be8b61d
commit
566e12e5e1
@ -87,22 +87,22 @@ public class Tables {
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.TArrays T_ARRAYS = org.jooq.test.postgres.generatedclasses.tables.TArrays.T_ARRAYS;
|
||||
|
||||
/**
|
||||
* The table public.t_author
|
||||
* An entity holding authors of books
|
||||
*/
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.TAuthor T_AUTHOR = org.jooq.test.postgres.generatedclasses.tables.TAuthor.T_AUTHOR;
|
||||
|
||||
/**
|
||||
* The table public.t_book
|
||||
* An entity holding books
|
||||
*/
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.TBook T_BOOK = org.jooq.test.postgres.generatedclasses.tables.TBook.T_BOOK;
|
||||
|
||||
/**
|
||||
* The table public.t_book_store
|
||||
* A book store
|
||||
*/
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.TBookStore T_BOOK_STORE = org.jooq.test.postgres.generatedclasses.tables.TBookStore.T_BOOK_STORE;
|
||||
|
||||
/**
|
||||
* The table public.t_book_to_book_store
|
||||
* An m:n relation between books and book stores
|
||||
*/
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore T_BOOK_TO_BOOK_STORE = org.jooq.test.postgres.generatedclasses.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE;
|
||||
|
||||
@ -157,7 +157,7 @@ public class Tables {
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.TInheritanceAll T_INHERITANCE_ALL = org.jooq.test.postgres.generatedclasses.tables.TInheritanceAll.T_INHERITANCE_ALL;
|
||||
|
||||
/**
|
||||
* The table public.t_language
|
||||
* An entity holding language master data
|
||||
*/
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.TLanguage T_LANGUAGE = org.jooq.test.postgres.generatedclasses.tables.TLanguage.T_LANGUAGE;
|
||||
|
||||
@ -212,7 +212,7 @@ public class Tables {
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.XTestCase_85 X_TEST_CASE_85 = org.jooq.test.postgres.generatedclasses.tables.XTestCase_85.X_TEST_CASE_85;
|
||||
|
||||
/**
|
||||
* The table public.x_unused
|
||||
* An unused table in the same schema.
|
||||
*/
|
||||
public static final org.jooq.test.postgres.generatedclasses.tables.XUnused X_UNUSED = org.jooq.test.postgres.generatedclasses.tables.XUnused.X_UNUSED;
|
||||
}
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding authors of books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 364488020;
|
||||
private static final long serialVersionUID = -1467463112;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_author</code>
|
||||
@ -25,34 +27,34 @@ public class TAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gene
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.id</code>.
|
||||
* The column <code>public.t_author.id</code>. The author ID
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The author ID");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.first_name</code>.
|
||||
* The column <code>public.t_author.first_name</code>. The author's first name
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> FIRST_NAME = createField("first_name", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, "The author's first name");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.last_name</code>.
|
||||
* The column <code>public.t_author.last_name</code>. The author's last name
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR.length(50).nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.String> LAST_NAME = createField("last_name", org.jooq.impl.SQLDataType.VARCHAR.length(50).nullable(false), this, "The author's last name");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.date_of_birth</code>.
|
||||
* The column <code>public.t_author.date_of_birth</code>. The author's date of birth
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.sql.Date> DATE_OF_BIRTH = createField("date_of_birth", org.jooq.impl.SQLDataType.DATE, this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.sql.Date> DATE_OF_BIRTH = createField("date_of_birth", org.jooq.impl.SQLDataType.DATE, this, "The author's date of birth");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.year_of_birth</code>.
|
||||
* The column <code>public.t_author.year_of_birth</code>. The author's year of birth
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.Integer> YEAR_OF_BIRTH = createField("year_of_birth", org.jooq.impl.SQLDataType.INTEGER, this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, java.lang.Integer> YEAR_OF_BIRTH = createField("year_of_birth", org.jooq.impl.SQLDataType.INTEGER, this, "The author's year of birth");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_author.address</code>.
|
||||
* The column <code>public.t_author.address</code>. The author's address
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord> ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord> ADDRESS = createField("address", org.jooq.test.postgres.generatedclasses.udt.UAddressType.U_ADDRESS_TYPE.getDataType(), this, "The author's address");
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_author</code> table reference
|
||||
@ -73,7 +75,7 @@ public class TAuthor extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gene
|
||||
}
|
||||
|
||||
private TAuthor(java.lang.String alias, org.jooq.Table<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord> aliased, org.jooq.Field<?>[] parameters) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "");
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An entity holding authors of books");
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1311669809;
|
||||
private static final long serialVersionUID = -1635792601;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book</code>
|
||||
@ -25,14 +27,14 @@ public class TBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.id</code>.
|
||||
* The column <code>public.t_book.id</code>. The book ID
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The book ID");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.author_id</code>.
|
||||
* The column <code>public.t_book.author_id</code>. The author ID in entity 'author'
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> AUTHOR_ID = createField("author_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> AUTHOR_ID = createField("author_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The author ID in entity 'author'");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.co_author_id</code>.
|
||||
@ -45,34 +47,34 @@ public class TBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> DETAILS_ID = createField("details_id", org.jooq.impl.SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.title</code>.
|
||||
* The column <code>public.t_book.title</code>. The book's title
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.String> TITLE = createField("title", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "The book's title");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.published_in</code>.
|
||||
* The column <code>public.t_book.published_in</code>. The year the book was published in
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> PUBLISHED_IN = createField("published_in", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> PUBLISHED_IN = createField("published_in", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The year the book was published in");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.language_id</code>.
|
||||
* The column <code>public.t_book.language_id</code>. The language of the book
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> LANGUAGE_ID = createField("language_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.Integer> LANGUAGE_ID = createField("language_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false).defaulted(true), this, "The language of the book");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.content_text</code>.
|
||||
* The column <code>public.t_book.content_text</code>. Some textual content of the book
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.String> CONTENT_TEXT = createField("content_text", org.jooq.impl.SQLDataType.CLOB, this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, java.lang.String> CONTENT_TEXT = createField("content_text", org.jooq.impl.SQLDataType.CLOB, this, "Some textual content of the book");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.content_pdf</code>.
|
||||
* The column <code>public.t_book.content_pdf</code>. Some binary content of the book
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, byte[]> CONTENT_PDF = createField("content_pdf", org.jooq.impl.SQLDataType.BLOB, this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, byte[]> CONTENT_PDF = createField("content_pdf", org.jooq.impl.SQLDataType.BLOB, this, "Some binary content of the book");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book.status</code>.
|
||||
* The column <code>public.t_book.status</code>. The book's stock status
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, org.jooq.test.postgres.generatedclasses.enums.UBookStatus> STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord, org.jooq.test.postgres.generatedclasses.enums.UBookStatus> STATUS = createField("status", org.jooq.util.postgres.PostgresDataType.VARCHAR.asEnumDataType(org.jooq.test.postgres.generatedclasses.enums.UBookStatus.class), this, "The book's stock status");
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_book</code> table reference
|
||||
@ -93,7 +95,7 @@ public class TBook extends org.jooq.impl.TableImpl<org.jooq.test.postgres.genera
|
||||
}
|
||||
|
||||
private TBook(java.lang.String alias, org.jooq.Table<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord> aliased, org.jooq.Field<?>[] parameters) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "");
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An entity holding books");
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A book store
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookStore extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 78051787;
|
||||
private static final long serialVersionUID = 1499109959;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_store</code>
|
||||
@ -25,9 +27,9 @@ public class TBookStore extends org.jooq.impl.TableImpl<org.jooq.test.postgres.g
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book_store.name</code>.
|
||||
* The column <code>public.t_book_store.name</code>. The books store name
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord, java.lang.String> NAME = createField("name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "The books store name");
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_book_store</code> table reference
|
||||
@ -48,7 +50,7 @@ public class TBookStore extends org.jooq.impl.TableImpl<org.jooq.test.postgres.g
|
||||
}
|
||||
|
||||
private TBookStore(java.lang.String alias, org.jooq.Table<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord> aliased, org.jooq.Field<?>[] parameters) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "");
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "A book store");
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An m:n relation between books and book stores
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookToBookStore extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -663205095;
|
||||
private static final long serialVersionUID = -38592009;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_book_to_book_store</code>
|
||||
@ -25,19 +27,19 @@ public class TBookToBookStore extends org.jooq.impl.TableImpl<org.jooq.test.post
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book_to_book_store.book_store_name</code>.
|
||||
* The column <code>public.t_book_to_book_store.book_store_name</code>. The book store name
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.String> BOOK_STORE_NAME = createField("book_store_name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.String> BOOK_STORE_NAME = createField("book_store_name", org.jooq.impl.SQLDataType.VARCHAR.length(400).nullable(false), this, "The book store name");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book_to_book_store.book_id</code>.
|
||||
* The column <code>public.t_book_to_book_store.book_id</code>. The book ID
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.Integer> BOOK_ID = createField("book_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.Integer> BOOK_ID = createField("book_id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The book ID");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_book_to_book_store.stock</code>.
|
||||
* The column <code>public.t_book_to_book_store.stock</code>. The number of books on stock
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.Integer> STOCK = createField("stock", org.jooq.impl.SQLDataType.INTEGER, this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord, java.lang.Integer> STOCK = createField("stock", org.jooq.impl.SQLDataType.INTEGER, this, "The number of books on stock");
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_book_to_book_store</code> table reference
|
||||
@ -58,7 +60,7 @@ public class TBookToBookStore extends org.jooq.impl.TableImpl<org.jooq.test.post
|
||||
}
|
||||
|
||||
private TBookToBookStore(java.lang.String alias, org.jooq.Table<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord> aliased, org.jooq.Field<?>[] parameters) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "");
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An m:n relation between books and book stores");
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding language master data
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TLanguage extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 776234141;
|
||||
private static final long serialVersionUID = 1999147527;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.t_language</code>
|
||||
@ -25,14 +27,14 @@ public class TLanguage extends org.jooq.impl.TableImpl<org.jooq.test.postgres.ge
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.t_language.cd</code>.
|
||||
* The column <code>public.t_language.cd</code>. The language ISO code
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> CD = createField("cd", org.jooq.impl.SQLDataType.CHAR.length(2).nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> CD = createField("cd", org.jooq.impl.SQLDataType.CHAR.length(2).nullable(false), this, "The language ISO code");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_language.description</code>.
|
||||
* The column <code>public.t_language.description</code>. The language description
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> DESCRIPTION = createField("description", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> DESCRIPTION = createField("description", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, "The language description");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_language.description_english</code>.
|
||||
@ -40,9 +42,9 @@ public class TLanguage extends org.jooq.impl.TableImpl<org.jooq.test.postgres.ge
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.String> DESCRIPTION_ENGLISH = createField("description_english", org.jooq.impl.SQLDataType.VARCHAR.length(50), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_language.id</code>.
|
||||
* The column <code>public.t_language.id</code>. The language ID
|
||||
*/
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "");
|
||||
public final org.jooq.TableField<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord, java.lang.Integer> ID = createField("id", org.jooq.impl.SQLDataType.INTEGER.nullable(false), this, "The language ID");
|
||||
|
||||
/**
|
||||
* Create a <code>public.t_language</code> table reference
|
||||
@ -63,7 +65,7 @@ public class TLanguage extends org.jooq.impl.TableImpl<org.jooq.test.postgres.ge
|
||||
}
|
||||
|
||||
private TLanguage(java.lang.String alias, org.jooq.Table<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord> aliased, org.jooq.Field<?>[] parameters) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "");
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An entity holding language master data");
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An unused table in the same schema.
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XUnused extends org.jooq.impl.TableImpl<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord> {
|
||||
|
||||
private static final long serialVersionUID = 88962733;
|
||||
private static final long serialVersionUID = -300074305;
|
||||
|
||||
/**
|
||||
* The singleton instance of <code>public.x_unused</code>
|
||||
@ -118,7 +120,7 @@ public class XUnused extends org.jooq.impl.TableImpl<org.jooq.test.postgres.gene
|
||||
}
|
||||
|
||||
private XUnused(java.lang.String alias, org.jooq.Table<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord> aliased, org.jooq.Field<?>[] parameters) {
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "");
|
||||
super(alias, org.jooq.test.postgres.generatedclasses.Public.PUBLIC, aliased, parameters, "An unused table in the same schema.");
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@ -5,37 +5,39 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding authors of books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public interface ITAuthor extends java.io.Serializable {
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.id</code>.
|
||||
* Getter for <code>public.t_author.id</code>. The author ID
|
||||
*/
|
||||
public java.lang.Integer getId();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.first_name</code>.
|
||||
* Getter for <code>public.t_author.first_name</code>. The author's first name
|
||||
*/
|
||||
public java.lang.String getFirstName();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.last_name</code>.
|
||||
* Getter for <code>public.t_author.last_name</code>. The author's last name
|
||||
*/
|
||||
public java.lang.String getLastName();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.date_of_birth</code>.
|
||||
* Getter for <code>public.t_author.date_of_birth</code>. The author's date of birth
|
||||
*/
|
||||
public java.sql.Date getDateOfBirth();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.year_of_birth</code>.
|
||||
* Getter for <code>public.t_author.year_of_birth</code>. The author's year of birth
|
||||
*/
|
||||
public java.lang.Integer getYearOfBirth();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.address</code>.
|
||||
* Getter for <code>public.t_author.address</code>. The author's address
|
||||
*/
|
||||
public org.jooq.test.postgres.generatedclasses.udt.interfaces.IUAddressType getAddress();
|
||||
}
|
||||
|
||||
@ -5,17 +5,19 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public interface ITBook extends java.io.Serializable {
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.id</code>.
|
||||
* Getter for <code>public.t_book.id</code>. The book ID
|
||||
*/
|
||||
public java.lang.Integer getId();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.author_id</code>.
|
||||
* Getter for <code>public.t_book.author_id</code>. The author ID in entity 'author'
|
||||
*/
|
||||
public java.lang.Integer getAuthorId();
|
||||
|
||||
@ -30,32 +32,32 @@ public interface ITBook extends java.io.Serializable {
|
||||
public java.lang.Integer getDetailsId();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.title</code>.
|
||||
* Getter for <code>public.t_book.title</code>. The book's title
|
||||
*/
|
||||
public java.lang.String getTitle();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.published_in</code>.
|
||||
* Getter for <code>public.t_book.published_in</code>. The year the book was published in
|
||||
*/
|
||||
public java.lang.Integer getPublishedIn();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.language_id</code>.
|
||||
* Getter for <code>public.t_book.language_id</code>. The language of the book
|
||||
*/
|
||||
public java.lang.Integer getLanguageId();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.content_text</code>.
|
||||
* Getter for <code>public.t_book.content_text</code>. Some textual content of the book
|
||||
*/
|
||||
public java.lang.String getContentText();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.content_pdf</code>.
|
||||
* Getter for <code>public.t_book.content_pdf</code>. Some binary content of the book
|
||||
*/
|
||||
public byte[] getContentPdf();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.status</code>.
|
||||
* Getter for <code>public.t_book.status</code>. The book's stock status
|
||||
*/
|
||||
public org.jooq.test.postgres.generatedclasses.enums.UBookStatus getStatus();
|
||||
}
|
||||
|
||||
@ -5,12 +5,14 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A book store
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public interface ITBookStore extends java.io.Serializable {
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_store.name</code>.
|
||||
* Getter for <code>public.t_book_store.name</code>. The books store name
|
||||
*/
|
||||
public java.lang.String getName();
|
||||
}
|
||||
|
||||
@ -5,22 +5,24 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An m:n relation between books and book stores
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public interface ITBookToBookStore extends java.io.Serializable {
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_to_book_store.book_store_name</code>.
|
||||
* Getter for <code>public.t_book_to_book_store.book_store_name</code>. The book store name
|
||||
*/
|
||||
public java.lang.String getBookStoreName();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_to_book_store.book_id</code>.
|
||||
* Getter for <code>public.t_book_to_book_store.book_id</code>. The book ID
|
||||
*/
|
||||
public java.lang.Integer getBookId();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_to_book_store.stock</code>.
|
||||
* Getter for <code>public.t_book_to_book_store.stock</code>. The number of books on stock
|
||||
*/
|
||||
public java.lang.Integer getStock();
|
||||
}
|
||||
|
||||
@ -5,17 +5,19 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding language master data
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public interface ITLanguage extends java.io.Serializable {
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_language.cd</code>.
|
||||
* Getter for <code>public.t_language.cd</code>. The language ISO code
|
||||
*/
|
||||
public java.lang.String getCd();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_language.description</code>.
|
||||
* Getter for <code>public.t_language.description</code>. The language description
|
||||
*/
|
||||
public java.lang.String getDescription();
|
||||
|
||||
@ -25,7 +27,7 @@ public interface ITLanguage extends java.io.Serializable {
|
||||
public java.lang.String getDescriptionEnglish();
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_language.id</code>.
|
||||
* Getter for <code>public.t_language.id</code>. The language ID
|
||||
*/
|
||||
public java.lang.Integer getId();
|
||||
}
|
||||
|
||||
@ -5,6 +5,8 @@ package org.jooq.test.postgres.generatedclasses.tables.interfaces;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An unused table in the same schema.
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public interface IXUnused extends java.io.Serializable {
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding authors of books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TAuthor implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITAuthor {
|
||||
|
||||
private static final long serialVersionUID = 979289363;
|
||||
private static final long serialVersionUID = -1771521619;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.String firstName;
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBook implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBook {
|
||||
|
||||
private static final long serialVersionUID = -1105302064;
|
||||
private static final long serialVersionUID = -449599885;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.Integer authorId;
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A book store
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookStore implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookStore {
|
||||
|
||||
private static final long serialVersionUID = 1381788466;
|
||||
private static final long serialVersionUID = -1156548273;
|
||||
|
||||
private final java.lang.String name;
|
||||
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An m:n relation between books and book stores
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookToBookStore implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookToBookStore {
|
||||
|
||||
private static final long serialVersionUID = 934579856;
|
||||
private static final long serialVersionUID = -734272688;
|
||||
|
||||
private final java.lang.String bookStoreName;
|
||||
private final java.lang.Integer bookId;
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding language master data
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TLanguage implements org.jooq.test.postgres.generatedclasses.tables.interfaces.ITLanguage {
|
||||
|
||||
private static final long serialVersionUID = 1580552657;
|
||||
private static final long serialVersionUID = -1303646382;
|
||||
|
||||
private final java.lang.String cd;
|
||||
private final java.lang.String description;
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.pojos;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An unused table in the same schema.
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XUnused implements org.jooq.test.postgres.generatedclasses.tables.interfaces.IXUnused {
|
||||
|
||||
private static final long serialVersionUID = -1995298873;
|
||||
private static final long serialVersionUID = 1158267803;
|
||||
|
||||
private final java.lang.Integer id;
|
||||
private final java.lang.String name;
|
||||
|
||||
@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding authors of books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TAuthorRecord> implements org.jooq.Record6<java.lang.Integer, java.lang.String, java.lang.String, java.sql.Date, java.lang.Integer, org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord>, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITAuthor {
|
||||
|
||||
private static final long serialVersionUID = -679684875;
|
||||
private static final long serialVersionUID = 104350721;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_author.id</code>.
|
||||
* Setter for <code>public.t_author.id</code>. The author ID
|
||||
*/
|
||||
public TAuthorRecord setId(java.lang.Integer value) {
|
||||
setValue(0, value);
|
||||
@ -20,7 +22,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.id</code>.
|
||||
* Getter for <code>public.t_author.id</code>. The author ID
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getId() {
|
||||
@ -28,7 +30,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_author.first_name</code>.
|
||||
* Setter for <code>public.t_author.first_name</code>. The author's first name
|
||||
*/
|
||||
public TAuthorRecord setFirstName(java.lang.String value) {
|
||||
setValue(1, value);
|
||||
@ -36,7 +38,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.first_name</code>.
|
||||
* Getter for <code>public.t_author.first_name</code>. The author's first name
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getFirstName() {
|
||||
@ -44,7 +46,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_author.last_name</code>.
|
||||
* Setter for <code>public.t_author.last_name</code>. The author's last name
|
||||
*/
|
||||
public TAuthorRecord setLastName(java.lang.String value) {
|
||||
setValue(2, value);
|
||||
@ -52,7 +54,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.last_name</code>.
|
||||
* Getter for <code>public.t_author.last_name</code>. The author's last name
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getLastName() {
|
||||
@ -60,7 +62,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_author.date_of_birth</code>.
|
||||
* Setter for <code>public.t_author.date_of_birth</code>. The author's date of birth
|
||||
*/
|
||||
public TAuthorRecord setDateOfBirth(java.sql.Date value) {
|
||||
setValue(3, value);
|
||||
@ -68,7 +70,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.date_of_birth</code>.
|
||||
* Getter for <code>public.t_author.date_of_birth</code>. The author's date of birth
|
||||
*/
|
||||
@Override
|
||||
public java.sql.Date getDateOfBirth() {
|
||||
@ -76,7 +78,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_author.year_of_birth</code>.
|
||||
* Setter for <code>public.t_author.year_of_birth</code>. The author's year of birth
|
||||
*/
|
||||
public TAuthorRecord setYearOfBirth(java.lang.Integer value) {
|
||||
setValue(4, value);
|
||||
@ -84,7 +86,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.year_of_birth</code>.
|
||||
* Getter for <code>public.t_author.year_of_birth</code>. The author's year of birth
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getYearOfBirth() {
|
||||
@ -92,7 +94,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_author.address</code>.
|
||||
* Setter for <code>public.t_author.address</code>. The author's address
|
||||
*/
|
||||
public TAuthorRecord setAddress(org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord value) {
|
||||
setValue(5, value);
|
||||
@ -100,7 +102,7 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.te
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_author.address</code>.
|
||||
* Getter for <code>public.t_author.address</code>. The author's address
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.test.postgres.generatedclasses.udt.records.UAddressTypeRecord getAddress() {
|
||||
|
||||
@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding books
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookRecord> implements org.jooq.Record10<java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.String, java.lang.Integer, java.lang.Integer, java.lang.String, byte[], org.jooq.test.postgres.generatedclasses.enums.UBookStatus>, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBook {
|
||||
|
||||
private static final long serialVersionUID = 182002655;
|
||||
private static final long serialVersionUID = -2143372820;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.id</code>.
|
||||
* Setter for <code>public.t_book.id</code>. The book ID
|
||||
*/
|
||||
public TBookRecord setId(java.lang.Integer value) {
|
||||
setValue(0, value);
|
||||
@ -20,7 +22,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.id</code>.
|
||||
* Getter for <code>public.t_book.id</code>. The book ID
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getId() {
|
||||
@ -28,7 +30,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.author_id</code>.
|
||||
* Setter for <code>public.t_book.author_id</code>. The author ID in entity 'author'
|
||||
*/
|
||||
public TBookRecord setAuthorId(java.lang.Integer value) {
|
||||
setValue(1, value);
|
||||
@ -36,7 +38,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.author_id</code>.
|
||||
* Getter for <code>public.t_book.author_id</code>. The author ID in entity 'author'
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getAuthorId() {
|
||||
@ -76,7 +78,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.title</code>.
|
||||
* Setter for <code>public.t_book.title</code>. The book's title
|
||||
*/
|
||||
public TBookRecord setTitle(java.lang.String value) {
|
||||
setValue(4, value);
|
||||
@ -84,7 +86,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.title</code>.
|
||||
* Getter for <code>public.t_book.title</code>. The book's title
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getTitle() {
|
||||
@ -92,7 +94,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.published_in</code>.
|
||||
* Setter for <code>public.t_book.published_in</code>. The year the book was published in
|
||||
*/
|
||||
public TBookRecord setPublishedIn(java.lang.Integer value) {
|
||||
setValue(5, value);
|
||||
@ -100,7 +102,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.published_in</code>.
|
||||
* Getter for <code>public.t_book.published_in</code>. The year the book was published in
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getPublishedIn() {
|
||||
@ -108,7 +110,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.language_id</code>.
|
||||
* Setter for <code>public.t_book.language_id</code>. The language of the book
|
||||
*/
|
||||
public TBookRecord setLanguageId(java.lang.Integer value) {
|
||||
setValue(6, value);
|
||||
@ -116,7 +118,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.language_id</code>.
|
||||
* Getter for <code>public.t_book.language_id</code>. The language of the book
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getLanguageId() {
|
||||
@ -124,7 +126,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.content_text</code>.
|
||||
* Setter for <code>public.t_book.content_text</code>. Some textual content of the book
|
||||
*/
|
||||
public TBookRecord setContentText(java.lang.String value) {
|
||||
setValue(7, value);
|
||||
@ -132,7 +134,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.content_text</code>.
|
||||
* Getter for <code>public.t_book.content_text</code>. Some textual content of the book
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getContentText() {
|
||||
@ -140,7 +142,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.content_pdf</code>.
|
||||
* Setter for <code>public.t_book.content_pdf</code>. Some binary content of the book
|
||||
*/
|
||||
public TBookRecord setContentPdf(byte[] value) {
|
||||
setValue(8, value);
|
||||
@ -148,7 +150,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.content_pdf</code>.
|
||||
* Getter for <code>public.t_book.content_pdf</code>. Some binary content of the book
|
||||
*/
|
||||
@Override
|
||||
public byte[] getContentPdf() {
|
||||
@ -156,7 +158,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book.status</code>.
|
||||
* Setter for <code>public.t_book.status</code>. The book's stock status
|
||||
*/
|
||||
public TBookRecord setStatus(org.jooq.test.postgres.generatedclasses.enums.UBookStatus value) {
|
||||
setValue(9, value);
|
||||
@ -164,7 +166,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book.status</code>.
|
||||
* Getter for <code>public.t_book.status</code>. The book's stock status
|
||||
*/
|
||||
@Override
|
||||
public org.jooq.test.postgres.generatedclasses.enums.UBookStatus getStatus() {
|
||||
|
||||
@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* A book store
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookStoreRecord> implements org.jooq.Record1<java.lang.String>, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookStore {
|
||||
|
||||
private static final long serialVersionUID = 1284917864;
|
||||
private static final long serialVersionUID = -1469049359;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book_store.name</code>.
|
||||
* Setter for <code>public.t_book_store.name</code>. The books store name
|
||||
*/
|
||||
public TBookStoreRecord setName(java.lang.String value) {
|
||||
setValue(0, value);
|
||||
@ -20,7 +22,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_store.name</code>.
|
||||
* Getter for <code>public.t_book_store.name</code>. The books store name
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getName() {
|
||||
|
||||
@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An m:n relation between books and book stores
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TBookToBookStoreRecord> implements org.jooq.Record3<java.lang.String, java.lang.Integer, java.lang.Integer>, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITBookToBookStore {
|
||||
|
||||
private static final long serialVersionUID = -2046659538;
|
||||
private static final long serialVersionUID = 193454388;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book_to_book_store.book_store_name</code>.
|
||||
* Setter for <code>public.t_book_to_book_store.book_store_name</code>. The book store name
|
||||
*/
|
||||
public TBookToBookStoreRecord setBookStoreName(java.lang.String value) {
|
||||
setValue(0, value);
|
||||
@ -20,7 +22,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_to_book_store.book_store_name</code>.
|
||||
* Getter for <code>public.t_book_to_book_store.book_store_name</code>. The book store name
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getBookStoreName() {
|
||||
@ -28,7 +30,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book_to_book_store.book_id</code>.
|
||||
* Setter for <code>public.t_book_to_book_store.book_id</code>. The book ID
|
||||
*/
|
||||
public TBookToBookStoreRecord setBookId(java.lang.Integer value) {
|
||||
setValue(1, value);
|
||||
@ -36,7 +38,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_to_book_store.book_id</code>.
|
||||
* Getter for <code>public.t_book_to_book_store.book_id</code>. The book ID
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getBookId() {
|
||||
@ -44,7 +46,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_book_to_book_store.stock</code>.
|
||||
* Setter for <code>public.t_book_to_book_store.stock</code>. The number of books on stock
|
||||
*/
|
||||
public TBookToBookStoreRecord setStock(java.lang.Integer value) {
|
||||
setValue(2, value);
|
||||
@ -52,7 +54,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl<or
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_book_to_book_store.stock</code>.
|
||||
* Getter for <code>public.t_book_to_book_store.stock</code>. The number of books on stock
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getStock() {
|
||||
|
||||
@ -5,14 +5,16 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An entity holding language master data
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.TLanguageRecord> implements org.jooq.Record4<java.lang.String, java.lang.String, java.lang.String, java.lang.Integer>, org.jooq.test.postgres.generatedclasses.tables.interfaces.ITLanguage {
|
||||
|
||||
private static final long serialVersionUID = -978550168;
|
||||
private static final long serialVersionUID = -783894559;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_language.cd</code>.
|
||||
* Setter for <code>public.t_language.cd</code>. The language ISO code
|
||||
*/
|
||||
public TLanguageRecord setCd(java.lang.String value) {
|
||||
setValue(0, value);
|
||||
@ -20,7 +22,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_language.cd</code>.
|
||||
* Getter for <code>public.t_language.cd</code>. The language ISO code
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getCd() {
|
||||
@ -28,7 +30,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_language.description</code>.
|
||||
* Setter for <code>public.t_language.description</code>. The language description
|
||||
*/
|
||||
public TLanguageRecord setDescription(java.lang.String value) {
|
||||
setValue(1, value);
|
||||
@ -36,7 +38,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_language.description</code>.
|
||||
* Getter for <code>public.t_language.description</code>. The language description
|
||||
*/
|
||||
@Override
|
||||
public java.lang.String getDescription() {
|
||||
@ -60,7 +62,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_language.id</code>.
|
||||
* Setter for <code>public.t_language.id</code>. The language ID
|
||||
*/
|
||||
public TLanguageRecord setId(java.lang.Integer value) {
|
||||
setValue(3, value);
|
||||
@ -68,7 +70,7 @@ public class TLanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_language.id</code>.
|
||||
* Getter for <code>public.t_language.id</code>. The language ID
|
||||
*/
|
||||
@Override
|
||||
public java.lang.Integer getId() {
|
||||
|
||||
@ -5,11 +5,13 @@ package org.jooq.test.postgres.generatedclasses.tables.records;
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*
|
||||
* An unused table in the same schema.
|
||||
*/
|
||||
@java.lang.SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.test.postgres.generatedclasses.tables.records.XUnusedRecord> implements org.jooq.Record15<java.lang.Integer, java.lang.String, java.math.BigInteger, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.Integer, java.lang.String, java.math.BigDecimal>, org.jooq.test.postgres.generatedclasses.tables.interfaces.IXUnused {
|
||||
|
||||
private static final long serialVersionUID = 131102754;
|
||||
private static final long serialVersionUID = -2085594994;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.x_unused.id</code>.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user