corrected godegen

This commit is contained in:
jotty
2025-06-01 00:08:52 +02:00
parent dbb4e60815
commit 0addff7bb5
93 changed files with 1621 additions and 6359 deletions

View File

@ -12,7 +12,11 @@
<attribute name="gradle_used_by_scope" value="main,test"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17/"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-21">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.buildship.core.gradleclasspathcontainer"/>
<classpathentry kind="output" path="bin/default"/>
</classpath>

View File

@ -11,9 +11,9 @@ org.eclipse.jdt.core.classpath.multipleOutputLocations=enabled
org.eclipse.jdt.core.classpath.outputOverlappingAnotherSource=error
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.targetPlatform=21
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.compliance=21
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
@ -22,7 +22,7 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=disabled
org.eclipse.jdt.core.compiler.source=17
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=21
org.eclipse.jdt.core.incompatibleJDKLevel=ignore
org.eclipse.jdt.core.incompleteClasspath=error

View File

@ -7,10 +7,10 @@ buildscript {
jcenter()
}
dependencies {
classpath 'org.jooq:jooq-codegen:latest.release'
classpath 'org.jooq:jooq-codegen:3.20.4'
classpath 'org.postgresql:postgresql:latest.release'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:latest.release'
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:latest.release'
classpath 'nu.studer.jooq:nu.studer.jooq.gradle.plugin:10.1'
}
}
@ -26,8 +26,8 @@ version = '2025.04.23'
description = """COJooq"""
sourceCompatibility = 17
targetCompatibility = 17
sourceCompatibility = 21
targetCompatibility = 21
repositories {
mavenLocal()
@ -36,8 +36,8 @@ repositories {
}
dependencies {
implementation 'org.jooq:jooq:latest.release'
implementation 'org.jooq:jooq-codegen:latest.release'
implementation 'org.jooq:jooq:3.20.4'
implementation 'org.jooq:jooq-codegen:3.20.4'
implementation 'org.postgresql:postgresql:latest.release'
@ -47,7 +47,7 @@ dependencies {
import org.jooq.meta.jaxb.Logging
jooq {
version = '3.19.14'
version = '3.20.4'
edition = nu.studer.gradle.jooq.JooqEdition.OSS
configurations {
camporganizer {
@ -74,16 +74,19 @@ jooq {
}
generate {
deprecated = false
relations = true
relations = false
records = true
immutablePojos = true
fluentSetters = true
immutablePojos = false
fluentSetters = false
}
target {
packageName = 'de.jottyfan.camporganizer.db.jooq'
directory = 'src/main/java'
}
strategy.name = 'org.jooq.codegen.DefaultGeneratorStrategy'
// strategy.name = 'org.jooq.codegen.KeepNamesGeneratorStrategy'
// strategy.name = 'org.jooq.codegen.PascalCaseGeneratorStrategy'
// strategy.name = 'org.jooq.codegen.PrefixSuffixGeneratorStrategy'
}
}
}

View File

@ -26,7 +26,7 @@ public class DefaultCatalog extends CatalogImpl {
public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();
/**
* The schema <code>public</code>.
* standard public schema
*/
public final Public PUBLIC = Public.PUBLIC;
@ -45,10 +45,10 @@ public class DefaultCatalog extends CatalogImpl {
}
/**
* A reference to the 3.19 minor release of the code generator. If this
* A reference to the 3.20 minor release of the code generator. If this
* doesn't compile, it's because the runtime library uses an older minor
* release, namely: 3.19. You can turn off the generation of this reference
* release, namely: 3.20. You can turn off the generation of this reference
* by specifying /configuration/generator/generate/jooqVersionReference
*/
private static final String REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_19;
private static final String REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_20;
}

View File

@ -33,10 +33,12 @@ import de.jottyfan.camporganizer.db.jooq.tables.records.TSalesRecord;
import de.jottyfan.camporganizer.db.jooq.tables.records.TSalescontentRecord;
import de.jottyfan.camporganizer.db.jooq.tables.records.TSalescontenttypeRecord;
import org.jooq.ForeignKey;
import org.jooq.TableField;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.Internal;
import org.jooq.impl.QOM.ForeignKeyRule;
/**
@ -72,4 +74,26 @@ public class Keys {
public static final UniqueKey<TSalesRecord> T_SALES_PKEY = Internal.createUniqueKey(TSales.T_SALES, DSL.name("t_sales_pkey"), new TableField[] { TSales.T_SALES.PK }, true);
public static final UniqueKey<TSalescontentRecord> T_SALESCONTENT_FK_SALES_FK_SALESCONTENTTYPE_KEY = Internal.createUniqueKey(TSalescontent.T_SALESCONTENT, DSL.name("t_salescontent_fk_sales_fk_salescontenttype_key"), new TableField[] { TSalescontent.T_SALESCONTENT.FK_SALES, TSalescontent.T_SALESCONTENT.FK_SALESCONTENTTYPE }, true);
public static final UniqueKey<TSalescontenttypeRecord> T_SALESCONTENTTYPE_PKEY = Internal.createUniqueKey(TSalescontenttype.T_SALESCONTENTTYPE, DSL.name("t_salescontenttype_pkey"), new TableField[] { TSalescontenttype.T_SALESCONTENTTYPE.NAME }, true);
// -------------------------------------------------------------------------
// FOREIGN KEY definitions
// -------------------------------------------------------------------------
public static final ForeignKey<TCampRecord, TDocumentRecord> T_CAMP__T_CAMP_FK_DOCUMENT_FKEY = Internal.createForeignKey(TCamp.T_CAMP, DSL.name("t_camp_fk_document_fkey"), new TableField[] { TCamp.T_CAMP.FK_DOCUMENT }, Keys.T_DOCUMENT_PKEY, new TableField[] { TDocument.T_DOCUMENT.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TCampRecord, TLocationRecord> T_CAMP__T_CAMP_FK_LOCATION_FKEY = Internal.createForeignKey(TCamp.T_CAMP, DSL.name("t_camp_fk_location_fkey"), new TableField[] { TCamp.T_CAMP.FK_LOCATION }, Keys.T_LOCATION_PKEY, new TableField[] { TLocation.T_LOCATION.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TCampRecord, TProfileRecord> T_CAMP__T_CAMP_FK_PROFILE_FKEY = Internal.createForeignKey(TCamp.T_CAMP, DSL.name("t_camp_fk_profile_fkey"), new TableField[] { TCamp.T_CAMP.FK_PROFILE }, Keys.T_PROFILE_PKEY, new TableField[] { TProfile.T_PROFILE.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TCampdocumentRecord, TCampRecord> T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_CAMP_FKEY = Internal.createForeignKey(TCampdocument.T_CAMPDOCUMENT, DSL.name("t_campdocument_fk_camp_fkey"), new TableField[] { TCampdocument.T_CAMPDOCUMENT.FK_CAMP }, Keys.T_CAMP_PKEY, new TableField[] { TCamp.T_CAMP.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TCampdocumentRecord, TDocumentRecord> T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_DOCUMENT_FKEY = Internal.createForeignKey(TCampdocument.T_CAMPDOCUMENT, DSL.name("t_campdocument_fk_document_fkey"), new TableField[] { TCampdocument.T_CAMPDOCUMENT.FK_DOCUMENT }, Keys.T_DOCUMENT_PKEY, new TableField[] { TDocument.T_DOCUMENT.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TCampprofileRecord, TCampRecord> T_CAMPPROFILE__T_CAMPPROFILE_FK_CAMP_FKEY = Internal.createForeignKey(TCampprofile.T_CAMPPROFILE, DSL.name("t_campprofile_fk_camp_fkey"), new TableField[] { TCampprofile.T_CAMPPROFILE.FK_CAMP }, Keys.T_CAMP_PKEY, new TableField[] { TCamp.T_CAMP.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TCampprofileRecord, TProfileRecord> T_CAMPPROFILE__T_CAMPPROFILE_FK_PROFILE_FKEY = Internal.createForeignKey(TCampprofile.T_CAMPPROFILE, DSL.name("t_campprofile_fk_profile_fkey"), new TableField[] { TCampprofile.T_CAMPPROFILE.FK_PROFILE }, Keys.T_PROFILE_PKEY, new TableField[] { TProfile.T_PROFILE.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TDocumentroleRecord, TDocumentRecord> T_DOCUMENTROLE__T_DOCUMENTROLE_FK_DOCUMENT_FKEY = Internal.createForeignKey(TDocumentrole.T_DOCUMENTROLE, DSL.name("t_documentrole_fk_document_fkey"), new TableField[] { TDocumentrole.T_DOCUMENTROLE.FK_DOCUMENT }, Keys.T_DOCUMENT_PKEY, new TableField[] { TDocument.T_DOCUMENT.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TLocationRecord, TDocumentRecord> T_LOCATION__T_LOCATION_FK_DOCUMENT_FKEY = Internal.createForeignKey(TLocation.T_LOCATION, DSL.name("t_location_fk_document_fkey"), new TableField[] { TLocation.T_LOCATION.FK_DOCUMENT }, Keys.T_DOCUMENT_PKEY, new TableField[] { TDocument.T_DOCUMENT.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TPersonRecord, TCampRecord> T_PERSON__T_PERSON_FK_CAMP_FKEY = Internal.createForeignKey(TPerson.T_PERSON, DSL.name("t_person_fk_camp_fkey"), new TableField[] { TPerson.T_PERSON.FK_CAMP }, Keys.T_CAMP_PKEY, new TableField[] { TCamp.T_CAMP.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TPersonRecord, TProfileRecord> T_PERSON__T_PERSON_FK_PROFILE_FKEY = Internal.createForeignKey(TPerson.T_PERSON, DSL.name("t_person_fk_profile_fkey"), new TableField[] { TPerson.T_PERSON.FK_PROFILE }, Keys.T_PROFILE_PKEY, new TableField[] { TProfile.T_PROFILE.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TPersonRecord, TProfileRecord> T_PERSON__T_PERSON_FK_REGISTRATOR_FKEY = Internal.createForeignKey(TPerson.T_PERSON, DSL.name("t_person_fk_registrator_fkey"), new TableField[] { TPerson.T_PERSON.FK_REGISTRATOR }, Keys.T_PROFILE_PKEY, new TableField[] { TProfile.T_PROFILE.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TPersondocumentRecord, TPersonRecord> T_PERSONDOCUMENT__T_PERSONDOCUMENT_FK_PERSON_FKEY = Internal.createForeignKey(TPersondocument.T_PERSONDOCUMENT, DSL.name("t_persondocument_fk_person_fkey"), new TableField[] { TPersondocument.T_PERSONDOCUMENT.FK_PERSON }, Keys.T_PERSON_PKEY, new TableField[] { TPerson.T_PERSON.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TProfileroleRecord, TProfileRecord> T_PROFILEROLE__T_PROFILEROLE_FK_PROFILE_FKEY = Internal.createForeignKey(TProfilerole.T_PROFILEROLE, DSL.name("t_profilerole_fk_profile_fkey"), new TableField[] { TProfilerole.T_PROFILEROLE.FK_PROFILE }, Keys.T_PROFILE_PKEY, new TableField[] { TProfile.T_PROFILE.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TSalesRecord, TCampRecord> T_SALES__T_SALES_FK_CAMP_FKEY = Internal.createForeignKey(TSales.T_SALES, DSL.name("t_sales_fk_camp_fkey"), new TableField[] { TSales.T_SALES.FK_CAMP }, Keys.T_CAMP_PKEY, new TableField[] { TCamp.T_CAMP.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TSalescontentRecord, TSalesRecord> T_SALESCONTENT__T_SALESCONTENT_FK_SALES_FKEY = Internal.createForeignKey(TSalescontent.T_SALESCONTENT, DSL.name("t_salescontent_fk_sales_fkey"), new TableField[] { TSalescontent.T_SALESCONTENT.FK_SALES }, Keys.T_SALES_PKEY, new TableField[] { TSales.T_SALES.PK }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
public static final ForeignKey<TSalescontentRecord, TSalescontenttypeRecord> T_SALESCONTENT__T_SALESCONTENT_FK_SALESCONTENTTYPE_FKEY = Internal.createForeignKey(TSalescontent.T_SALESCONTENT, DSL.name("t_salescontent_fk_salescontenttype_fkey"), new TableField[] { TSalescontent.T_SALESCONTENT.FK_SALESCONTENTTYPE }, Keys.T_SALESCONTENTTYPE_PKEY, new TableField[] { TSalescontenttype.T_SALESCONTENTTYPE.NAME }, true, ForeignKeyRule.NO_ACTION, ForeignKeyRule.NO_ACTION);
}

View File

@ -39,11 +39,12 @@ import java.util.List;
import org.jooq.Catalog;
import org.jooq.Table;
import org.jooq.impl.DSL;
import org.jooq.impl.SchemaImpl;
/**
* This class is generated by jOOQ.
* standard public schema
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class Public extends SchemaImpl {
@ -204,7 +205,7 @@ public class Public extends SchemaImpl {
* No further instances allowed
*/
private Public() {
super("public", null);
super(DSL.name("public"), null, DSL.comment("standard public schema"));
}

View File

@ -0,0 +1,449 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.tables.TCampdocument.TCampdocumentPath;
import de.jottyfan.camporganizer.db.jooq.tables.TCampprofile.TCampprofilePath;
import de.jottyfan.camporganizer.db.jooq.tables.TDocument.TDocumentPath;
import de.jottyfan.camporganizer.db.jooq.tables.TLocation.TLocationPath;
import de.jottyfan.camporganizer.db.jooq.tables.TPerson.TPersonPath;
import de.jottyfan.camporganizer.db.jooq.tables.TProfile.TProfilePath;
import de.jottyfan.camporganizer.db.jooq.tables.TSales.TSalesPath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TCampRecord;
import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
import org.jooq.Stringly;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TCamp extends TableImpl<TCampRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>public.t_camp</code>
*/
public static final TCamp T_CAMP = new TCamp();
/**
* The class holding records for this type
*/
@Override
public Class<TCampRecord> getRecordType() {
return TCampRecord.class;
}
/**
* The column <code>public.t_camp.pk</code>.
*/
public final TableField<TCampRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
/**
* The column <code>public.t_camp.name</code>.
*/
public final TableField<TCampRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB.nullable(false), this, "");
/**
* The column <code>public.t_camp.arrive</code>.
*/
public final TableField<TCampRecord, LocalDateTime> ARRIVE = createField(DSL.name("arrive"), SQLDataType.LOCALDATETIME(6).nullable(false), this, "");
/**
* The column <code>public.t_camp.depart</code>.
*/
public final TableField<TCampRecord, LocalDateTime> DEPART = createField(DSL.name("depart"), SQLDataType.LOCALDATETIME(6).nullable(false), this, "");
/**
* The column <code>public.t_camp.fk_location</code>.
*/
public final TableField<TCampRecord, Integer> FK_LOCATION = createField(DSL.name("fk_location"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>public.t_camp.min_age</code>.
*/
public final TableField<TCampRecord, Integer> MIN_AGE = createField(DSL.name("min_age"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>public.t_camp.max_age</code>.
*/
public final TableField<TCampRecord, Integer> MAX_AGE = createField(DSL.name("max_age"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>public.t_camp.price</code>.
*/
public final TableField<TCampRecord, String> PRICE = createField(DSL.name("price"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.t_camp.countries</code>.
*/
public final TableField<TCampRecord, String> COUNTRIES = createField(DSL.name("countries"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.t_camp.fk_document</code>.
*/
public final TableField<TCampRecord, Integer> FK_DOCUMENT = createField(DSL.name("fk_document"), SQLDataType.INTEGER, this, "");
/**
* The column <code>public.t_camp.lock_sales</code>.
*/
public final TableField<TCampRecord, Boolean> LOCK_SALES = createField(DSL.name("lock_sales"), SQLDataType.BOOLEAN.nullable(false).defaultValue(DSL.field(DSL.raw("false"), SQLDataType.BOOLEAN)), this, "");
/**
* The column <code>public.t_camp.fk_profile</code>.
*/
public final TableField<TCampRecord, Integer> FK_PROFILE = createField(DSL.name("fk_profile"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>public.t_camp.beds_male</code>.
*/
public final TableField<TCampRecord, Integer> BEDS_MALE = createField(DSL.name("beds_male"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
/**
* The column <code>public.t_camp.beds_female</code>.
*/
public final TableField<TCampRecord, Integer> BEDS_FEMALE = createField(DSL.name("beds_female"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
/**
* The column <code>public.t_camp.blocked_beds_male</code>.
*/
public final TableField<TCampRecord, Integer> BLOCKED_BEDS_MALE = createField(DSL.name("blocked_beds_male"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
/**
* The column <code>public.t_camp.blocked_beds_female</code>.
*/
public final TableField<TCampRecord, Integer> BLOCKED_BEDS_FEMALE = createField(DSL.name("blocked_beds_female"), SQLDataType.INTEGER.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
/**
* The column <code>public.t_camp.start_booking</code>.
*/
public final TableField<TCampRecord, LocalDateTime> START_BOOKING = createField(DSL.name("start_booking"), SQLDataType.LOCALDATETIME(6).nullable(false), this, "");
/**
* The column <code>public.t_camp.min_teacherage</code>.
*/
public final TableField<TCampRecord, Integer> MIN_TEACHERAGE = createField(DSL.name("min_teacherage"), SQLDataType.INTEGER, this, "");
private TCamp(Name alias, Table<TCampRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private TCamp(Name alias, Table<TCampRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>public.t_camp</code> table reference
*/
public TCamp(String alias) {
this(DSL.name(alias), T_CAMP);
}
/**
* Create an aliased <code>public.t_camp</code> table reference
*/
public TCamp(Name alias) {
this(alias, T_CAMP);
}
/**
* Create a <code>public.t_camp</code> table reference
*/
public TCamp() {
this(DSL.name("t_camp"), null);
}
public <O extends Record> TCamp(Table<O> path, ForeignKey<O, TCampRecord> childPath, InverseForeignKey<O, TCampRecord> parentPath) {
super(path, childPath, parentPath, T_CAMP);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TCampPath extends TCamp implements Path<TCampRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TCampPath(Table<O> path, ForeignKey<O, TCampRecord> childPath, InverseForeignKey<O, TCampRecord> parentPath) {
super(path, childPath, parentPath);
}
private TCampPath(Name alias, Table<TCampRecord> aliased) {
super(alias, aliased);
}
@Override
public TCampPath as(String alias) {
return new TCampPath(DSL.name(alias), this);
}
@Override
public TCampPath as(Name alias) {
return new TCampPath(alias, this);
}
@Override
public TCampPath as(Table<?> alias) {
return new TCampPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
}
@Override
public Identity<TCampRecord, Integer> getIdentity() {
return (Identity<TCampRecord, Integer>) super.getIdentity();
}
@Override
public UniqueKey<TCampRecord> getPrimaryKey() {
return Keys.T_CAMP_PKEY;
}
@Override
public List<ForeignKey<TCampRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_CAMP__T_CAMP_FK_DOCUMENT_FKEY, Keys.T_CAMP__T_CAMP_FK_LOCATION_FKEY, Keys.T_CAMP__T_CAMP_FK_PROFILE_FKEY);
}
private transient TDocumentPath _tDocument;
/**
* Get the implicit join path to the <code>public.t_document</code> table.
*/
public TDocumentPath tDocument() {
if (_tDocument == null)
_tDocument = new TDocumentPath(this, Keys.T_CAMP__T_CAMP_FK_DOCUMENT_FKEY, null);
return _tDocument;
}
private transient TLocationPath _tLocation;
/**
* Get the implicit join path to the <code>public.t_location</code> table.
*/
public TLocationPath tLocation() {
if (_tLocation == null)
_tLocation = new TLocationPath(this, Keys.T_CAMP__T_CAMP_FK_LOCATION_FKEY, null);
return _tLocation;
}
private transient TProfilePath _tProfile;
/**
* Get the implicit join path to the <code>public.t_profile</code> table.
*/
public TProfilePath tProfile() {
if (_tProfile == null)
_tProfile = new TProfilePath(this, Keys.T_CAMP__T_CAMP_FK_PROFILE_FKEY, null);
return _tProfile;
}
private transient TCampdocumentPath _tCampdocument;
/**
* Get the implicit to-many join path to the
* <code>public.t_campdocument</code> table
*/
public TCampdocumentPath tCampdocument() {
if (_tCampdocument == null)
_tCampdocument = new TCampdocumentPath(this, null, Keys.T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_CAMP_FKEY.getInverseKey());
return _tCampdocument;
}
private transient TCampprofilePath _tCampprofile;
/**
* Get the implicit to-many join path to the
* <code>public.t_campprofile</code> table
*/
public TCampprofilePath tCampprofile() {
if (_tCampprofile == null)
_tCampprofile = new TCampprofilePath(this, null, Keys.T_CAMPPROFILE__T_CAMPPROFILE_FK_CAMP_FKEY.getInverseKey());
return _tCampprofile;
}
private transient TPersonPath _tPerson;
/**
* Get the implicit to-many join path to the <code>public.t_person</code>
* table
*/
public TPersonPath tPerson() {
if (_tPerson == null)
_tPerson = new TPersonPath(this, null, Keys.T_PERSON__T_PERSON_FK_CAMP_FKEY.getInverseKey());
return _tPerson;
}
private transient TSalesPath _tSales;
/**
* Get the implicit to-many join path to the <code>public.t_sales</code>
* table
*/
public TSalesPath tSales() {
if (_tSales == null)
_tSales = new TSalesPath(this, null, Keys.T_SALES__T_SALES_FK_CAMP_FKEY.getInverseKey());
return _tSales;
}
@Override
public TCamp as(String alias) {
return new TCamp(DSL.name(alias), this);
}
@Override
public TCamp as(Name alias) {
return new TCamp(alias, this);
}
@Override
public TCamp as(Table<?> alias) {
return new TCamp(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public TCamp rename(String name) {
return new TCamp(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public TCamp rename(Name name) {
return new TCamp(name, null);
}
/**
* Rename this table
*/
@Override
public TCamp rename(Table<?> name) {
return new TCamp(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public TCamp where(Condition condition) {
return new TCamp(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public TCamp where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public TCamp where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public TCamp where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public TCamp where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public TCamp where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public TCamp where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public TCamp where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public TCamp whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public TCamp whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View File

@ -6,6 +6,8 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
import de.jottyfan.camporganizer.db.jooq.tables.TDocument.TDocumentPath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TCampdocumentRecord;
import java.util.Arrays;
@ -14,10 +16,14 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -96,6 +102,39 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
this(DSL.name("t_campdocument"), null);
}
public <O extends Record> TCampdocument(Table<O> path, ForeignKey<O, TCampdocumentRecord> childPath, InverseForeignKey<O, TCampdocumentRecord> parentPath) {
super(path, childPath, parentPath, T_CAMPDOCUMENT);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TCampdocumentPath extends TCampdocument implements Path<TCampdocumentRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TCampdocumentPath(Table<O> path, ForeignKey<O, TCampdocumentRecord> childPath, InverseForeignKey<O, TCampdocumentRecord> parentPath) {
super(path, childPath, parentPath);
}
private TCampdocumentPath(Name alias, Table<TCampdocumentRecord> aliased) {
super(alias, aliased);
}
@Override
public TCampdocumentPath as(String alias) {
return new TCampdocumentPath(DSL.name(alias), this);
}
@Override
public TCampdocumentPath as(Name alias) {
return new TCampdocumentPath(alias, this);
}
@Override
public TCampdocumentPath as(Table<?> alias) {
return new TCampdocumentPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -116,6 +155,35 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
return Arrays.asList(Keys.T_CAMPDOCUMENT_FK_CAMP_FK_DOCUMENT_KEY);
}
@Override
public List<ForeignKey<TCampdocumentRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_CAMP_FKEY, Keys.T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_DOCUMENT_FKEY);
}
private transient TCampPath _tCamp;
/**
* Get the implicit join path to the <code>public.t_camp</code> table.
*/
public TCampPath tCamp() {
if (_tCamp == null)
_tCamp = new TCampPath(this, Keys.T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_CAMP_FKEY, null);
return _tCamp;
}
private transient TDocumentPath _tDocument;
/**
* Get the implicit join path to the <code>public.t_document</code> table.
*/
public TDocumentPath tDocument() {
if (_tDocument == null)
_tDocument = new TDocumentPath(this, Keys.T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_DOCUMENT_FKEY, null);
return _tDocument;
}
@Override
public TCampdocument as(String alias) {
return new TCampdocument(DSL.name(alias), this);

View File

@ -7,6 +7,8 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.enums.EnumModule;
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
import de.jottyfan.camporganizer.db.jooq.tables.TProfile.TProfilePath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TCampprofileRecord;
import java.util.Arrays;
@ -15,10 +17,14 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -102,6 +108,39 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
this(DSL.name("t_campprofile"), null);
}
public <O extends Record> TCampprofile(Table<O> path, ForeignKey<O, TCampprofileRecord> childPath, InverseForeignKey<O, TCampprofileRecord> parentPath) {
super(path, childPath, parentPath, T_CAMPPROFILE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TCampprofilePath extends TCampprofile implements Path<TCampprofileRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TCampprofilePath(Table<O> path, ForeignKey<O, TCampprofileRecord> childPath, InverseForeignKey<O, TCampprofileRecord> parentPath) {
super(path, childPath, parentPath);
}
private TCampprofilePath(Name alias, Table<TCampprofileRecord> aliased) {
super(alias, aliased);
}
@Override
public TCampprofilePath as(String alias) {
return new TCampprofilePath(DSL.name(alias), this);
}
@Override
public TCampprofilePath as(Name alias) {
return new TCampprofilePath(alias, this);
}
@Override
public TCampprofilePath as(Table<?> alias) {
return new TCampprofilePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -122,6 +161,35 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
return Arrays.asList(Keys.T_CAMPPROFILE_FK_PROFILE_FK_CAMP_MODULE_KEY);
}
@Override
public List<ForeignKey<TCampprofileRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_CAMPPROFILE__T_CAMPPROFILE_FK_CAMP_FKEY, Keys.T_CAMPPROFILE__T_CAMPPROFILE_FK_PROFILE_FKEY);
}
private transient TCampPath _tCamp;
/**
* Get the implicit join path to the <code>public.t_camp</code> table.
*/
public TCampPath tCamp() {
if (_tCamp == null)
_tCamp = new TCampPath(this, Keys.T_CAMPPROFILE__T_CAMPPROFILE_FK_CAMP_FKEY, null);
return _tCamp;
}
private transient TProfilePath _tProfile;
/**
* Get the implicit join path to the <code>public.t_profile</code> table.
*/
public TProfilePath tProfile() {
if (_tProfile == null)
_tProfile = new TProfilePath(this, Keys.T_CAMPPROFILE__T_CAMPPROFILE_FK_PROFILE_FKEY, null);
return _tProfile;
}
@Override
public TCampprofile as(String alias) {
return new TCampprofile(DSL.name(alias), this);

View File

@ -8,6 +8,10 @@ import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.enums.EnumDocument;
import de.jottyfan.camporganizer.db.jooq.enums.EnumFiletype;
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
import de.jottyfan.camporganizer.db.jooq.tables.TCampdocument.TCampdocumentPath;
import de.jottyfan.camporganizer.db.jooq.tables.TDocumentrole.TDocumentrolePath;
import de.jottyfan.camporganizer.db.jooq.tables.TLocation.TLocationPath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TDocumentRecord;
import java.util.Arrays;
@ -16,10 +20,14 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -108,6 +116,39 @@ public class TDocument extends TableImpl<TDocumentRecord> {
this(DSL.name("t_document"), null);
}
public <O extends Record> TDocument(Table<O> path, ForeignKey<O, TDocumentRecord> childPath, InverseForeignKey<O, TDocumentRecord> parentPath) {
super(path, childPath, parentPath, T_DOCUMENT);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TDocumentPath extends TDocument implements Path<TDocumentRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TDocumentPath(Table<O> path, ForeignKey<O, TDocumentRecord> childPath, InverseForeignKey<O, TDocumentRecord> parentPath) {
super(path, childPath, parentPath);
}
private TDocumentPath(Name alias, Table<TDocumentRecord> aliased) {
super(alias, aliased);
}
@Override
public TDocumentPath as(String alias) {
return new TDocumentPath(DSL.name(alias), this);
}
@Override
public TDocumentPath as(Name alias) {
return new TDocumentPath(alias, this);
}
@Override
public TDocumentPath as(Table<?> alias) {
return new TDocumentPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -128,6 +169,58 @@ public class TDocument extends TableImpl<TDocumentRecord> {
return Arrays.asList(Keys.T_DOCUMENT_NAME_KEY);
}
private transient TCampPath _tCamp;
/**
* Get the implicit to-many join path to the <code>public.t_camp</code>
* table
*/
public TCampPath tCamp() {
if (_tCamp == null)
_tCamp = new TCampPath(this, null, Keys.T_CAMP__T_CAMP_FK_DOCUMENT_FKEY.getInverseKey());
return _tCamp;
}
private transient TCampdocumentPath _tCampdocument;
/**
* Get the implicit to-many join path to the
* <code>public.t_campdocument</code> table
*/
public TCampdocumentPath tCampdocument() {
if (_tCampdocument == null)
_tCampdocument = new TCampdocumentPath(this, null, Keys.T_CAMPDOCUMENT__T_CAMPDOCUMENT_FK_DOCUMENT_FKEY.getInverseKey());
return _tCampdocument;
}
private transient TDocumentrolePath _tDocumentrole;
/**
* Get the implicit to-many join path to the
* <code>public.t_documentrole</code> table
*/
public TDocumentrolePath tDocumentrole() {
if (_tDocumentrole == null)
_tDocumentrole = new TDocumentrolePath(this, null, Keys.T_DOCUMENTROLE__T_DOCUMENTROLE_FK_DOCUMENT_FKEY.getInverseKey());
return _tDocumentrole;
}
private transient TLocationPath _tLocation;
/**
* Get the implicit to-many join path to the <code>public.t_location</code>
* table
*/
public TLocationPath tLocation() {
if (_tLocation == null)
_tLocation = new TLocationPath(this, null, Keys.T_LOCATION__T_LOCATION_FK_DOCUMENT_FKEY.getInverseKey());
return _tLocation;
}
@Override
public TDocument as(String alias) {
return new TDocument(DSL.name(alias), this);

View File

@ -7,6 +7,7 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import de.jottyfan.camporganizer.db.jooq.tables.TDocument.TDocumentPath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TDocumentroleRecord;
import java.util.Arrays;
@ -15,10 +16,14 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -97,6 +102,39 @@ public class TDocumentrole extends TableImpl<TDocumentroleRecord> {
this(DSL.name("t_documentrole"), null);
}
public <O extends Record> TDocumentrole(Table<O> path, ForeignKey<O, TDocumentroleRecord> childPath, InverseForeignKey<O, TDocumentroleRecord> parentPath) {
super(path, childPath, parentPath, T_DOCUMENTROLE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TDocumentrolePath extends TDocumentrole implements Path<TDocumentroleRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TDocumentrolePath(Table<O> path, ForeignKey<O, TDocumentroleRecord> childPath, InverseForeignKey<O, TDocumentroleRecord> parentPath) {
super(path, childPath, parentPath);
}
private TDocumentrolePath(Name alias, Table<TDocumentroleRecord> aliased) {
super(alias, aliased);
}
@Override
public TDocumentrolePath as(String alias) {
return new TDocumentrolePath(DSL.name(alias), this);
}
@Override
public TDocumentrolePath as(Name alias) {
return new TDocumentrolePath(alias, this);
}
@Override
public TDocumentrolePath as(Table<?> alias) {
return new TDocumentrolePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -117,6 +155,23 @@ public class TDocumentrole extends TableImpl<TDocumentroleRecord> {
return Arrays.asList(Keys.T_DOCUMENTROLE_FK_DOCUMENT_CAMPROLE_KEY);
}
@Override
public List<ForeignKey<TDocumentroleRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_DOCUMENTROLE__T_DOCUMENTROLE_FK_DOCUMENT_FKEY);
}
private transient TDocumentPath _tDocument;
/**
* Get the implicit join path to the <code>public.t_document</code> table.
*/
public TDocumentPath tDocument() {
if (_tDocument == null)
_tDocument = new TDocumentPath(this, Keys.T_DOCUMENTROLE__T_DOCUMENTROLE_FK_DOCUMENT_FKEY, null);
return _tDocument;
}
@Override
public TDocumentrole as(String alias) {
return new TDocumentrole(DSL.name(alias), this);

View File

@ -6,16 +6,24 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
import de.jottyfan.camporganizer.db.jooq.tables.TDocument.TDocumentPath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TLocationRecord;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -99,6 +107,39 @@ public class TLocation extends TableImpl<TLocationRecord> {
this(DSL.name("t_location"), null);
}
public <O extends Record> TLocation(Table<O> path, ForeignKey<O, TLocationRecord> childPath, InverseForeignKey<O, TLocationRecord> parentPath) {
super(path, childPath, parentPath, T_LOCATION);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TLocationPath extends TLocation implements Path<TLocationRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TLocationPath(Table<O> path, ForeignKey<O, TLocationRecord> childPath, InverseForeignKey<O, TLocationRecord> parentPath) {
super(path, childPath, parentPath);
}
private TLocationPath(Name alias, Table<TLocationRecord> aliased) {
super(alias, aliased);
}
@Override
public TLocationPath as(String alias) {
return new TLocationPath(DSL.name(alias), this);
}
@Override
public TLocationPath as(Name alias) {
return new TLocationPath(alias, this);
}
@Override
public TLocationPath as(Table<?> alias) {
return new TLocationPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -114,6 +155,36 @@ public class TLocation extends TableImpl<TLocationRecord> {
return Keys.T_LOCATION_PKEY;
}
@Override
public List<ForeignKey<TLocationRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_LOCATION__T_LOCATION_FK_DOCUMENT_FKEY);
}
private transient TDocumentPath _tDocument;
/**
* Get the implicit join path to the <code>public.t_document</code> table.
*/
public TDocumentPath tDocument() {
if (_tDocument == null)
_tDocument = new TDocumentPath(this, Keys.T_LOCATION__T_LOCATION_FK_DOCUMENT_FKEY, null);
return _tDocument;
}
private transient TCampPath _tCamp;
/**
* Get the implicit to-many join path to the <code>public.t_camp</code>
* table
*/
public TCampPath tCamp() {
if (_tCamp == null)
_tCamp = new TCampPath(this, null, Keys.T_CAMP__T_CAMP_FK_LOCATION_FKEY.getInverseKey());
return _tCamp;
}
@Override
public TLocation as(String alias) {
return new TLocation(DSL.name(alias), this);

View File

@ -9,6 +9,9 @@ import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import de.jottyfan.camporganizer.db.jooq.enums.EnumProgress;
import de.jottyfan.camporganizer.db.jooq.enums.EnumSex;
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
import de.jottyfan.camporganizer.db.jooq.tables.TPersondocument.TPersondocumentPath;
import de.jottyfan.camporganizer.db.jooq.tables.TProfile.TProfilePath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TPersonRecord;
import java.math.BigDecimal;
@ -20,10 +23,14 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -192,6 +199,39 @@ public class TPerson extends TableImpl<TPersonRecord> {
this(DSL.name("t_person"), null);
}
public <O extends Record> TPerson(Table<O> path, ForeignKey<O, TPersonRecord> childPath, InverseForeignKey<O, TPersonRecord> parentPath) {
super(path, childPath, parentPath, T_PERSON);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TPersonPath extends TPerson implements Path<TPersonRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TPersonPath(Table<O> path, ForeignKey<O, TPersonRecord> childPath, InverseForeignKey<O, TPersonRecord> parentPath) {
super(path, childPath, parentPath);
}
private TPersonPath(Name alias, Table<TPersonRecord> aliased) {
super(alias, aliased);
}
@Override
public TPersonPath as(String alias) {
return new TPersonPath(DSL.name(alias), this);
}
@Override
public TPersonPath as(Name alias) {
return new TPersonPath(alias, this);
}
@Override
public TPersonPath as(Table<?> alias) {
return new TPersonPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -212,6 +252,62 @@ public class TPerson extends TableImpl<TPersonRecord> {
return Arrays.asList(Keys.T_PERSON_FORENAME_SURNAME_BIRTHDATE_FK_CAMP_KEY);
}
@Override
public List<ForeignKey<TPersonRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_PERSON__T_PERSON_FK_CAMP_FKEY, Keys.T_PERSON__T_PERSON_FK_PROFILE_FKEY, Keys.T_PERSON__T_PERSON_FK_REGISTRATOR_FKEY);
}
private transient TCampPath _tCamp;
/**
* Get the implicit join path to the <code>public.t_camp</code> table.
*/
public TCampPath tCamp() {
if (_tCamp == null)
_tCamp = new TCampPath(this, Keys.T_PERSON__T_PERSON_FK_CAMP_FKEY, null);
return _tCamp;
}
private transient TProfilePath _tPersonFkProfileFkey;
/**
* Get the implicit join path to the <code>public.t_profile</code> table,
* via the <code>t_person_fk_profile_fkey</code> key.
*/
public TProfilePath tPersonFkProfileFkey() {
if (_tPersonFkProfileFkey == null)
_tPersonFkProfileFkey = new TProfilePath(this, Keys.T_PERSON__T_PERSON_FK_PROFILE_FKEY, null);
return _tPersonFkProfileFkey;
}
private transient TProfilePath _tPersonFkRegistratorFkey;
/**
* Get the implicit join path to the <code>public.t_profile</code> table,
* via the <code>t_person_fk_registrator_fkey</code> key.
*/
public TProfilePath tPersonFkRegistratorFkey() {
if (_tPersonFkRegistratorFkey == null)
_tPersonFkRegistratorFkey = new TProfilePath(this, Keys.T_PERSON__T_PERSON_FK_REGISTRATOR_FKEY, null);
return _tPersonFkRegistratorFkey;
}
private transient TPersondocumentPath _tPersondocument;
/**
* Get the implicit to-many join path to the
* <code>public.t_persondocument</code> table
*/
public TPersondocumentPath tPersondocument() {
if (_tPersondocument == null)
_tPersondocument = new TPersondocumentPath(this, null, Keys.T_PERSONDOCUMENT__T_PERSONDOCUMENT_FK_PERSON_FKEY.getInverseKey());
return _tPersondocument;
}
@Override
public TPerson as(String alias) {
return new TPerson(DSL.name(alias), this);

View File

@ -7,6 +7,7 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.enums.EnumFiletype;
import de.jottyfan.camporganizer.db.jooq.tables.TPerson.TPersonPath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TPersondocumentRecord;
import java.util.Arrays;
@ -15,10 +16,14 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -107,6 +112,39 @@ public class TPersondocument extends TableImpl<TPersondocumentRecord> {
this(DSL.name("t_persondocument"), null);
}
public <O extends Record> TPersondocument(Table<O> path, ForeignKey<O, TPersondocumentRecord> childPath, InverseForeignKey<O, TPersondocumentRecord> parentPath) {
super(path, childPath, parentPath, T_PERSONDOCUMENT);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TPersondocumentPath extends TPersondocument implements Path<TPersondocumentRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TPersondocumentPath(Table<O> path, ForeignKey<O, TPersondocumentRecord> childPath, InverseForeignKey<O, TPersondocumentRecord> parentPath) {
super(path, childPath, parentPath);
}
private TPersondocumentPath(Name alias, Table<TPersondocumentRecord> aliased) {
super(alias, aliased);
}
@Override
public TPersondocumentPath as(String alias) {
return new TPersondocumentPath(DSL.name(alias), this);
}
@Override
public TPersondocumentPath as(Name alias) {
return new TPersondocumentPath(alias, this);
}
@Override
public TPersondocumentPath as(Table<?> alias) {
return new TPersondocumentPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -127,6 +165,23 @@ public class TPersondocument extends TableImpl<TPersondocumentRecord> {
return Arrays.asList(Keys.T_PERSONDOCUMENT_FK_PERSON_NAME_KEY);
}
@Override
public List<ForeignKey<TPersondocumentRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_PERSONDOCUMENT__T_PERSONDOCUMENT_FK_PERSON_FKEY);
}
private transient TPersonPath _tPerson;
/**
* Get the implicit join path to the <code>public.t_person</code> table.
*/
public TPersonPath tPerson() {
if (_tPerson == null)
_tPerson = new TPersonPath(this, Keys.T_PERSONDOCUMENT__T_PERSONDOCUMENT_FK_PERSON_FKEY, null);
return _tPerson;
}
@Override
public TPersondocument as(String alias) {
return new TPersondocument(DSL.name(alias), this);

View File

@ -6,6 +6,10 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
import de.jottyfan.camporganizer.db.jooq.tables.TCampprofile.TCampprofilePath;
import de.jottyfan.camporganizer.db.jooq.tables.TPerson.TPersonPath;
import de.jottyfan.camporganizer.db.jooq.tables.TProfilerole.TProfilerolePath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TProfileRecord;
import java.time.LocalDateTime;
@ -15,10 +19,14 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -117,6 +125,39 @@ public class TProfile extends TableImpl<TProfileRecord> {
this(DSL.name("t_profile"), null);
}
public <O extends Record> TProfile(Table<O> path, ForeignKey<O, TProfileRecord> childPath, InverseForeignKey<O, TProfileRecord> parentPath) {
super(path, childPath, parentPath, T_PROFILE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TProfilePath extends TProfile implements Path<TProfileRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TProfilePath(Table<O> path, ForeignKey<O, TProfileRecord> childPath, InverseForeignKey<O, TProfileRecord> parentPath) {
super(path, childPath, parentPath);
}
private TProfilePath(Name alias, Table<TProfileRecord> aliased) {
super(alias, aliased);
}
@Override
public TProfilePath as(String alias) {
return new TProfilePath(DSL.name(alias), this);
}
@Override
public TProfilePath as(Name alias) {
return new TProfilePath(alias, this);
}
@Override
public TProfilePath as(Table<?> alias) {
return new TProfilePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -137,6 +178,71 @@ public class TProfile extends TableImpl<TProfileRecord> {
return Arrays.asList(Keys.T_PROFILE_USERNAME_KEY, Keys.T_PROFILE_UUID_KEY);
}
private transient TCampPath _tCamp;
/**
* Get the implicit to-many join path to the <code>public.t_camp</code>
* table
*/
public TCampPath tCamp() {
if (_tCamp == null)
_tCamp = new TCampPath(this, null, Keys.T_CAMP__T_CAMP_FK_PROFILE_FKEY.getInverseKey());
return _tCamp;
}
private transient TCampprofilePath _tCampprofile;
/**
* Get the implicit to-many join path to the
* <code>public.t_campprofile</code> table
*/
public TCampprofilePath tCampprofile() {
if (_tCampprofile == null)
_tCampprofile = new TCampprofilePath(this, null, Keys.T_CAMPPROFILE__T_CAMPPROFILE_FK_PROFILE_FKEY.getInverseKey());
return _tCampprofile;
}
private transient TPersonPath _tPersonFkProfileFkey;
/**
* Get the implicit to-many join path to the <code>public.t_person</code>
* table, via the <code>t_person_fk_profile_fkey</code> key
*/
public TPersonPath tPersonFkProfileFkey() {
if (_tPersonFkProfileFkey == null)
_tPersonFkProfileFkey = new TPersonPath(this, null, Keys.T_PERSON__T_PERSON_FK_PROFILE_FKEY.getInverseKey());
return _tPersonFkProfileFkey;
}
private transient TPersonPath _tPersonFkRegistratorFkey;
/**
* Get the implicit to-many join path to the <code>public.t_person</code>
* table, via the <code>t_person_fk_registrator_fkey</code> key
*/
public TPersonPath tPersonFkRegistratorFkey() {
if (_tPersonFkRegistratorFkey == null)
_tPersonFkRegistratorFkey = new TPersonPath(this, null, Keys.T_PERSON__T_PERSON_FK_REGISTRATOR_FKEY.getInverseKey());
return _tPersonFkRegistratorFkey;
}
private transient TProfilerolePath _tProfilerole;
/**
* Get the implicit to-many join path to the
* <code>public.t_profilerole</code> table
*/
public TProfilerolePath tProfilerole() {
if (_tProfilerole == null)
_tProfilerole = new TProfilerolePath(this, null, Keys.T_PROFILEROLE__T_PROFILEROLE_FK_PROFILE_FKEY.getInverseKey());
return _tProfilerole;
}
@Override
public TProfile as(String alias) {
return new TProfile(DSL.name(alias), this);

View File

@ -7,6 +7,7 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.enums.EnumRole;
import de.jottyfan.camporganizer.db.jooq.tables.TProfile.TProfilePath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TProfileroleRecord;
import java.util.Arrays;
@ -15,9 +16,13 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -91,6 +96,39 @@ public class TProfilerole extends TableImpl<TProfileroleRecord> {
this(DSL.name("t_profilerole"), null);
}
public <O extends Record> TProfilerole(Table<O> path, ForeignKey<O, TProfileroleRecord> childPath, InverseForeignKey<O, TProfileroleRecord> parentPath) {
super(path, childPath, parentPath, T_PROFILEROLE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TProfilerolePath extends TProfilerole implements Path<TProfileroleRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TProfilerolePath(Table<O> path, ForeignKey<O, TProfileroleRecord> childPath, InverseForeignKey<O, TProfileroleRecord> parentPath) {
super(path, childPath, parentPath);
}
private TProfilerolePath(Name alias, Table<TProfileroleRecord> aliased) {
super(alias, aliased);
}
@Override
public TProfilerolePath as(String alias) {
return new TProfilerolePath(DSL.name(alias), this);
}
@Override
public TProfilerolePath as(Name alias) {
return new TProfilerolePath(alias, this);
}
@Override
public TProfilerolePath as(Table<?> alias) {
return new TProfilerolePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -101,6 +139,23 @@ public class TProfilerole extends TableImpl<TProfileroleRecord> {
return Arrays.asList(Keys.T_PROFILEROLE_FK_PROFILE_ROLE_KEY);
}
@Override
public List<ForeignKey<TProfileroleRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_PROFILEROLE__T_PROFILEROLE_FK_PROFILE_FKEY);
}
private transient TProfilePath _tProfile;
/**
* Get the implicit join path to the <code>public.t_profile</code> table.
*/
public TProfilePath tProfile() {
if (_tProfile == null)
_tProfile = new TProfilePath(this, Keys.T_PROFILEROLE__T_PROFILEROLE_FK_PROFILE_FKEY, null);
return _tProfile;
}
@Override
public TProfilerole as(String alias) {
return new TProfilerole(DSL.name(alias), this);

View File

@ -6,18 +6,27 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontent.TSalescontentPath;
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontenttype.TSalescontenttypePath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TSalesRecord;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -136,6 +145,39 @@ public class TSales extends TableImpl<TSalesRecord> {
this(DSL.name("t_sales"), null);
}
public <O extends Record> TSales(Table<O> path, ForeignKey<O, TSalesRecord> childPath, InverseForeignKey<O, TSalesRecord> parentPath) {
super(path, childPath, parentPath, T_SALES);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TSalesPath extends TSales implements Path<TSalesRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TSalesPath(Table<O> path, ForeignKey<O, TSalesRecord> childPath, InverseForeignKey<O, TSalesRecord> parentPath) {
super(path, childPath, parentPath);
}
private TSalesPath(Name alias, Table<TSalesRecord> aliased) {
super(alias, aliased);
}
@Override
public TSalesPath as(String alias) {
return new TSalesPath(DSL.name(alias), this);
}
@Override
public TSalesPath as(Name alias) {
return new TSalesPath(alias, this);
}
@Override
public TSalesPath as(Table<?> alias) {
return new TSalesPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -151,6 +193,44 @@ public class TSales extends TableImpl<TSalesRecord> {
return Keys.T_SALES_PKEY;
}
@Override
public List<ForeignKey<TSalesRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_SALES__T_SALES_FK_CAMP_FKEY);
}
private transient TCampPath _tCamp;
/**
* Get the implicit join path to the <code>public.t_camp</code> table.
*/
public TCampPath tCamp() {
if (_tCamp == null)
_tCamp = new TCampPath(this, Keys.T_SALES__T_SALES_FK_CAMP_FKEY, null);
return _tCamp;
}
private transient TSalescontentPath _tSalescontent;
/**
* Get the implicit to-many join path to the
* <code>public.t_salescontent</code> table
*/
public TSalescontentPath tSalescontent() {
if (_tSalescontent == null)
_tSalescontent = new TSalescontentPath(this, null, Keys.T_SALESCONTENT__T_SALESCONTENT_FK_SALES_FKEY.getInverseKey());
return _tSalescontent;
}
/**
* Get the implicit many-to-many join path to the
* <code>public.t_salescontenttype</code> table
*/
public TSalescontenttypePath tSalescontenttype() {
return tSalescontent().tSalescontenttype();
}
@Override
public TSales as(String alias) {
return new TSales(DSL.name(alias), this);

View File

@ -6,6 +6,8 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.tables.TSales.TSalesPath;
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontenttype.TSalescontenttypePath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TSalescontentRecord;
import java.util.Arrays;
@ -14,9 +16,13 @@ import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -90,6 +96,39 @@ public class TSalescontent extends TableImpl<TSalescontentRecord> {
this(DSL.name("t_salescontent"), null);
}
public <O extends Record> TSalescontent(Table<O> path, ForeignKey<O, TSalescontentRecord> childPath, InverseForeignKey<O, TSalescontentRecord> parentPath) {
super(path, childPath, parentPath, T_SALESCONTENT);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TSalescontentPath extends TSalescontent implements Path<TSalescontentRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TSalescontentPath(Table<O> path, ForeignKey<O, TSalescontentRecord> childPath, InverseForeignKey<O, TSalescontentRecord> parentPath) {
super(path, childPath, parentPath);
}
private TSalescontentPath(Name alias, Table<TSalescontentRecord> aliased) {
super(alias, aliased);
}
@Override
public TSalescontentPath as(String alias) {
return new TSalescontentPath(DSL.name(alias), this);
}
@Override
public TSalescontentPath as(Name alias) {
return new TSalescontentPath(alias, this);
}
@Override
public TSalescontentPath as(Table<?> alias) {
return new TSalescontentPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -100,6 +139,36 @@ public class TSalescontent extends TableImpl<TSalescontentRecord> {
return Arrays.asList(Keys.T_SALESCONTENT_FK_SALES_FK_SALESCONTENTTYPE_KEY);
}
@Override
public List<ForeignKey<TSalescontentRecord, ?>> getReferences() {
return Arrays.asList(Keys.T_SALESCONTENT__T_SALESCONTENT_FK_SALES_FKEY, Keys.T_SALESCONTENT__T_SALESCONTENT_FK_SALESCONTENTTYPE_FKEY);
}
private transient TSalesPath _tSales;
/**
* Get the implicit join path to the <code>public.t_sales</code> table.
*/
public TSalesPath tSales() {
if (_tSales == null)
_tSales = new TSalesPath(this, Keys.T_SALESCONTENT__T_SALESCONTENT_FK_SALES_FKEY, null);
return _tSales;
}
private transient TSalescontenttypePath _tSalescontenttype;
/**
* Get the implicit join path to the <code>public.t_salescontenttype</code>
* table.
*/
public TSalescontenttypePath tSalescontenttype() {
if (_tSalescontenttype == null)
_tSalescontenttype = new TSalescontenttypePath(this, Keys.T_SALESCONTENT__T_SALESCONTENT_FK_SALESCONTENTTYPE_FKEY, null);
return _tSalescontenttype;
}
@Override
public TSalescontent as(String alias) {
return new TSalescontent(DSL.name(alias), this);

View File

@ -6,15 +6,21 @@ package de.jottyfan.camporganizer.db.jooq.tables;
import de.jottyfan.camporganizer.db.jooq.Keys;
import de.jottyfan.camporganizer.db.jooq.Public;
import de.jottyfan.camporganizer.db.jooq.tables.TSales.TSalesPath;
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontent.TSalescontentPath;
import de.jottyfan.camporganizer.db.jooq.tables.records.TSalescontenttypeRecord;
import java.util.Collection;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -83,6 +89,39 @@ public class TSalescontenttype extends TableImpl<TSalescontenttypeRecord> {
this(DSL.name("t_salescontenttype"), null);
}
public <O extends Record> TSalescontenttype(Table<O> path, ForeignKey<O, TSalescontenttypeRecord> childPath, InverseForeignKey<O, TSalescontenttypeRecord> parentPath) {
super(path, childPath, parentPath, T_SALESCONTENTTYPE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class TSalescontenttypePath extends TSalescontenttype implements Path<TSalescontenttypeRecord> {
private static final long serialVersionUID = 1L;
public <O extends Record> TSalescontenttypePath(Table<O> path, ForeignKey<O, TSalescontenttypeRecord> childPath, InverseForeignKey<O, TSalescontenttypeRecord> parentPath) {
super(path, childPath, parentPath);
}
private TSalescontenttypePath(Name alias, Table<TSalescontenttypeRecord> aliased) {
super(alias, aliased);
}
@Override
public TSalescontenttypePath as(String alias) {
return new TSalescontenttypePath(DSL.name(alias), this);
}
@Override
public TSalescontenttypePath as(Name alias) {
return new TSalescontenttypePath(alias, this);
}
@Override
public TSalescontenttypePath as(Table<?> alias) {
return new TSalescontenttypePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
@ -93,6 +132,27 @@ public class TSalescontenttype extends TableImpl<TSalescontenttypeRecord> {
return Keys.T_SALESCONTENTTYPE_PKEY;
}
private transient TSalescontentPath _tSalescontent;
/**
* Get the implicit to-many join path to the
* <code>public.t_salescontent</code> table
*/
public TSalescontentPath tSalescontent() {
if (_tSalescontent == null)
_tSalescontent = new TSalescontentPath(this, null, Keys.T_SALESCONTENT__T_SALESCONTENT_FK_SALESCONTENTTYPE_FKEY.getInverseKey());
return _tSalescontent;
}
/**
* Get the implicit many-to-many join path to the
* <code>public.t_sales</code> table
*/
public TSalesPath tSales() {
return tSalescontent().tSales();
}
@Override
public TSalescontenttype as(String alias) {
return new TSalescontenttype(DSL.name(alias), this);

View File

@ -80,7 +80,7 @@ public class VAdult extends TableImpl<VAdultRecord> {
private VAdult(Name alias, Table<VAdultRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_adult" as SELECT age((t_person.birthdate)::timestamp with time zone) AS age,
CREATE VIEW "v_adult" AS SELECT age((t_person.birthdate)::timestamp with time zone) AS age,
t_person.forename,
t_person.surname,
t_person.camprole,

View File

@ -79,7 +79,7 @@ public class VBudget extends TableImpl<VBudgetRecord> {
private VBudget(Name alias, Table<VBudgetRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_budget" as SELECT sum(v_sales.cash) AS budget,
CREATE VIEW "v_budget" AS SELECT sum(v_sales.cash) AS budget,
v_sales.fk_camp,
v_sales.name,
v_sales.location,

View File

@ -164,7 +164,7 @@ public class VCamp extends TableImpl<VCampRecord> {
private VCamp(Name alias, Table<VCampRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_camp" as WITH female(used, fk_camp) AS (
CREATE VIEW "v_camp" AS WITH female(used, fk_camp) AS (
SELECT count(1) AS count,
t_person.fk_camp
FROM t_person

View File

@ -74,7 +74,7 @@ public class VCampBudget extends TableImpl<VCampBudgetRecord> {
private VCampBudget(Name alias, Table<VCampBudgetRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_camp_budget" as WITH x(money, camp) AS (
CREATE VIEW "v_camp_budget" AS WITH x(money, camp) AS (
SELECT COALESCE(t_person.paid, 0.0) AS cash,
t_person.fk_camp
FROM t_person

View File

@ -64,7 +64,7 @@ public class VCampBudgetYear extends TableImpl<VCampBudgetYearRecord> {
private VCampBudgetYear(Name alias, Table<VCampBudgetYearRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_camp_budget_year" as SELECT sum(v_camp_budget.budget) AS sum,
CREATE VIEW "v_camp_budget_year" AS SELECT sum(v_camp_budget.budget) AS sum,
v_camp_budget.year
FROM v_camp_budget
GROUP BY v_camp_budget.year

View File

@ -96,7 +96,7 @@ public class VCampdocument extends TableImpl<VCampdocumentRecord> {
private VCampdocument(Name alias, Table<VCampdocumentRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_campdocument" as SELECT cd.fk_camp,
CREATE VIEW "v_campdocument" AS SELECT cd.fk_camp,
c.name AS campname,
c.arrive,
cd.fk_document,

View File

@ -59,7 +59,7 @@ public class VCamprole extends TableImpl<VCamproleRecord> {
private VCamprole(Name alias, Table<VCamproleRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_camprole" as SELECT unnest(enum_range(NULL::enum_camprole)) AS name;
CREATE VIEW "v_camprole" AS SELECT unnest(enum_range(NULL::enum_camprole)) AS name;
"""), where);
}

View File

@ -85,7 +85,7 @@ public class VDocument extends TableImpl<VDocumentRecord> {
private VDocument(Name alias, Table<VDocumentRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_document" as SELECT d.pk,
CREATE VIEW "v_document" AS SELECT d.pk,
d.doctype,
d.name,
d.document,

View File

@ -100,7 +100,7 @@ public class VDsgvoDeleteCandidate extends TableImpl<VDsgvoDeleteCandidateRecord
private VDsgvoDeleteCandidate(Name alias, Table<VDsgvoDeleteCandidateRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_dsgvo_delete_candidate" as SELECT p.pk AS fk_person,
CREATE VIEW "v_dsgvo_delete_candidate" AS SELECT p.pk AS fk_person,
p.forename,
p.surname,
p.fk_camp,

View File

@ -110,7 +110,7 @@ public class VFeeder extends TableImpl<VFeederRecord> {
private VFeeder(Name alias, Table<VFeederRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_feeder" as SELECT t_person.forename,
CREATE VIEW "v_feeder" AS SELECT t_person.forename,
t_person.surname,
t_person.street,
t_person.zip,

View File

@ -89,7 +89,7 @@ public class VProfile extends TableImpl<VProfileRecord> {
private VProfile(Name alias, Table<VProfileRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_profile" as SELECT t_profile.pk,
CREATE VIEW "v_profile" AS SELECT t_profile.pk,
t_profile.forename,
t_profile.surname,
t_profile.username,

View File

@ -110,7 +110,7 @@ public class VRegistration extends TableImpl<VRegistrationRecord> {
private VRegistration(Name alias, Table<VRegistrationRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_registration" as SELECT p.pk,
CREATE VIEW "v_registration" AS SELECT p.pk,
p.forename,
p.surname,
p.street,

View File

@ -59,7 +59,7 @@ public class VRole extends TableImpl<VRoleRecord> {
private VRole(Name alias, Table<VRoleRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_role" as SELECT unnest(enum_range(NULL::enum_role)) AS unnest;
CREATE VIEW "v_role" AS SELECT unnest(enum_range(NULL::enum_role)) AS unnest;
"""), where);
}

View File

@ -135,7 +135,7 @@ public class VSales extends TableImpl<VSalesRecord> {
private VSales(Name alias, Table<VSalesRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_sales" as SELECT s.pk,
CREATE VIEW "v_sales" AS SELECT s.pk,
s.trader,
c.pk AS fk_camp,
c.name,

View File

@ -58,7 +58,7 @@ public class VVersion extends TableImpl<VVersionRecord> {
private VVersion(Name alias, Table<VVersionRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "v_version" as SELECT '2025-04-23'::text AS version;
CREATE VIEW "v_version" AS SELECT '2025-04-23'::text AS version;
"""), where);
}

View File

@ -1,396 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TCamp implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String name;
private final LocalDateTime arrive;
private final LocalDateTime depart;
private final Integer fkLocation;
private final Integer minAge;
private final Integer maxAge;
private final String price;
private final String countries;
private final Integer fkDocument;
private final Boolean lockSales;
private final Integer fkProfile;
private final Integer bedsMale;
private final Integer bedsFemale;
private final Integer blockedBedsMale;
private final Integer blockedBedsFemale;
private final LocalDateTime startBooking;
private final Integer minTeacherage;
public TCamp(TCamp value) {
this.pk = value.pk;
this.name = value.name;
this.arrive = value.arrive;
this.depart = value.depart;
this.fkLocation = value.fkLocation;
this.minAge = value.minAge;
this.maxAge = value.maxAge;
this.price = value.price;
this.countries = value.countries;
this.fkDocument = value.fkDocument;
this.lockSales = value.lockSales;
this.fkProfile = value.fkProfile;
this.bedsMale = value.bedsMale;
this.bedsFemale = value.bedsFemale;
this.blockedBedsMale = value.blockedBedsMale;
this.blockedBedsFemale = value.blockedBedsFemale;
this.startBooking = value.startBooking;
this.minTeacherage = value.minTeacherage;
}
public TCamp(
Integer pk,
String name,
LocalDateTime arrive,
LocalDateTime depart,
Integer fkLocation,
Integer minAge,
Integer maxAge,
String price,
String countries,
Integer fkDocument,
Boolean lockSales,
Integer fkProfile,
Integer bedsMale,
Integer bedsFemale,
Integer blockedBedsMale,
Integer blockedBedsFemale,
LocalDateTime startBooking,
Integer minTeacherage
) {
this.pk = pk;
this.name = name;
this.arrive = arrive;
this.depart = depart;
this.fkLocation = fkLocation;
this.minAge = minAge;
this.maxAge = maxAge;
this.price = price;
this.countries = countries;
this.fkDocument = fkDocument;
this.lockSales = lockSales;
this.fkProfile = fkProfile;
this.bedsMale = bedsMale;
this.bedsFemale = bedsFemale;
this.blockedBedsMale = blockedBedsMale;
this.blockedBedsFemale = blockedBedsFemale;
this.startBooking = startBooking;
this.minTeacherage = minTeacherage;
}
/**
* Getter for <code>public.t_camp.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_camp.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.t_camp.arrive</code>.
*/
public LocalDateTime getArrive() {
return this.arrive;
}
/**
* Getter for <code>public.t_camp.depart</code>.
*/
public LocalDateTime getDepart() {
return this.depart;
}
/**
* Getter for <code>public.t_camp.fk_location</code>.
*/
public Integer getFkLocation() {
return this.fkLocation;
}
/**
* Getter for <code>public.t_camp.min_age</code>.
*/
public Integer getMinAge() {
return this.minAge;
}
/**
* Getter for <code>public.t_camp.max_age</code>.
*/
public Integer getMaxAge() {
return this.maxAge;
}
/**
* Getter for <code>public.t_camp.price</code>.
*/
public String getPrice() {
return this.price;
}
/**
* Getter for <code>public.t_camp.countries</code>.
*/
public String getCountries() {
return this.countries;
}
/**
* Getter for <code>public.t_camp.fk_document</code>.
*/
public Integer getFkDocument() {
return this.fkDocument;
}
/**
* Getter for <code>public.t_camp.lock_sales</code>.
*/
public Boolean getLockSales() {
return this.lockSales;
}
/**
* Getter for <code>public.t_camp.fk_profile</code>.
*/
public Integer getFkProfile() {
return this.fkProfile;
}
/**
* Getter for <code>public.t_camp.beds_male</code>.
*/
public Integer getBedsMale() {
return this.bedsMale;
}
/**
* Getter for <code>public.t_camp.beds_female</code>.
*/
public Integer getBedsFemale() {
return this.bedsFemale;
}
/**
* Getter for <code>public.t_camp.blocked_beds_male</code>.
*/
public Integer getBlockedBedsMale() {
return this.blockedBedsMale;
}
/**
* Getter for <code>public.t_camp.blocked_beds_female</code>.
*/
public Integer getBlockedBedsFemale() {
return this.blockedBedsFemale;
}
/**
* Getter for <code>public.t_camp.start_booking</code>.
*/
public LocalDateTime getStartBooking() {
return this.startBooking;
}
/**
* Getter for <code>public.t_camp.min_teacherage</code>.
*/
public Integer getMinTeacherage() {
return this.minTeacherage;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TCamp other = (TCamp) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.arrive == null) {
if (other.arrive != null)
return false;
}
else if (!this.arrive.equals(other.arrive))
return false;
if (this.depart == null) {
if (other.depart != null)
return false;
}
else if (!this.depart.equals(other.depart))
return false;
if (this.fkLocation == null) {
if (other.fkLocation != null)
return false;
}
else if (!this.fkLocation.equals(other.fkLocation))
return false;
if (this.minAge == null) {
if (other.minAge != null)
return false;
}
else if (!this.minAge.equals(other.minAge))
return false;
if (this.maxAge == null) {
if (other.maxAge != null)
return false;
}
else if (!this.maxAge.equals(other.maxAge))
return false;
if (this.price == null) {
if (other.price != null)
return false;
}
else if (!this.price.equals(other.price))
return false;
if (this.countries == null) {
if (other.countries != null)
return false;
}
else if (!this.countries.equals(other.countries))
return false;
if (this.fkDocument == null) {
if (other.fkDocument != null)
return false;
}
else if (!this.fkDocument.equals(other.fkDocument))
return false;
if (this.lockSales == null) {
if (other.lockSales != null)
return false;
}
else if (!this.lockSales.equals(other.lockSales))
return false;
if (this.fkProfile == null) {
if (other.fkProfile != null)
return false;
}
else if (!this.fkProfile.equals(other.fkProfile))
return false;
if (this.bedsMale == null) {
if (other.bedsMale != null)
return false;
}
else if (!this.bedsMale.equals(other.bedsMale))
return false;
if (this.bedsFemale == null) {
if (other.bedsFemale != null)
return false;
}
else if (!this.bedsFemale.equals(other.bedsFemale))
return false;
if (this.blockedBedsMale == null) {
if (other.blockedBedsMale != null)
return false;
}
else if (!this.blockedBedsMale.equals(other.blockedBedsMale))
return false;
if (this.blockedBedsFemale == null) {
if (other.blockedBedsFemale != null)
return false;
}
else if (!this.blockedBedsFemale.equals(other.blockedBedsFemale))
return false;
if (this.startBooking == null) {
if (other.startBooking != null)
return false;
}
else if (!this.startBooking.equals(other.startBooking))
return false;
if (this.minTeacherage == null) {
if (other.minTeacherage != null)
return false;
}
else if (!this.minTeacherage.equals(other.minTeacherage))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.arrive == null) ? 0 : this.arrive.hashCode());
result = prime * result + ((this.depart == null) ? 0 : this.depart.hashCode());
result = prime * result + ((this.fkLocation == null) ? 0 : this.fkLocation.hashCode());
result = prime * result + ((this.minAge == null) ? 0 : this.minAge.hashCode());
result = prime * result + ((this.maxAge == null) ? 0 : this.maxAge.hashCode());
result = prime * result + ((this.price == null) ? 0 : this.price.hashCode());
result = prime * result + ((this.countries == null) ? 0 : this.countries.hashCode());
result = prime * result + ((this.fkDocument == null) ? 0 : this.fkDocument.hashCode());
result = prime * result + ((this.lockSales == null) ? 0 : this.lockSales.hashCode());
result = prime * result + ((this.fkProfile == null) ? 0 : this.fkProfile.hashCode());
result = prime * result + ((this.bedsMale == null) ? 0 : this.bedsMale.hashCode());
result = prime * result + ((this.bedsFemale == null) ? 0 : this.bedsFemale.hashCode());
result = prime * result + ((this.blockedBedsMale == null) ? 0 : this.blockedBedsMale.hashCode());
result = prime * result + ((this.blockedBedsFemale == null) ? 0 : this.blockedBedsFemale.hashCode());
result = prime * result + ((this.startBooking == null) ? 0 : this.startBooking.hashCode());
result = prime * result + ((this.minTeacherage == null) ? 0 : this.minTeacherage.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TCamp (");
sb.append(pk);
sb.append(", ").append(name);
sb.append(", ").append(arrive);
sb.append(", ").append(depart);
sb.append(", ").append(fkLocation);
sb.append(", ").append(minAge);
sb.append(", ").append(maxAge);
sb.append(", ").append(price);
sb.append(", ").append(countries);
sb.append(", ").append(fkDocument);
sb.append(", ").append(lockSales);
sb.append(", ").append(fkProfile);
sb.append(", ").append(bedsMale);
sb.append(", ").append(bedsFemale);
sb.append(", ").append(blockedBedsMale);
sb.append(", ").append(blockedBedsFemale);
sb.append(", ").append(startBooking);
sb.append(", ").append(minTeacherage);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,110 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TCampdocument implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final Integer fkCamp;
private final Integer fkDocument;
public TCampdocument(TCampdocument value) {
this.pk = value.pk;
this.fkCamp = value.fkCamp;
this.fkDocument = value.fkDocument;
}
public TCampdocument(
Integer pk,
Integer fkCamp,
Integer fkDocument
) {
this.pk = pk;
this.fkCamp = fkCamp;
this.fkDocument = fkDocument;
}
/**
* Getter for <code>public.t_campdocument.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_campdocument.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.t_campdocument.fk_document</code>.
*/
public Integer getFkDocument() {
return this.fkDocument;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TCampdocument other = (TCampdocument) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.fkDocument == null) {
if (other.fkDocument != null)
return false;
}
else if (!this.fkDocument.equals(other.fkDocument))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.fkDocument == null) ? 0 : this.fkDocument.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TCampdocument (");
sb.append(pk);
sb.append(", ").append(fkCamp);
sb.append(", ").append(fkDocument);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,131 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumModule;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TCampprofile implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final Integer fkProfile;
private final Integer fkCamp;
private final EnumModule module;
public TCampprofile(TCampprofile value) {
this.pk = value.pk;
this.fkProfile = value.fkProfile;
this.fkCamp = value.fkCamp;
this.module = value.module;
}
public TCampprofile(
Integer pk,
Integer fkProfile,
Integer fkCamp,
EnumModule module
) {
this.pk = pk;
this.fkProfile = fkProfile;
this.fkCamp = fkCamp;
this.module = module;
}
/**
* Getter for <code>public.t_campprofile.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_campprofile.fk_profile</code>.
*/
public Integer getFkProfile() {
return this.fkProfile;
}
/**
* Getter for <code>public.t_campprofile.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.t_campprofile.module</code>.
*/
public EnumModule getModule() {
return this.module;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TCampprofile other = (TCampprofile) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.fkProfile == null) {
if (other.fkProfile != null)
return false;
}
else if (!this.fkProfile.equals(other.fkProfile))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.module == null) {
if (other.module != null)
return false;
}
else if (!this.module.equals(other.module))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.fkProfile == null) ? 0 : this.fkProfile.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.module == null) ? 0 : this.module.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TCampprofile (");
sb.append(pk);
sb.append(", ").append(fkProfile);
sb.append(", ").append(fkCamp);
sb.append(", ").append(module);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,151 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumDocument;
import de.jottyfan.camporganizer.db.jooq.enums.EnumFiletype;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TDocument implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final EnumDocument doctype;
private final String name;
private final String document;
private final EnumFiletype filetype;
public TDocument(TDocument value) {
this.pk = value.pk;
this.doctype = value.doctype;
this.name = value.name;
this.document = value.document;
this.filetype = value.filetype;
}
public TDocument(
Integer pk,
EnumDocument doctype,
String name,
String document,
EnumFiletype filetype
) {
this.pk = pk;
this.doctype = doctype;
this.name = name;
this.document = document;
this.filetype = filetype;
}
/**
* Getter for <code>public.t_document.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_document.doctype</code>.
*/
public EnumDocument getDoctype() {
return this.doctype;
}
/**
* Getter for <code>public.t_document.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.t_document.document</code>.
*/
public String getDocument() {
return this.document;
}
/**
* Getter for <code>public.t_document.filetype</code>.
*/
public EnumFiletype getFiletype() {
return this.filetype;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TDocument other = (TDocument) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.doctype == null) {
if (other.doctype != null)
return false;
}
else if (!this.doctype.equals(other.doctype))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.document == null) {
if (other.document != null)
return false;
}
else if (!this.document.equals(other.document))
return false;
if (this.filetype == null) {
if (other.filetype != null)
return false;
}
else if (!this.filetype.equals(other.filetype))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.doctype == null) ? 0 : this.doctype.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.document == null) ? 0 : this.document.hashCode());
result = prime * result + ((this.filetype == null) ? 0 : this.filetype.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TDocument (");
sb.append(pk);
sb.append(", ").append(doctype);
sb.append(", ").append(name);
sb.append(", ").append(document);
sb.append(", ").append(filetype);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,112 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TDocumentrole implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final Integer fkDocument;
private final EnumCamprole camprole;
public TDocumentrole(TDocumentrole value) {
this.pk = value.pk;
this.fkDocument = value.fkDocument;
this.camprole = value.camprole;
}
public TDocumentrole(
Integer pk,
Integer fkDocument,
EnumCamprole camprole
) {
this.pk = pk;
this.fkDocument = fkDocument;
this.camprole = camprole;
}
/**
* Getter for <code>public.t_documentrole.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_documentrole.fk_document</code>.
*/
public Integer getFkDocument() {
return this.fkDocument;
}
/**
* Getter for <code>public.t_documentrole.camprole</code>.
*/
public EnumCamprole getCamprole() {
return this.camprole;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TDocumentrole other = (TDocumentrole) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.fkDocument == null) {
if (other.fkDocument != null)
return false;
}
else if (!this.fkDocument.equals(other.fkDocument))
return false;
if (this.camprole == null) {
if (other.camprole != null)
return false;
}
else if (!this.camprole.equals(other.camprole))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.fkDocument == null) ? 0 : this.fkDocument.hashCode());
result = prime * result + ((this.camprole == null) ? 0 : this.camprole.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TDocumentrole (");
sb.append(pk);
sb.append(", ").append(fkDocument);
sb.append(", ").append(camprole);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,129 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TLocation implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String name;
private final String url;
private final Integer fkDocument;
public TLocation(TLocation value) {
this.pk = value.pk;
this.name = value.name;
this.url = value.url;
this.fkDocument = value.fkDocument;
}
public TLocation(
Integer pk,
String name,
String url,
Integer fkDocument
) {
this.pk = pk;
this.name = name;
this.url = url;
this.fkDocument = fkDocument;
}
/**
* Getter for <code>public.t_location.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_location.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.t_location.url</code>.
*/
public String getUrl() {
return this.url;
}
/**
* Getter for <code>public.t_location.fk_document</code>.
*/
public Integer getFkDocument() {
return this.fkDocument;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TLocation other = (TLocation) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.url == null) {
if (other.url != null)
return false;
}
else if (!this.url.equals(other.url))
return false;
if (this.fkDocument == null) {
if (other.fkDocument != null)
return false;
}
else if (!this.fkDocument.equals(other.fkDocument))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.url == null) ? 0 : this.url.hashCode());
result = prime * result + ((this.fkDocument == null) ? 0 : this.fkDocument.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TLocation (");
sb.append(pk);
sb.append(", ").append(name);
sb.append(", ").append(url);
sb.append(", ").append(fkDocument);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,459 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import de.jottyfan.camporganizer.db.jooq.enums.EnumProgress;
import de.jottyfan.camporganizer.db.jooq.enums.EnumSex;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.LocalDateTime;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TPerson implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String forename;
private final String surname;
private final String street;
private final String zip;
private final String city;
private final String phone;
private final LocalDate birthdate;
private final EnumCamprole camprole;
private final String email;
private final Integer fkCamp;
private final Integer fkProfile;
private final Boolean accept;
private final EnumProgress progress;
private final LocalDateTime created;
private final EnumSex sex;
private final Integer fkRegistrator;
private final BigDecimal paid;
private final String comment;
private final Boolean consentCatalogPhoto;
private final BigDecimal requiredPrice;
public TPerson(TPerson value) {
this.pk = value.pk;
this.forename = value.forename;
this.surname = value.surname;
this.street = value.street;
this.zip = value.zip;
this.city = value.city;
this.phone = value.phone;
this.birthdate = value.birthdate;
this.camprole = value.camprole;
this.email = value.email;
this.fkCamp = value.fkCamp;
this.fkProfile = value.fkProfile;
this.accept = value.accept;
this.progress = value.progress;
this.created = value.created;
this.sex = value.sex;
this.fkRegistrator = value.fkRegistrator;
this.paid = value.paid;
this.comment = value.comment;
this.consentCatalogPhoto = value.consentCatalogPhoto;
this.requiredPrice = value.requiredPrice;
}
public TPerson(
Integer pk,
String forename,
String surname,
String street,
String zip,
String city,
String phone,
LocalDate birthdate,
EnumCamprole camprole,
String email,
Integer fkCamp,
Integer fkProfile,
Boolean accept,
EnumProgress progress,
LocalDateTime created,
EnumSex sex,
Integer fkRegistrator,
BigDecimal paid,
String comment,
Boolean consentCatalogPhoto,
BigDecimal requiredPrice
) {
this.pk = pk;
this.forename = forename;
this.surname = surname;
this.street = street;
this.zip = zip;
this.city = city;
this.phone = phone;
this.birthdate = birthdate;
this.camprole = camprole;
this.email = email;
this.fkCamp = fkCamp;
this.fkProfile = fkProfile;
this.accept = accept;
this.progress = progress;
this.created = created;
this.sex = sex;
this.fkRegistrator = fkRegistrator;
this.paid = paid;
this.comment = comment;
this.consentCatalogPhoto = consentCatalogPhoto;
this.requiredPrice = requiredPrice;
}
/**
* Getter for <code>public.t_person.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_person.forename</code>.
*/
public String getForename() {
return this.forename;
}
/**
* Getter for <code>public.t_person.surname</code>.
*/
public String getSurname() {
return this.surname;
}
/**
* Getter for <code>public.t_person.street</code>.
*/
public String getStreet() {
return this.street;
}
/**
* Getter for <code>public.t_person.zip</code>.
*/
public String getZip() {
return this.zip;
}
/**
* Getter for <code>public.t_person.city</code>.
*/
public String getCity() {
return this.city;
}
/**
* Getter for <code>public.t_person.phone</code>.
*/
public String getPhone() {
return this.phone;
}
/**
* Getter for <code>public.t_person.birthdate</code>.
*/
public LocalDate getBirthdate() {
return this.birthdate;
}
/**
* Getter for <code>public.t_person.camprole</code>.
*/
public EnumCamprole getCamprole() {
return this.camprole;
}
/**
* Getter for <code>public.t_person.email</code>.
*/
public String getEmail() {
return this.email;
}
/**
* Getter for <code>public.t_person.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.t_person.fk_profile</code>.
*/
public Integer getFkProfile() {
return this.fkProfile;
}
/**
* Getter for <code>public.t_person.accept</code>.
*/
public Boolean getAccept() {
return this.accept;
}
/**
* Getter for <code>public.t_person.progress</code>.
*/
public EnumProgress getProgress() {
return this.progress;
}
/**
* Getter for <code>public.t_person.created</code>.
*/
public LocalDateTime getCreated() {
return this.created;
}
/**
* Getter for <code>public.t_person.sex</code>.
*/
public EnumSex getSex() {
return this.sex;
}
/**
* Getter for <code>public.t_person.fk_registrator</code>.
*/
public Integer getFkRegistrator() {
return this.fkRegistrator;
}
/**
* Getter for <code>public.t_person.paid</code>.
*/
public BigDecimal getPaid() {
return this.paid;
}
/**
* Getter for <code>public.t_person.comment</code>.
*/
public String getComment() {
return this.comment;
}
/**
* Getter for <code>public.t_person.consent_catalog_photo</code>.
*/
public Boolean getConsentCatalogPhoto() {
return this.consentCatalogPhoto;
}
/**
* Getter for <code>public.t_person.required_price</code>.
*/
public BigDecimal getRequiredPrice() {
return this.requiredPrice;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TPerson other = (TPerson) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.forename == null) {
if (other.forename != null)
return false;
}
else if (!this.forename.equals(other.forename))
return false;
if (this.surname == null) {
if (other.surname != null)
return false;
}
else if (!this.surname.equals(other.surname))
return false;
if (this.street == null) {
if (other.street != null)
return false;
}
else if (!this.street.equals(other.street))
return false;
if (this.zip == null) {
if (other.zip != null)
return false;
}
else if (!this.zip.equals(other.zip))
return false;
if (this.city == null) {
if (other.city != null)
return false;
}
else if (!this.city.equals(other.city))
return false;
if (this.phone == null) {
if (other.phone != null)
return false;
}
else if (!this.phone.equals(other.phone))
return false;
if (this.birthdate == null) {
if (other.birthdate != null)
return false;
}
else if (!this.birthdate.equals(other.birthdate))
return false;
if (this.camprole == null) {
if (other.camprole != null)
return false;
}
else if (!this.camprole.equals(other.camprole))
return false;
if (this.email == null) {
if (other.email != null)
return false;
}
else if (!this.email.equals(other.email))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.fkProfile == null) {
if (other.fkProfile != null)
return false;
}
else if (!this.fkProfile.equals(other.fkProfile))
return false;
if (this.accept == null) {
if (other.accept != null)
return false;
}
else if (!this.accept.equals(other.accept))
return false;
if (this.progress == null) {
if (other.progress != null)
return false;
}
else if (!this.progress.equals(other.progress))
return false;
if (this.created == null) {
if (other.created != null)
return false;
}
else if (!this.created.equals(other.created))
return false;
if (this.sex == null) {
if (other.sex != null)
return false;
}
else if (!this.sex.equals(other.sex))
return false;
if (this.fkRegistrator == null) {
if (other.fkRegistrator != null)
return false;
}
else if (!this.fkRegistrator.equals(other.fkRegistrator))
return false;
if (this.paid == null) {
if (other.paid != null)
return false;
}
else if (!this.paid.equals(other.paid))
return false;
if (this.comment == null) {
if (other.comment != null)
return false;
}
else if (!this.comment.equals(other.comment))
return false;
if (this.consentCatalogPhoto == null) {
if (other.consentCatalogPhoto != null)
return false;
}
else if (!this.consentCatalogPhoto.equals(other.consentCatalogPhoto))
return false;
if (this.requiredPrice == null) {
if (other.requiredPrice != null)
return false;
}
else if (!this.requiredPrice.equals(other.requiredPrice))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.forename == null) ? 0 : this.forename.hashCode());
result = prime * result + ((this.surname == null) ? 0 : this.surname.hashCode());
result = prime * result + ((this.street == null) ? 0 : this.street.hashCode());
result = prime * result + ((this.zip == null) ? 0 : this.zip.hashCode());
result = prime * result + ((this.city == null) ? 0 : this.city.hashCode());
result = prime * result + ((this.phone == null) ? 0 : this.phone.hashCode());
result = prime * result + ((this.birthdate == null) ? 0 : this.birthdate.hashCode());
result = prime * result + ((this.camprole == null) ? 0 : this.camprole.hashCode());
result = prime * result + ((this.email == null) ? 0 : this.email.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.fkProfile == null) ? 0 : this.fkProfile.hashCode());
result = prime * result + ((this.accept == null) ? 0 : this.accept.hashCode());
result = prime * result + ((this.progress == null) ? 0 : this.progress.hashCode());
result = prime * result + ((this.created == null) ? 0 : this.created.hashCode());
result = prime * result + ((this.sex == null) ? 0 : this.sex.hashCode());
result = prime * result + ((this.fkRegistrator == null) ? 0 : this.fkRegistrator.hashCode());
result = prime * result + ((this.paid == null) ? 0 : this.paid.hashCode());
result = prime * result + ((this.comment == null) ? 0 : this.comment.hashCode());
result = prime * result + ((this.consentCatalogPhoto == null) ? 0 : this.consentCatalogPhoto.hashCode());
result = prime * result + ((this.requiredPrice == null) ? 0 : this.requiredPrice.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TPerson (");
sb.append(pk);
sb.append(", ").append(forename);
sb.append(", ").append(surname);
sb.append(", ").append(street);
sb.append(", ").append(zip);
sb.append(", ").append(city);
sb.append(", ").append(phone);
sb.append(", ").append(birthdate);
sb.append(", ").append(camprole);
sb.append(", ").append(email);
sb.append(", ").append(fkCamp);
sb.append(", ").append(fkProfile);
sb.append(", ").append(accept);
sb.append(", ").append(progress);
sb.append(", ").append(created);
sb.append(", ").append(sex);
sb.append(", ").append(fkRegistrator);
sb.append(", ").append(paid);
sb.append(", ").append(comment);
sb.append(", ").append(consentCatalogPhoto);
sb.append(", ").append(requiredPrice);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,150 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumFiletype;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TPersondocument implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final Integer fkPerson;
private final String name;
private final String document;
private final EnumFiletype filetype;
public TPersondocument(TPersondocument value) {
this.pk = value.pk;
this.fkPerson = value.fkPerson;
this.name = value.name;
this.document = value.document;
this.filetype = value.filetype;
}
public TPersondocument(
Integer pk,
Integer fkPerson,
String name,
String document,
EnumFiletype filetype
) {
this.pk = pk;
this.fkPerson = fkPerson;
this.name = name;
this.document = document;
this.filetype = filetype;
}
/**
* Getter for <code>public.t_persondocument.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_persondocument.fk_person</code>.
*/
public Integer getFkPerson() {
return this.fkPerson;
}
/**
* Getter for <code>public.t_persondocument.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.t_persondocument.document</code>.
*/
public String getDocument() {
return this.document;
}
/**
* Getter for <code>public.t_persondocument.filetype</code>.
*/
public EnumFiletype getFiletype() {
return this.filetype;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TPersondocument other = (TPersondocument) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.fkPerson == null) {
if (other.fkPerson != null)
return false;
}
else if (!this.fkPerson.equals(other.fkPerson))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.document == null) {
if (other.document != null)
return false;
}
else if (!this.document.equals(other.document))
return false;
if (this.filetype == null) {
if (other.filetype != null)
return false;
}
else if (!this.filetype.equals(other.filetype))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.fkPerson == null) ? 0 : this.fkPerson.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.document == null) ? 0 : this.document.hashCode());
result = prime * result + ((this.filetype == null) ? 0 : this.filetype.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TPersondocument (");
sb.append(pk);
sb.append(", ").append(fkPerson);
sb.append(", ").append(name);
sb.append(", ").append(document);
sb.append(", ").append(filetype);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,187 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TProfile implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String forename;
private final String surname;
private final String username;
private final String password;
private final LocalDateTime duedate;
private final String uuid;
public TProfile(TProfile value) {
this.pk = value.pk;
this.forename = value.forename;
this.surname = value.surname;
this.username = value.username;
this.password = value.password;
this.duedate = value.duedate;
this.uuid = value.uuid;
}
public TProfile(
Integer pk,
String forename,
String surname,
String username,
String password,
LocalDateTime duedate,
String uuid
) {
this.pk = pk;
this.forename = forename;
this.surname = surname;
this.username = username;
this.password = password;
this.duedate = duedate;
this.uuid = uuid;
}
/**
* Getter for <code>public.t_profile.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_profile.forename</code>.
*/
public String getForename() {
return this.forename;
}
/**
* Getter for <code>public.t_profile.surname</code>.
*/
public String getSurname() {
return this.surname;
}
/**
* Getter for <code>public.t_profile.username</code>.
*/
public String getUsername() {
return this.username;
}
/**
* Getter for <code>public.t_profile.password</code>.
*/
public String getPassword() {
return this.password;
}
/**
* Getter for <code>public.t_profile.duedate</code>.
*/
public LocalDateTime getDuedate() {
return this.duedate;
}
/**
* Getter for <code>public.t_profile.uuid</code>.
*/
public String getUuid() {
return this.uuid;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TProfile other = (TProfile) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.forename == null) {
if (other.forename != null)
return false;
}
else if (!this.forename.equals(other.forename))
return false;
if (this.surname == null) {
if (other.surname != null)
return false;
}
else if (!this.surname.equals(other.surname))
return false;
if (this.username == null) {
if (other.username != null)
return false;
}
else if (!this.username.equals(other.username))
return false;
if (this.password == null) {
if (other.password != null)
return false;
}
else if (!this.password.equals(other.password))
return false;
if (this.duedate == null) {
if (other.duedate != null)
return false;
}
else if (!this.duedate.equals(other.duedate))
return false;
if (this.uuid == null) {
if (other.uuid != null)
return false;
}
else if (!this.uuid.equals(other.uuid))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.forename == null) ? 0 : this.forename.hashCode());
result = prime * result + ((this.surname == null) ? 0 : this.surname.hashCode());
result = prime * result + ((this.username == null) ? 0 : this.username.hashCode());
result = prime * result + ((this.password == null) ? 0 : this.password.hashCode());
result = prime * result + ((this.duedate == null) ? 0 : this.duedate.hashCode());
result = prime * result + ((this.uuid == null) ? 0 : this.uuid.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TProfile (");
sb.append(pk);
sb.append(", ").append(forename);
sb.append(", ").append(surname);
sb.append(", ").append(username);
sb.append(", ").append(password);
sb.append(", ").append(duedate);
sb.append(", ").append(uuid);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,93 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumRole;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TProfilerole implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer fkProfile;
private final EnumRole role;
public TProfilerole(TProfilerole value) {
this.fkProfile = value.fkProfile;
this.role = value.role;
}
public TProfilerole(
Integer fkProfile,
EnumRole role
) {
this.fkProfile = fkProfile;
this.role = role;
}
/**
* Getter for <code>public.t_profilerole.fk_profile</code>.
*/
public Integer getFkProfile() {
return this.fkProfile;
}
/**
* Getter for <code>public.t_profilerole.role</code>.
*/
public EnumRole getRole() {
return this.role;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TProfilerole other = (TProfilerole) obj;
if (this.fkProfile == null) {
if (other.fkProfile != null)
return false;
}
else if (!this.fkProfile.equals(other.fkProfile))
return false;
if (this.role == null) {
if (other.role != null)
return false;
}
else if (!this.role.equals(other.role))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.fkProfile == null) ? 0 : this.fkProfile.hashCode());
result = prime * result + ((this.role == null) ? 0 : this.role.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TProfilerole (");
sb.append(fkProfile);
sb.append(", ").append(role);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,130 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TRss implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String msg;
private final LocalDateTime regdate;
private final String recipient;
public TRss(TRss value) {
this.pk = value.pk;
this.msg = value.msg;
this.regdate = value.regdate;
this.recipient = value.recipient;
}
public TRss(
Integer pk,
String msg,
LocalDateTime regdate,
String recipient
) {
this.pk = pk;
this.msg = msg;
this.regdate = regdate;
this.recipient = recipient;
}
/**
* Getter for <code>public.t_rss.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_rss.msg</code>.
*/
public String getMsg() {
return this.msg;
}
/**
* Getter for <code>public.t_rss.regdate</code>.
*/
public LocalDateTime getRegdate() {
return this.regdate;
}
/**
* Getter for <code>public.t_rss.recipient</code>.
*/
public String getRecipient() {
return this.recipient;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TRss other = (TRss) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.msg == null) {
if (other.msg != null)
return false;
}
else if (!this.msg.equals(other.msg))
return false;
if (this.regdate == null) {
if (other.regdate != null)
return false;
}
else if (!this.regdate.equals(other.regdate))
return false;
if (this.recipient == null) {
if (other.recipient != null)
return false;
}
else if (!this.recipient.equals(other.recipient))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.msg == null) ? 0 : this.msg.hashCode());
result = prime * result + ((this.regdate == null) ? 0 : this.regdate.hashCode());
result = prime * result + ((this.recipient == null) ? 0 : this.recipient.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TRss (");
sb.append(pk);
sb.append(", ").append(msg);
sb.append(", ").append(regdate);
sb.append(", ").append(recipient);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,265 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Arrays;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TSales implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String trader;
private final Integer fkCamp;
private final String provider;
private final BigDecimal cash;
private final LocalDateTime buydate;
private final String recipenumber;
private final byte[] recipeshot;
private final String recipenote;
private final String incredients;
private final String recipefilename;
public TSales(TSales value) {
this.pk = value.pk;
this.trader = value.trader;
this.fkCamp = value.fkCamp;
this.provider = value.provider;
this.cash = value.cash;
this.buydate = value.buydate;
this.recipenumber = value.recipenumber;
this.recipeshot = value.recipeshot;
this.recipenote = value.recipenote;
this.incredients = value.incredients;
this.recipefilename = value.recipefilename;
}
public TSales(
Integer pk,
String trader,
Integer fkCamp,
String provider,
BigDecimal cash,
LocalDateTime buydate,
String recipenumber,
byte[] recipeshot,
String recipenote,
String incredients,
String recipefilename
) {
this.pk = pk;
this.trader = trader;
this.fkCamp = fkCamp;
this.provider = provider;
this.cash = cash;
this.buydate = buydate;
this.recipenumber = recipenumber;
this.recipeshot = recipeshot;
this.recipenote = recipenote;
this.incredients = incredients;
this.recipefilename = recipefilename;
}
/**
* Getter for <code>public.t_sales.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.t_sales.trader</code>.
*/
public String getTrader() {
return this.trader;
}
/**
* Getter for <code>public.t_sales.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.t_sales.provider</code>.
*/
public String getProvider() {
return this.provider;
}
/**
* Getter for <code>public.t_sales.cash</code>.
*/
public BigDecimal getCash() {
return this.cash;
}
/**
* Getter for <code>public.t_sales.buydate</code>.
*/
public LocalDateTime getBuydate() {
return this.buydate;
}
/**
* Getter for <code>public.t_sales.recipenumber</code>.
*/
public String getRecipenumber() {
return this.recipenumber;
}
/**
* Getter for <code>public.t_sales.recipeshot</code>.
*/
public byte[] getRecipeshot() {
return this.recipeshot;
}
/**
* Getter for <code>public.t_sales.recipenote</code>.
*/
public String getRecipenote() {
return this.recipenote;
}
/**
* Getter for <code>public.t_sales.incredients</code>.
*/
public String getIncredients() {
return this.incredients;
}
/**
* Getter for <code>public.t_sales.recipefilename</code>.
*/
public String getRecipefilename() {
return this.recipefilename;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TSales other = (TSales) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.trader == null) {
if (other.trader != null)
return false;
}
else if (!this.trader.equals(other.trader))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.provider == null) {
if (other.provider != null)
return false;
}
else if (!this.provider.equals(other.provider))
return false;
if (this.cash == null) {
if (other.cash != null)
return false;
}
else if (!this.cash.equals(other.cash))
return false;
if (this.buydate == null) {
if (other.buydate != null)
return false;
}
else if (!this.buydate.equals(other.buydate))
return false;
if (this.recipenumber == null) {
if (other.recipenumber != null)
return false;
}
else if (!this.recipenumber.equals(other.recipenumber))
return false;
if (this.recipeshot == null) {
if (other.recipeshot != null)
return false;
}
else if (!Arrays.equals(this.recipeshot, other.recipeshot))
return false;
if (this.recipenote == null) {
if (other.recipenote != null)
return false;
}
else if (!this.recipenote.equals(other.recipenote))
return false;
if (this.incredients == null) {
if (other.incredients != null)
return false;
}
else if (!this.incredients.equals(other.incredients))
return false;
if (this.recipefilename == null) {
if (other.recipefilename != null)
return false;
}
else if (!this.recipefilename.equals(other.recipefilename))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.trader == null) ? 0 : this.trader.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.provider == null) ? 0 : this.provider.hashCode());
result = prime * result + ((this.cash == null) ? 0 : this.cash.hashCode());
result = prime * result + ((this.buydate == null) ? 0 : this.buydate.hashCode());
result = prime * result + ((this.recipenumber == null) ? 0 : this.recipenumber.hashCode());
result = prime * result + ((this.recipeshot == null) ? 0 : Arrays.hashCode(this.recipeshot));
result = prime * result + ((this.recipenote == null) ? 0 : this.recipenote.hashCode());
result = prime * result + ((this.incredients == null) ? 0 : this.incredients.hashCode());
result = prime * result + ((this.recipefilename == null) ? 0 : this.recipefilename.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TSales (");
sb.append(pk);
sb.append(", ").append(trader);
sb.append(", ").append(fkCamp);
sb.append(", ").append(provider);
sb.append(", ").append(cash);
sb.append(", ").append(buydate);
sb.append(", ").append(recipenumber);
sb.append(", ").append("[binary...]");
sb.append(", ").append(recipenote);
sb.append(", ").append(incredients);
sb.append(", ").append(recipefilename);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,91 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TSalescontent implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer fkSales;
private final String fkSalescontenttype;
public TSalescontent(TSalescontent value) {
this.fkSales = value.fkSales;
this.fkSalescontenttype = value.fkSalescontenttype;
}
public TSalescontent(
Integer fkSales,
String fkSalescontenttype
) {
this.fkSales = fkSales;
this.fkSalescontenttype = fkSalescontenttype;
}
/**
* Getter for <code>public.t_salescontent.fk_sales</code>.
*/
public Integer getFkSales() {
return this.fkSales;
}
/**
* Getter for <code>public.t_salescontent.fk_salescontenttype</code>.
*/
public String getFkSalescontenttype() {
return this.fkSalescontenttype;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TSalescontent other = (TSalescontent) obj;
if (this.fkSales == null) {
if (other.fkSales != null)
return false;
}
else if (!this.fkSales.equals(other.fkSales))
return false;
if (this.fkSalescontenttype == null) {
if (other.fkSalescontenttype != null)
return false;
}
else if (!this.fkSalescontenttype.equals(other.fkSalescontenttype))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.fkSales == null) ? 0 : this.fkSales.hashCode());
result = prime * result + ((this.fkSalescontenttype == null) ? 0 : this.fkSalescontenttype.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TSalescontent (");
sb.append(fkSales);
sb.append(", ").append(fkSalescontenttype);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,72 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class TSalescontenttype implements Serializable {
private static final long serialVersionUID = 1L;
private final String name;
public TSalescontenttype(TSalescontenttype value) {
this.name = value.name;
}
public TSalescontenttype(
String name
) {
this.name = name;
}
/**
* Getter for <code>public.t_salescontenttype.name</code>.
*/
public String getName() {
return this.name;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final TSalescontenttype other = (TSalescontenttype) obj;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("TSalescontenttype (");
sb.append(name);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,152 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import java.io.Serializable;
import org.jooq.types.YearToSecond;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VAdult implements Serializable {
private static final long serialVersionUID = 1L;
private final YearToSecond age;
private final String forename;
private final String surname;
private final EnumCamprole camprole;
private final Boolean adult;
public VAdult(VAdult value) {
this.age = value.age;
this.forename = value.forename;
this.surname = value.surname;
this.camprole = value.camprole;
this.adult = value.adult;
}
public VAdult(
YearToSecond age,
String forename,
String surname,
EnumCamprole camprole,
Boolean adult
) {
this.age = age;
this.forename = forename;
this.surname = surname;
this.camprole = camprole;
this.adult = adult;
}
/**
* Getter for <code>public.v_adult.age</code>.
*/
public YearToSecond getAge() {
return this.age;
}
/**
* Getter for <code>public.v_adult.forename</code>.
*/
public String getForename() {
return this.forename;
}
/**
* Getter for <code>public.v_adult.surname</code>.
*/
public String getSurname() {
return this.surname;
}
/**
* Getter for <code>public.v_adult.camprole</code>.
*/
public EnumCamprole getCamprole() {
return this.camprole;
}
/**
* Getter for <code>public.v_adult.adult</code>.
*/
public Boolean getAdult() {
return this.adult;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VAdult other = (VAdult) obj;
if (this.age == null) {
if (other.age != null)
return false;
}
else if (!this.age.equals(other.age))
return false;
if (this.forename == null) {
if (other.forename != null)
return false;
}
else if (!this.forename.equals(other.forename))
return false;
if (this.surname == null) {
if (other.surname != null)
return false;
}
else if (!this.surname.equals(other.surname))
return false;
if (this.camprole == null) {
if (other.camprole != null)
return false;
}
else if (!this.camprole.equals(other.camprole))
return false;
if (this.adult == null) {
if (other.adult != null)
return false;
}
else if (!this.adult.equals(other.adult))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.age == null) ? 0 : this.age.hashCode());
result = prime * result + ((this.forename == null) ? 0 : this.forename.hashCode());
result = prime * result + ((this.surname == null) ? 0 : this.surname.hashCode());
result = prime * result + ((this.camprole == null) ? 0 : this.camprole.hashCode());
result = prime * result + ((this.adult == null) ? 0 : this.adult.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VAdult (");
sb.append(age);
sb.append(", ").append(forename);
sb.append(", ").append(surname);
sb.append(", ").append(camprole);
sb.append(", ").append(adult);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,149 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VBudget implements Serializable {
private static final long serialVersionUID = 1L;
private final BigDecimal budget;
private final Integer fkCamp;
private final String name;
private final String location;
private final Double year;
public VBudget(VBudget value) {
this.budget = value.budget;
this.fkCamp = value.fkCamp;
this.name = value.name;
this.location = value.location;
this.year = value.year;
}
public VBudget(
BigDecimal budget,
Integer fkCamp,
String name,
String location,
Double year
) {
this.budget = budget;
this.fkCamp = fkCamp;
this.name = name;
this.location = location;
this.year = year;
}
/**
* Getter for <code>public.v_budget.budget</code>.
*/
public BigDecimal getBudget() {
return this.budget;
}
/**
* Getter for <code>public.v_budget.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.v_budget.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.v_budget.location</code>.
*/
public String getLocation() {
return this.location;
}
/**
* Getter for <code>public.v_budget.year</code>.
*/
public Double getYear() {
return this.year;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VBudget other = (VBudget) obj;
if (this.budget == null) {
if (other.budget != null)
return false;
}
else if (!this.budget.equals(other.budget))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.location == null) {
if (other.location != null)
return false;
}
else if (!this.location.equals(other.location))
return false;
if (this.year == null) {
if (other.year != null)
return false;
}
else if (!this.year.equals(other.year))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.budget == null) ? 0 : this.budget.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.location == null) ? 0 : this.location.hashCode());
result = prime * result + ((this.year == null) ? 0 : this.year.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VBudget (");
sb.append(budget);
sb.append(", ").append(fkCamp);
sb.append(", ").append(name);
sb.append(", ").append(location);
sb.append(", ").append(year);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,472 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VCamp implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final Boolean isOver;
private final String name;
private final LocalDateTime arrive;
private final LocalDateTime depart;
private final Double year;
private final String locationName;
private final Integer minAge;
private final Integer maxAge;
private final Integer minTeacherage;
private final String url;
private final String price;
private final String countries;
private final Integer fkDocument;
private final Integer bedsFemale;
private final Integer bedsMale;
private final Integer blockedBedsFemale;
private final Integer blockedBedsMale;
private final Long usedBedsMale;
private final Long usedBedsFemale;
private final LocalDateTime startBooking;
private final Boolean bookingHasStarted;
public VCamp(VCamp value) {
this.pk = value.pk;
this.isOver = value.isOver;
this.name = value.name;
this.arrive = value.arrive;
this.depart = value.depart;
this.year = value.year;
this.locationName = value.locationName;
this.minAge = value.minAge;
this.maxAge = value.maxAge;
this.minTeacherage = value.minTeacherage;
this.url = value.url;
this.price = value.price;
this.countries = value.countries;
this.fkDocument = value.fkDocument;
this.bedsFemale = value.bedsFemale;
this.bedsMale = value.bedsMale;
this.blockedBedsFemale = value.blockedBedsFemale;
this.blockedBedsMale = value.blockedBedsMale;
this.usedBedsMale = value.usedBedsMale;
this.usedBedsFemale = value.usedBedsFemale;
this.startBooking = value.startBooking;
this.bookingHasStarted = value.bookingHasStarted;
}
public VCamp(
Integer pk,
Boolean isOver,
String name,
LocalDateTime arrive,
LocalDateTime depart,
Double year,
String locationName,
Integer minAge,
Integer maxAge,
Integer minTeacherage,
String url,
String price,
String countries,
Integer fkDocument,
Integer bedsFemale,
Integer bedsMale,
Integer blockedBedsFemale,
Integer blockedBedsMale,
Long usedBedsMale,
Long usedBedsFemale,
LocalDateTime startBooking,
Boolean bookingHasStarted
) {
this.pk = pk;
this.isOver = isOver;
this.name = name;
this.arrive = arrive;
this.depart = depart;
this.year = year;
this.locationName = locationName;
this.minAge = minAge;
this.maxAge = maxAge;
this.minTeacherage = minTeacherage;
this.url = url;
this.price = price;
this.countries = countries;
this.fkDocument = fkDocument;
this.bedsFemale = bedsFemale;
this.bedsMale = bedsMale;
this.blockedBedsFemale = blockedBedsFemale;
this.blockedBedsMale = blockedBedsMale;
this.usedBedsMale = usedBedsMale;
this.usedBedsFemale = usedBedsFemale;
this.startBooking = startBooking;
this.bookingHasStarted = bookingHasStarted;
}
/**
* Getter for <code>public.v_camp.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.v_camp.is_over</code>.
*/
public Boolean getIsOver() {
return this.isOver;
}
/**
* Getter for <code>public.v_camp.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.v_camp.arrive</code>.
*/
public LocalDateTime getArrive() {
return this.arrive;
}
/**
* Getter for <code>public.v_camp.depart</code>.
*/
public LocalDateTime getDepart() {
return this.depart;
}
/**
* Getter for <code>public.v_camp.year</code>.
*/
public Double getYear() {
return this.year;
}
/**
* Getter for <code>public.v_camp.location_name</code>.
*/
public String getLocationName() {
return this.locationName;
}
/**
* Getter for <code>public.v_camp.min_age</code>.
*/
public Integer getMinAge() {
return this.minAge;
}
/**
* Getter for <code>public.v_camp.max_age</code>.
*/
public Integer getMaxAge() {
return this.maxAge;
}
/**
* Getter for <code>public.v_camp.min_teacherage</code>.
*/
public Integer getMinTeacherage() {
return this.minTeacherage;
}
/**
* Getter for <code>public.v_camp.url</code>.
*/
public String getUrl() {
return this.url;
}
/**
* Getter for <code>public.v_camp.price</code>.
*/
public String getPrice() {
return this.price;
}
/**
* Getter for <code>public.v_camp.countries</code>.
*/
public String getCountries() {
return this.countries;
}
/**
* Getter for <code>public.v_camp.fk_document</code>.
*/
public Integer getFkDocument() {
return this.fkDocument;
}
/**
* Getter for <code>public.v_camp.beds_female</code>.
*/
public Integer getBedsFemale() {
return this.bedsFemale;
}
/**
* Getter for <code>public.v_camp.beds_male</code>.
*/
public Integer getBedsMale() {
return this.bedsMale;
}
/**
* Getter for <code>public.v_camp.blocked_beds_female</code>.
*/
public Integer getBlockedBedsFemale() {
return this.blockedBedsFemale;
}
/**
* Getter for <code>public.v_camp.blocked_beds_male</code>.
*/
public Integer getBlockedBedsMale() {
return this.blockedBedsMale;
}
/**
* Getter for <code>public.v_camp.used_beds_male</code>.
*/
public Long getUsedBedsMale() {
return this.usedBedsMale;
}
/**
* Getter for <code>public.v_camp.used_beds_female</code>.
*/
public Long getUsedBedsFemale() {
return this.usedBedsFemale;
}
/**
* Getter for <code>public.v_camp.start_booking</code>.
*/
public LocalDateTime getStartBooking() {
return this.startBooking;
}
/**
* Getter for <code>public.v_camp.booking_has_started</code>.
*/
public Boolean getBookingHasStarted() {
return this.bookingHasStarted;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VCamp other = (VCamp) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.isOver == null) {
if (other.isOver != null)
return false;
}
else if (!this.isOver.equals(other.isOver))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.arrive == null) {
if (other.arrive != null)
return false;
}
else if (!this.arrive.equals(other.arrive))
return false;
if (this.depart == null) {
if (other.depart != null)
return false;
}
else if (!this.depart.equals(other.depart))
return false;
if (this.year == null) {
if (other.year != null)
return false;
}
else if (!this.year.equals(other.year))
return false;
if (this.locationName == null) {
if (other.locationName != null)
return false;
}
else if (!this.locationName.equals(other.locationName))
return false;
if (this.minAge == null) {
if (other.minAge != null)
return false;
}
else if (!this.minAge.equals(other.minAge))
return false;
if (this.maxAge == null) {
if (other.maxAge != null)
return false;
}
else if (!this.maxAge.equals(other.maxAge))
return false;
if (this.minTeacherage == null) {
if (other.minTeacherage != null)
return false;
}
else if (!this.minTeacherage.equals(other.minTeacherage))
return false;
if (this.url == null) {
if (other.url != null)
return false;
}
else if (!this.url.equals(other.url))
return false;
if (this.price == null) {
if (other.price != null)
return false;
}
else if (!this.price.equals(other.price))
return false;
if (this.countries == null) {
if (other.countries != null)
return false;
}
else if (!this.countries.equals(other.countries))
return false;
if (this.fkDocument == null) {
if (other.fkDocument != null)
return false;
}
else if (!this.fkDocument.equals(other.fkDocument))
return false;
if (this.bedsFemale == null) {
if (other.bedsFemale != null)
return false;
}
else if (!this.bedsFemale.equals(other.bedsFemale))
return false;
if (this.bedsMale == null) {
if (other.bedsMale != null)
return false;
}
else if (!this.bedsMale.equals(other.bedsMale))
return false;
if (this.blockedBedsFemale == null) {
if (other.blockedBedsFemale != null)
return false;
}
else if (!this.blockedBedsFemale.equals(other.blockedBedsFemale))
return false;
if (this.blockedBedsMale == null) {
if (other.blockedBedsMale != null)
return false;
}
else if (!this.blockedBedsMale.equals(other.blockedBedsMale))
return false;
if (this.usedBedsMale == null) {
if (other.usedBedsMale != null)
return false;
}
else if (!this.usedBedsMale.equals(other.usedBedsMale))
return false;
if (this.usedBedsFemale == null) {
if (other.usedBedsFemale != null)
return false;
}
else if (!this.usedBedsFemale.equals(other.usedBedsFemale))
return false;
if (this.startBooking == null) {
if (other.startBooking != null)
return false;
}
else if (!this.startBooking.equals(other.startBooking))
return false;
if (this.bookingHasStarted == null) {
if (other.bookingHasStarted != null)
return false;
}
else if (!this.bookingHasStarted.equals(other.bookingHasStarted))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.isOver == null) ? 0 : this.isOver.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.arrive == null) ? 0 : this.arrive.hashCode());
result = prime * result + ((this.depart == null) ? 0 : this.depart.hashCode());
result = prime * result + ((this.year == null) ? 0 : this.year.hashCode());
result = prime * result + ((this.locationName == null) ? 0 : this.locationName.hashCode());
result = prime * result + ((this.minAge == null) ? 0 : this.minAge.hashCode());
result = prime * result + ((this.maxAge == null) ? 0 : this.maxAge.hashCode());
result = prime * result + ((this.minTeacherage == null) ? 0 : this.minTeacherage.hashCode());
result = prime * result + ((this.url == null) ? 0 : this.url.hashCode());
result = prime * result + ((this.price == null) ? 0 : this.price.hashCode());
result = prime * result + ((this.countries == null) ? 0 : this.countries.hashCode());
result = prime * result + ((this.fkDocument == null) ? 0 : this.fkDocument.hashCode());
result = prime * result + ((this.bedsFemale == null) ? 0 : this.bedsFemale.hashCode());
result = prime * result + ((this.bedsMale == null) ? 0 : this.bedsMale.hashCode());
result = prime * result + ((this.blockedBedsFemale == null) ? 0 : this.blockedBedsFemale.hashCode());
result = prime * result + ((this.blockedBedsMale == null) ? 0 : this.blockedBedsMale.hashCode());
result = prime * result + ((this.usedBedsMale == null) ? 0 : this.usedBedsMale.hashCode());
result = prime * result + ((this.usedBedsFemale == null) ? 0 : this.usedBedsFemale.hashCode());
result = prime * result + ((this.startBooking == null) ? 0 : this.startBooking.hashCode());
result = prime * result + ((this.bookingHasStarted == null) ? 0 : this.bookingHasStarted.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VCamp (");
sb.append(pk);
sb.append(", ").append(isOver);
sb.append(", ").append(name);
sb.append(", ").append(arrive);
sb.append(", ").append(depart);
sb.append(", ").append(year);
sb.append(", ").append(locationName);
sb.append(", ").append(minAge);
sb.append(", ").append(maxAge);
sb.append(", ").append(minTeacherage);
sb.append(", ").append(url);
sb.append(", ").append(price);
sb.append(", ").append(countries);
sb.append(", ").append(fkDocument);
sb.append(", ").append(bedsFemale);
sb.append(", ").append(bedsMale);
sb.append(", ").append(blockedBedsFemale);
sb.append(", ").append(blockedBedsMale);
sb.append(", ").append(usedBedsMale);
sb.append(", ").append(usedBedsFemale);
sb.append(", ").append(startBooking);
sb.append(", ").append(bookingHasStarted);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,130 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VCampBudget implements Serializable {
private static final long serialVersionUID = 1L;
private final BigDecimal budget;
private final Integer fkCamp;
private final String campName;
private final Double year;
public VCampBudget(VCampBudget value) {
this.budget = value.budget;
this.fkCamp = value.fkCamp;
this.campName = value.campName;
this.year = value.year;
}
public VCampBudget(
BigDecimal budget,
Integer fkCamp,
String campName,
Double year
) {
this.budget = budget;
this.fkCamp = fkCamp;
this.campName = campName;
this.year = year;
}
/**
* Getter for <code>public.v_camp_budget.budget</code>.
*/
public BigDecimal getBudget() {
return this.budget;
}
/**
* Getter for <code>public.v_camp_budget.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.v_camp_budget.camp_name</code>.
*/
public String getCampName() {
return this.campName;
}
/**
* Getter for <code>public.v_camp_budget.year</code>.
*/
public Double getYear() {
return this.year;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VCampBudget other = (VCampBudget) obj;
if (this.budget == null) {
if (other.budget != null)
return false;
}
else if (!this.budget.equals(other.budget))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.campName == null) {
if (other.campName != null)
return false;
}
else if (!this.campName.equals(other.campName))
return false;
if (this.year == null) {
if (other.year != null)
return false;
}
else if (!this.year.equals(other.year))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.budget == null) ? 0 : this.budget.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.campName == null) ? 0 : this.campName.hashCode());
result = prime * result + ((this.year == null) ? 0 : this.year.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VCampBudget (");
sb.append(budget);
sb.append(", ").append(fkCamp);
sb.append(", ").append(campName);
sb.append(", ").append(year);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,92 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VCampBudgetYear implements Serializable {
private static final long serialVersionUID = 1L;
private final BigDecimal sum;
private final Double year;
public VCampBudgetYear(VCampBudgetYear value) {
this.sum = value.sum;
this.year = value.year;
}
public VCampBudgetYear(
BigDecimal sum,
Double year
) {
this.sum = sum;
this.year = year;
}
/**
* Getter for <code>public.v_camp_budget_year.sum</code>.
*/
public BigDecimal getSum() {
return this.sum;
}
/**
* Getter for <code>public.v_camp_budget_year.year</code>.
*/
public Double getYear() {
return this.year;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VCampBudgetYear other = (VCampBudgetYear) obj;
if (this.sum == null) {
if (other.sum != null)
return false;
}
else if (!this.sum.equals(other.sum))
return false;
if (this.year == null) {
if (other.year != null)
return false;
}
else if (!this.year.equals(other.year))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.sum == null) ? 0 : this.sum.hashCode());
result = prime * result + ((this.year == null) ? 0 : this.year.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VCampBudgetYear (");
sb.append(sum);
sb.append(", ").append(year);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,209 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumDocument;
import de.jottyfan.camporganizer.db.jooq.enums.EnumFiletype;
import java.io.Serializable;
import java.time.LocalDateTime;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VCampdocument implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer fkCamp;
private final String campname;
private final LocalDateTime arrive;
private final Integer fkDocument;
private final String document;
private final String documentname;
private final EnumDocument doctype;
private final EnumFiletype filetype;
public VCampdocument(VCampdocument value) {
this.fkCamp = value.fkCamp;
this.campname = value.campname;
this.arrive = value.arrive;
this.fkDocument = value.fkDocument;
this.document = value.document;
this.documentname = value.documentname;
this.doctype = value.doctype;
this.filetype = value.filetype;
}
public VCampdocument(
Integer fkCamp,
String campname,
LocalDateTime arrive,
Integer fkDocument,
String document,
String documentname,
EnumDocument doctype,
EnumFiletype filetype
) {
this.fkCamp = fkCamp;
this.campname = campname;
this.arrive = arrive;
this.fkDocument = fkDocument;
this.document = document;
this.documentname = documentname;
this.doctype = doctype;
this.filetype = filetype;
}
/**
* Getter for <code>public.v_campdocument.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.v_campdocument.campname</code>.
*/
public String getCampname() {
return this.campname;
}
/**
* Getter for <code>public.v_campdocument.arrive</code>.
*/
public LocalDateTime getArrive() {
return this.arrive;
}
/**
* Getter for <code>public.v_campdocument.fk_document</code>.
*/
public Integer getFkDocument() {
return this.fkDocument;
}
/**
* Getter for <code>public.v_campdocument.document</code>.
*/
public String getDocument() {
return this.document;
}
/**
* Getter for <code>public.v_campdocument.documentname</code>.
*/
public String getDocumentname() {
return this.documentname;
}
/**
* Getter for <code>public.v_campdocument.doctype</code>.
*/
public EnumDocument getDoctype() {
return this.doctype;
}
/**
* Getter for <code>public.v_campdocument.filetype</code>.
*/
public EnumFiletype getFiletype() {
return this.filetype;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VCampdocument other = (VCampdocument) obj;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.campname == null) {
if (other.campname != null)
return false;
}
else if (!this.campname.equals(other.campname))
return false;
if (this.arrive == null) {
if (other.arrive != null)
return false;
}
else if (!this.arrive.equals(other.arrive))
return false;
if (this.fkDocument == null) {
if (other.fkDocument != null)
return false;
}
else if (!this.fkDocument.equals(other.fkDocument))
return false;
if (this.document == null) {
if (other.document != null)
return false;
}
else if (!this.document.equals(other.document))
return false;
if (this.documentname == null) {
if (other.documentname != null)
return false;
}
else if (!this.documentname.equals(other.documentname))
return false;
if (this.doctype == null) {
if (other.doctype != null)
return false;
}
else if (!this.doctype.equals(other.doctype))
return false;
if (this.filetype == null) {
if (other.filetype != null)
return false;
}
else if (!this.filetype.equals(other.filetype))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.campname == null) ? 0 : this.campname.hashCode());
result = prime * result + ((this.arrive == null) ? 0 : this.arrive.hashCode());
result = prime * result + ((this.fkDocument == null) ? 0 : this.fkDocument.hashCode());
result = prime * result + ((this.document == null) ? 0 : this.document.hashCode());
result = prime * result + ((this.documentname == null) ? 0 : this.documentname.hashCode());
result = prime * result + ((this.doctype == null) ? 0 : this.doctype.hashCode());
result = prime * result + ((this.filetype == null) ? 0 : this.filetype.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VCampdocument (");
sb.append(fkCamp);
sb.append(", ").append(campname);
sb.append(", ").append(arrive);
sb.append(", ").append(fkDocument);
sb.append(", ").append(document);
sb.append(", ").append(documentname);
sb.append(", ").append(doctype);
sb.append(", ").append(filetype);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,74 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VCamprole implements Serializable {
private static final long serialVersionUID = 1L;
private final EnumCamprole name;
public VCamprole(VCamprole value) {
this.name = value.name;
}
public VCamprole(
EnumCamprole name
) {
this.name = name;
}
/**
* Getter for <code>public.v_camprole.name</code>.
*/
public EnumCamprole getName() {
return this.name;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VCamprole other = (VCamprole) obj;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VCamprole (");
sb.append(name);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,170 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumDocument;
import de.jottyfan.camporganizer.db.jooq.enums.EnumFiletype;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VDocument implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final EnumDocument doctype;
private final String name;
private final String document;
private final EnumFiletype filetype;
private final String roles;
public VDocument(VDocument value) {
this.pk = value.pk;
this.doctype = value.doctype;
this.name = value.name;
this.document = value.document;
this.filetype = value.filetype;
this.roles = value.roles;
}
public VDocument(
Integer pk,
EnumDocument doctype,
String name,
String document,
EnumFiletype filetype,
String roles
) {
this.pk = pk;
this.doctype = doctype;
this.name = name;
this.document = document;
this.filetype = filetype;
this.roles = roles;
}
/**
* Getter for <code>public.v_document.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.v_document.doctype</code>.
*/
public EnumDocument getDoctype() {
return this.doctype;
}
/**
* Getter for <code>public.v_document.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.v_document.document</code>.
*/
public String getDocument() {
return this.document;
}
/**
* Getter for <code>public.v_document.filetype</code>.
*/
public EnumFiletype getFiletype() {
return this.filetype;
}
/**
* Getter for <code>public.v_document.roles</code>.
*/
public String getRoles() {
return this.roles;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VDocument other = (VDocument) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.doctype == null) {
if (other.doctype != null)
return false;
}
else if (!this.doctype.equals(other.doctype))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.document == null) {
if (other.document != null)
return false;
}
else if (!this.document.equals(other.document))
return false;
if (this.filetype == null) {
if (other.filetype != null)
return false;
}
else if (!this.filetype.equals(other.filetype))
return false;
if (this.roles == null) {
if (other.roles != null)
return false;
}
else if (!this.roles.equals(other.roles))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.doctype == null) ? 0 : this.doctype.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.document == null) ? 0 : this.document.hashCode());
result = prime * result + ((this.filetype == null) ? 0 : this.filetype.hashCode());
result = prime * result + ((this.roles == null) ? 0 : this.roles.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VDocument (");
sb.append(pk);
sb.append(", ").append(doctype);
sb.append(", ").append(name);
sb.append(", ").append(document);
sb.append(", ").append(filetype);
sb.append(", ").append(roles);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,228 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import java.io.Serializable;
import org.jooq.types.YearToSecond;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VDsgvoDeleteCandidate implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer fkPerson;
private final String forename;
private final String surname;
private final Integer fkCamp;
private final YearToSecond age;
private final EnumCamprole camprole;
private final String name;
private final Double year;
private final Boolean isOver;
public VDsgvoDeleteCandidate(VDsgvoDeleteCandidate value) {
this.fkPerson = value.fkPerson;
this.forename = value.forename;
this.surname = value.surname;
this.fkCamp = value.fkCamp;
this.age = value.age;
this.camprole = value.camprole;
this.name = value.name;
this.year = value.year;
this.isOver = value.isOver;
}
public VDsgvoDeleteCandidate(
Integer fkPerson,
String forename,
String surname,
Integer fkCamp,
YearToSecond age,
EnumCamprole camprole,
String name,
Double year,
Boolean isOver
) {
this.fkPerson = fkPerson;
this.forename = forename;
this.surname = surname;
this.fkCamp = fkCamp;
this.age = age;
this.camprole = camprole;
this.name = name;
this.year = year;
this.isOver = isOver;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.fk_person</code>.
*/
public Integer getFkPerson() {
return this.fkPerson;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.forename</code>.
*/
public String getForename() {
return this.forename;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.surname</code>.
*/
public String getSurname() {
return this.surname;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.age</code>.
*/
public YearToSecond getAge() {
return this.age;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.camprole</code>.
*/
public EnumCamprole getCamprole() {
return this.camprole;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.year</code>.
*/
public Double getYear() {
return this.year;
}
/**
* Getter for <code>public.v_dsgvo_delete_candidate.is_over</code>.
*/
public Boolean getIsOver() {
return this.isOver;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VDsgvoDeleteCandidate other = (VDsgvoDeleteCandidate) obj;
if (this.fkPerson == null) {
if (other.fkPerson != null)
return false;
}
else if (!this.fkPerson.equals(other.fkPerson))
return false;
if (this.forename == null) {
if (other.forename != null)
return false;
}
else if (!this.forename.equals(other.forename))
return false;
if (this.surname == null) {
if (other.surname != null)
return false;
}
else if (!this.surname.equals(other.surname))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.age == null) {
if (other.age != null)
return false;
}
else if (!this.age.equals(other.age))
return false;
if (this.camprole == null) {
if (other.camprole != null)
return false;
}
else if (!this.camprole.equals(other.camprole))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.year == null) {
if (other.year != null)
return false;
}
else if (!this.year.equals(other.year))
return false;
if (this.isOver == null) {
if (other.isOver != null)
return false;
}
else if (!this.isOver.equals(other.isOver))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.fkPerson == null) ? 0 : this.fkPerson.hashCode());
result = prime * result + ((this.forename == null) ? 0 : this.forename.hashCode());
result = prime * result + ((this.surname == null) ? 0 : this.surname.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.age == null) ? 0 : this.age.hashCode());
result = prime * result + ((this.camprole == null) ? 0 : this.camprole.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.year == null) ? 0 : this.year.hashCode());
result = prime * result + ((this.isOver == null) ? 0 : this.isOver.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VDsgvoDeleteCandidate (");
sb.append(fkPerson);
sb.append(", ").append(forename);
sb.append(", ").append(surname);
sb.append(", ").append(fkCamp);
sb.append(", ").append(age);
sb.append(", ").append(camprole);
sb.append(", ").append(name);
sb.append(", ").append(year);
sb.append(", ").append(isOver);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,266 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumSex;
import java.io.Serializable;
import org.jooq.types.YearToSecond;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VFeeder implements Serializable {
private static final long serialVersionUID = 1L;
private final String forename;
private final String surname;
private final String street;
private final String zip;
private final String city;
private final String phone;
private final YearToSecond age;
private final String email;
private final EnumSex sex;
private final String name;
private final Double year;
public VFeeder(VFeeder value) {
this.forename = value.forename;
this.surname = value.surname;
this.street = value.street;
this.zip = value.zip;
this.city = value.city;
this.phone = value.phone;
this.age = value.age;
this.email = value.email;
this.sex = value.sex;
this.name = value.name;
this.year = value.year;
}
public VFeeder(
String forename,
String surname,
String street,
String zip,
String city,
String phone,
YearToSecond age,
String email,
EnumSex sex,
String name,
Double year
) {
this.forename = forename;
this.surname = surname;
this.street = street;
this.zip = zip;
this.city = city;
this.phone = phone;
this.age = age;
this.email = email;
this.sex = sex;
this.name = name;
this.year = year;
}
/**
* Getter for <code>public.v_feeder.forename</code>.
*/
public String getForename() {
return this.forename;
}
/**
* Getter for <code>public.v_feeder.surname</code>.
*/
public String getSurname() {
return this.surname;
}
/**
* Getter for <code>public.v_feeder.street</code>.
*/
public String getStreet() {
return this.street;
}
/**
* Getter for <code>public.v_feeder.zip</code>.
*/
public String getZip() {
return this.zip;
}
/**
* Getter for <code>public.v_feeder.city</code>.
*/
public String getCity() {
return this.city;
}
/**
* Getter for <code>public.v_feeder.phone</code>.
*/
public String getPhone() {
return this.phone;
}
/**
* Getter for <code>public.v_feeder.age</code>.
*/
public YearToSecond getAge() {
return this.age;
}
/**
* Getter for <code>public.v_feeder.email</code>.
*/
public String getEmail() {
return this.email;
}
/**
* Getter for <code>public.v_feeder.sex</code>.
*/
public EnumSex getSex() {
return this.sex;
}
/**
* Getter for <code>public.v_feeder.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.v_feeder.year</code>.
*/
public Double getYear() {
return this.year;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VFeeder other = (VFeeder) obj;
if (this.forename == null) {
if (other.forename != null)
return false;
}
else if (!this.forename.equals(other.forename))
return false;
if (this.surname == null) {
if (other.surname != null)
return false;
}
else if (!this.surname.equals(other.surname))
return false;
if (this.street == null) {
if (other.street != null)
return false;
}
else if (!this.street.equals(other.street))
return false;
if (this.zip == null) {
if (other.zip != null)
return false;
}
else if (!this.zip.equals(other.zip))
return false;
if (this.city == null) {
if (other.city != null)
return false;
}
else if (!this.city.equals(other.city))
return false;
if (this.phone == null) {
if (other.phone != null)
return false;
}
else if (!this.phone.equals(other.phone))
return false;
if (this.age == null) {
if (other.age != null)
return false;
}
else if (!this.age.equals(other.age))
return false;
if (this.email == null) {
if (other.email != null)
return false;
}
else if (!this.email.equals(other.email))
return false;
if (this.sex == null) {
if (other.sex != null)
return false;
}
else if (!this.sex.equals(other.sex))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.year == null) {
if (other.year != null)
return false;
}
else if (!this.year.equals(other.year))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.forename == null) ? 0 : this.forename.hashCode());
result = prime * result + ((this.surname == null) ? 0 : this.surname.hashCode());
result = prime * result + ((this.street == null) ? 0 : this.street.hashCode());
result = prime * result + ((this.zip == null) ? 0 : this.zip.hashCode());
result = prime * result + ((this.city == null) ? 0 : this.city.hashCode());
result = prime * result + ((this.phone == null) ? 0 : this.phone.hashCode());
result = prime * result + ((this.age == null) ? 0 : this.age.hashCode());
result = prime * result + ((this.email == null) ? 0 : this.email.hashCode());
result = prime * result + ((this.sex == null) ? 0 : this.sex.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.year == null) ? 0 : this.year.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VFeeder (");
sb.append(forename);
sb.append(", ").append(surname);
sb.append(", ").append(street);
sb.append(", ").append(zip);
sb.append(", ").append(city);
sb.append(", ").append(phone);
sb.append(", ").append(age);
sb.append(", ").append(email);
sb.append(", ").append(sex);
sb.append(", ").append(name);
sb.append(", ").append(year);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,189 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumRole;
import java.io.Serializable;
import java.util.Arrays;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VProfile implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String forename;
private final String surname;
private final String username;
private final String password;
private final String uuid;
private final EnumRole[] roles;
public VProfile(VProfile value) {
this.pk = value.pk;
this.forename = value.forename;
this.surname = value.surname;
this.username = value.username;
this.password = value.password;
this.uuid = value.uuid;
this.roles = value.roles;
}
public VProfile(
Integer pk,
String forename,
String surname,
String username,
String password,
String uuid,
EnumRole[] roles
) {
this.pk = pk;
this.forename = forename;
this.surname = surname;
this.username = username;
this.password = password;
this.uuid = uuid;
this.roles = roles;
}
/**
* Getter for <code>public.v_profile.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.v_profile.forename</code>.
*/
public String getForename() {
return this.forename;
}
/**
* Getter for <code>public.v_profile.surname</code>.
*/
public String getSurname() {
return this.surname;
}
/**
* Getter for <code>public.v_profile.username</code>.
*/
public String getUsername() {
return this.username;
}
/**
* Getter for <code>public.v_profile.password</code>.
*/
public String getPassword() {
return this.password;
}
/**
* Getter for <code>public.v_profile.uuid</code>.
*/
public String getUuid() {
return this.uuid;
}
/**
* Getter for <code>public.v_profile.roles</code>.
*/
public EnumRole[] getRoles() {
return this.roles;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VProfile other = (VProfile) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.forename == null) {
if (other.forename != null)
return false;
}
else if (!this.forename.equals(other.forename))
return false;
if (this.surname == null) {
if (other.surname != null)
return false;
}
else if (!this.surname.equals(other.surname))
return false;
if (this.username == null) {
if (other.username != null)
return false;
}
else if (!this.username.equals(other.username))
return false;
if (this.password == null) {
if (other.password != null)
return false;
}
else if (!this.password.equals(other.password))
return false;
if (this.uuid == null) {
if (other.uuid != null)
return false;
}
else if (!this.uuid.equals(other.uuid))
return false;
if (this.roles == null) {
if (other.roles != null)
return false;
}
else if (!Arrays.deepEquals(this.roles, other.roles))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.forename == null) ? 0 : this.forename.hashCode());
result = prime * result + ((this.surname == null) ? 0 : this.surname.hashCode());
result = prime * result + ((this.username == null) ? 0 : this.username.hashCode());
result = prime * result + ((this.password == null) ? 0 : this.password.hashCode());
result = prime * result + ((this.uuid == null) ? 0 : this.uuid.hashCode());
result = prime * result + ((this.roles == null) ? 0 : Arrays.deepHashCode(this.roles));
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VProfile (");
sb.append(pk);
sb.append(", ").append(forename);
sb.append(", ").append(surname);
sb.append(", ").append(username);
sb.append(", ").append(password);
sb.append(", ").append(uuid);
sb.append(", ").append(Arrays.deepToString(roles));
sb.append(")");
return sb.toString();
}
}

View File

@ -1,265 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
import java.io.Serializable;
import java.time.LocalDate;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VRegistration implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String forename;
private final String surname;
private final String street;
private final String zip;
private final String city;
private final String phone;
private final LocalDate birthdate;
private final EnumCamprole camprole;
private final String email;
private final String campname;
public VRegistration(VRegistration value) {
this.pk = value.pk;
this.forename = value.forename;
this.surname = value.surname;
this.street = value.street;
this.zip = value.zip;
this.city = value.city;
this.phone = value.phone;
this.birthdate = value.birthdate;
this.camprole = value.camprole;
this.email = value.email;
this.campname = value.campname;
}
public VRegistration(
Integer pk,
String forename,
String surname,
String street,
String zip,
String city,
String phone,
LocalDate birthdate,
EnumCamprole camprole,
String email,
String campname
) {
this.pk = pk;
this.forename = forename;
this.surname = surname;
this.street = street;
this.zip = zip;
this.city = city;
this.phone = phone;
this.birthdate = birthdate;
this.camprole = camprole;
this.email = email;
this.campname = campname;
}
/**
* Getter for <code>public.v_registration.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.v_registration.forename</code>.
*/
public String getForename() {
return this.forename;
}
/**
* Getter for <code>public.v_registration.surname</code>.
*/
public String getSurname() {
return this.surname;
}
/**
* Getter for <code>public.v_registration.street</code>.
*/
public String getStreet() {
return this.street;
}
/**
* Getter for <code>public.v_registration.zip</code>.
*/
public String getZip() {
return this.zip;
}
/**
* Getter for <code>public.v_registration.city</code>.
*/
public String getCity() {
return this.city;
}
/**
* Getter for <code>public.v_registration.phone</code>.
*/
public String getPhone() {
return this.phone;
}
/**
* Getter for <code>public.v_registration.birthdate</code>.
*/
public LocalDate getBirthdate() {
return this.birthdate;
}
/**
* Getter for <code>public.v_registration.camprole</code>.
*/
public EnumCamprole getCamprole() {
return this.camprole;
}
/**
* Getter for <code>public.v_registration.email</code>.
*/
public String getEmail() {
return this.email;
}
/**
* Getter for <code>public.v_registration.campname</code>.
*/
public String getCampname() {
return this.campname;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VRegistration other = (VRegistration) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.forename == null) {
if (other.forename != null)
return false;
}
else if (!this.forename.equals(other.forename))
return false;
if (this.surname == null) {
if (other.surname != null)
return false;
}
else if (!this.surname.equals(other.surname))
return false;
if (this.street == null) {
if (other.street != null)
return false;
}
else if (!this.street.equals(other.street))
return false;
if (this.zip == null) {
if (other.zip != null)
return false;
}
else if (!this.zip.equals(other.zip))
return false;
if (this.city == null) {
if (other.city != null)
return false;
}
else if (!this.city.equals(other.city))
return false;
if (this.phone == null) {
if (other.phone != null)
return false;
}
else if (!this.phone.equals(other.phone))
return false;
if (this.birthdate == null) {
if (other.birthdate != null)
return false;
}
else if (!this.birthdate.equals(other.birthdate))
return false;
if (this.camprole == null) {
if (other.camprole != null)
return false;
}
else if (!this.camprole.equals(other.camprole))
return false;
if (this.email == null) {
if (other.email != null)
return false;
}
else if (!this.email.equals(other.email))
return false;
if (this.campname == null) {
if (other.campname != null)
return false;
}
else if (!this.campname.equals(other.campname))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.forename == null) ? 0 : this.forename.hashCode());
result = prime * result + ((this.surname == null) ? 0 : this.surname.hashCode());
result = prime * result + ((this.street == null) ? 0 : this.street.hashCode());
result = prime * result + ((this.zip == null) ? 0 : this.zip.hashCode());
result = prime * result + ((this.city == null) ? 0 : this.city.hashCode());
result = prime * result + ((this.phone == null) ? 0 : this.phone.hashCode());
result = prime * result + ((this.birthdate == null) ? 0 : this.birthdate.hashCode());
result = prime * result + ((this.camprole == null) ? 0 : this.camprole.hashCode());
result = prime * result + ((this.email == null) ? 0 : this.email.hashCode());
result = prime * result + ((this.campname == null) ? 0 : this.campname.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VRegistration (");
sb.append(pk);
sb.append(", ").append(forename);
sb.append(", ").append(surname);
sb.append(", ").append(street);
sb.append(", ").append(zip);
sb.append(", ").append(city);
sb.append(", ").append(phone);
sb.append(", ").append(birthdate);
sb.append(", ").append(camprole);
sb.append(", ").append(email);
sb.append(", ").append(campname);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,74 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import de.jottyfan.camporganizer.db.jooq.enums.EnumRole;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VRole implements Serializable {
private static final long serialVersionUID = 1L;
private final EnumRole unnest;
public VRole(VRole value) {
this.unnest = value.unnest;
}
public VRole(
EnumRole unnest
) {
this.unnest = unnest;
}
/**
* Getter for <code>public.v_role.unnest</code>.
*/
public EnumRole getUnnest() {
return this.unnest;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VRole other = (VRole) obj;
if (this.unnest == null) {
if (other.unnest != null)
return false;
}
else if (!this.unnest.equals(other.unnest))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.unnest == null) ? 0 : this.unnest.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VRole (");
sb.append(unnest);
sb.append(")");
return sb.toString();
}
}

View File

@ -1,360 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
import java.math.BigDecimal;
import java.time.LocalDateTime;
import java.util.Arrays;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VSales implements Serializable {
private static final long serialVersionUID = 1L;
private final Integer pk;
private final String trader;
private final Integer fkCamp;
private final String name;
private final Integer fkLocation;
private final String location;
private final String incredients;
private final Double year;
private final Integer fkSales;
private final String provider;
private final BigDecimal cash;
private final LocalDateTime buydate;
private final String recipenumber;
private final byte[] recipeshot;
private final String recipenote;
private final String[] content;
public VSales(VSales value) {
this.pk = value.pk;
this.trader = value.trader;
this.fkCamp = value.fkCamp;
this.name = value.name;
this.fkLocation = value.fkLocation;
this.location = value.location;
this.incredients = value.incredients;
this.year = value.year;
this.fkSales = value.fkSales;
this.provider = value.provider;
this.cash = value.cash;
this.buydate = value.buydate;
this.recipenumber = value.recipenumber;
this.recipeshot = value.recipeshot;
this.recipenote = value.recipenote;
this.content = value.content;
}
public VSales(
Integer pk,
String trader,
Integer fkCamp,
String name,
Integer fkLocation,
String location,
String incredients,
Double year,
Integer fkSales,
String provider,
BigDecimal cash,
LocalDateTime buydate,
String recipenumber,
byte[] recipeshot,
String recipenote,
String[] content
) {
this.pk = pk;
this.trader = trader;
this.fkCamp = fkCamp;
this.name = name;
this.fkLocation = fkLocation;
this.location = location;
this.incredients = incredients;
this.year = year;
this.fkSales = fkSales;
this.provider = provider;
this.cash = cash;
this.buydate = buydate;
this.recipenumber = recipenumber;
this.recipeshot = recipeshot;
this.recipenote = recipenote;
this.content = content;
}
/**
* Getter for <code>public.v_sales.pk</code>.
*/
public Integer getPk() {
return this.pk;
}
/**
* Getter for <code>public.v_sales.trader</code>.
*/
public String getTrader() {
return this.trader;
}
/**
* Getter for <code>public.v_sales.fk_camp</code>.
*/
public Integer getFkCamp() {
return this.fkCamp;
}
/**
* Getter for <code>public.v_sales.name</code>.
*/
public String getName() {
return this.name;
}
/**
* Getter for <code>public.v_sales.fk_location</code>.
*/
public Integer getFkLocation() {
return this.fkLocation;
}
/**
* Getter for <code>public.v_sales.location</code>.
*/
public String getLocation() {
return this.location;
}
/**
* Getter for <code>public.v_sales.incredients</code>.
*/
public String getIncredients() {
return this.incredients;
}
/**
* Getter for <code>public.v_sales.year</code>.
*/
public Double getYear() {
return this.year;
}
/**
* Getter for <code>public.v_sales.fk_sales</code>.
*/
public Integer getFkSales() {
return this.fkSales;
}
/**
* Getter for <code>public.v_sales.provider</code>.
*/
public String getProvider() {
return this.provider;
}
/**
* Getter for <code>public.v_sales.cash</code>.
*/
public BigDecimal getCash() {
return this.cash;
}
/**
* Getter for <code>public.v_sales.buydate</code>.
*/
public LocalDateTime getBuydate() {
return this.buydate;
}
/**
* Getter for <code>public.v_sales.recipenumber</code>.
*/
public String getRecipenumber() {
return this.recipenumber;
}
/**
* Getter for <code>public.v_sales.recipeshot</code>.
*/
public byte[] getRecipeshot() {
return this.recipeshot;
}
/**
* Getter for <code>public.v_sales.recipenote</code>.
*/
public String getRecipenote() {
return this.recipenote;
}
/**
* Getter for <code>public.v_sales.content</code>.
*/
public String[] getContent() {
return this.content;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VSales other = (VSales) obj;
if (this.pk == null) {
if (other.pk != null)
return false;
}
else if (!this.pk.equals(other.pk))
return false;
if (this.trader == null) {
if (other.trader != null)
return false;
}
else if (!this.trader.equals(other.trader))
return false;
if (this.fkCamp == null) {
if (other.fkCamp != null)
return false;
}
else if (!this.fkCamp.equals(other.fkCamp))
return false;
if (this.name == null) {
if (other.name != null)
return false;
}
else if (!this.name.equals(other.name))
return false;
if (this.fkLocation == null) {
if (other.fkLocation != null)
return false;
}
else if (!this.fkLocation.equals(other.fkLocation))
return false;
if (this.location == null) {
if (other.location != null)
return false;
}
else if (!this.location.equals(other.location))
return false;
if (this.incredients == null) {
if (other.incredients != null)
return false;
}
else if (!this.incredients.equals(other.incredients))
return false;
if (this.year == null) {
if (other.year != null)
return false;
}
else if (!this.year.equals(other.year))
return false;
if (this.fkSales == null) {
if (other.fkSales != null)
return false;
}
else if (!this.fkSales.equals(other.fkSales))
return false;
if (this.provider == null) {
if (other.provider != null)
return false;
}
else if (!this.provider.equals(other.provider))
return false;
if (this.cash == null) {
if (other.cash != null)
return false;
}
else if (!this.cash.equals(other.cash))
return false;
if (this.buydate == null) {
if (other.buydate != null)
return false;
}
else if (!this.buydate.equals(other.buydate))
return false;
if (this.recipenumber == null) {
if (other.recipenumber != null)
return false;
}
else if (!this.recipenumber.equals(other.recipenumber))
return false;
if (this.recipeshot == null) {
if (other.recipeshot != null)
return false;
}
else if (!Arrays.equals(this.recipeshot, other.recipeshot))
return false;
if (this.recipenote == null) {
if (other.recipenote != null)
return false;
}
else if (!this.recipenote.equals(other.recipenote))
return false;
if (this.content == null) {
if (other.content != null)
return false;
}
else if (!Arrays.deepEquals(this.content, other.content))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
result = prime * result + ((this.trader == null) ? 0 : this.trader.hashCode());
result = prime * result + ((this.fkCamp == null) ? 0 : this.fkCamp.hashCode());
result = prime * result + ((this.name == null) ? 0 : this.name.hashCode());
result = prime * result + ((this.fkLocation == null) ? 0 : this.fkLocation.hashCode());
result = prime * result + ((this.location == null) ? 0 : this.location.hashCode());
result = prime * result + ((this.incredients == null) ? 0 : this.incredients.hashCode());
result = prime * result + ((this.year == null) ? 0 : this.year.hashCode());
result = prime * result + ((this.fkSales == null) ? 0 : this.fkSales.hashCode());
result = prime * result + ((this.provider == null) ? 0 : this.provider.hashCode());
result = prime * result + ((this.cash == null) ? 0 : this.cash.hashCode());
result = prime * result + ((this.buydate == null) ? 0 : this.buydate.hashCode());
result = prime * result + ((this.recipenumber == null) ? 0 : this.recipenumber.hashCode());
result = prime * result + ((this.recipeshot == null) ? 0 : Arrays.hashCode(this.recipeshot));
result = prime * result + ((this.recipenote == null) ? 0 : this.recipenote.hashCode());
result = prime * result + ((this.content == null) ? 0 : Arrays.deepHashCode(this.content));
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VSales (");
sb.append(pk);
sb.append(", ").append(trader);
sb.append(", ").append(fkCamp);
sb.append(", ").append(name);
sb.append(", ").append(fkLocation);
sb.append(", ").append(location);
sb.append(", ").append(incredients);
sb.append(", ").append(year);
sb.append(", ").append(fkSales);
sb.append(", ").append(provider);
sb.append(", ").append(cash);
sb.append(", ").append(buydate);
sb.append(", ").append(recipenumber);
sb.append(", ").append("[binary...]");
sb.append(", ").append(recipenote);
sb.append(", ").append(Arrays.deepToString(content));
sb.append(")");
return sb.toString();
}
}

View File

@ -1,72 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package de.jottyfan.camporganizer.db.jooq.tables.pojos;
import java.io.Serializable;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class VVersion implements Serializable {
private static final long serialVersionUID = 1L;
private final String version;
public VVersion(VVersion value) {
this.version = value.version;
}
public VVersion(
String version
) {
this.version = version;
}
/**
* Getter for <code>public.v_version.version</code>.
*/
public String getVersion() {
return this.version;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
final VVersion other = (VVersion) obj;
if (this.version == null) {
if (other.version != null)
return false;
}
else if (!this.version.equals(other.version))
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((this.version == null) ? 0 : this.version.hashCode());
return result;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder("VVersion (");
sb.append(version);
sb.append(")");
return sb.toString();
}
}

View File

@ -23,9 +23,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.pk</code>.
*/
public TCampRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -38,9 +37,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.name</code>.
*/
public TCampRecord setName(String value) {
public void setName(String value) {
set(1, value);
return this;
}
/**
@ -53,9 +51,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.arrive</code>.
*/
public TCampRecord setArrive(LocalDateTime value) {
public void setArrive(LocalDateTime value) {
set(2, value);
return this;
}
/**
@ -68,9 +65,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.depart</code>.
*/
public TCampRecord setDepart(LocalDateTime value) {
public void setDepart(LocalDateTime value) {
set(3, value);
return this;
}
/**
@ -83,9 +79,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.fk_location</code>.
*/
public TCampRecord setFkLocation(Integer value) {
public void setFkLocation(Integer value) {
set(4, value);
return this;
}
/**
@ -98,9 +93,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.min_age</code>.
*/
public TCampRecord setMinAge(Integer value) {
public void setMinAge(Integer value) {
set(5, value);
return this;
}
/**
@ -113,9 +107,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.max_age</code>.
*/
public TCampRecord setMaxAge(Integer value) {
public void setMaxAge(Integer value) {
set(6, value);
return this;
}
/**
@ -128,9 +121,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.price</code>.
*/
public TCampRecord setPrice(String value) {
public void setPrice(String value) {
set(7, value);
return this;
}
/**
@ -143,9 +135,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.countries</code>.
*/
public TCampRecord setCountries(String value) {
public void setCountries(String value) {
set(8, value);
return this;
}
/**
@ -158,9 +149,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.fk_document</code>.
*/
public TCampRecord setFkDocument(Integer value) {
public void setFkDocument(Integer value) {
set(9, value);
return this;
}
/**
@ -173,9 +163,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.lock_sales</code>.
*/
public TCampRecord setLockSales(Boolean value) {
public void setLockSales(Boolean value) {
set(10, value);
return this;
}
/**
@ -188,9 +177,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.fk_profile</code>.
*/
public TCampRecord setFkProfile(Integer value) {
public void setFkProfile(Integer value) {
set(11, value);
return this;
}
/**
@ -203,9 +191,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.beds_male</code>.
*/
public TCampRecord setBedsMale(Integer value) {
public void setBedsMale(Integer value) {
set(12, value);
return this;
}
/**
@ -218,9 +205,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.beds_female</code>.
*/
public TCampRecord setBedsFemale(Integer value) {
public void setBedsFemale(Integer value) {
set(13, value);
return this;
}
/**
@ -233,9 +219,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.blocked_beds_male</code>.
*/
public TCampRecord setBlockedBedsMale(Integer value) {
public void setBlockedBedsMale(Integer value) {
set(14, value);
return this;
}
/**
@ -248,9 +233,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.blocked_beds_female</code>.
*/
public TCampRecord setBlockedBedsFemale(Integer value) {
public void setBlockedBedsFemale(Integer value) {
set(15, value);
return this;
}
/**
@ -263,9 +247,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.start_booking</code>.
*/
public TCampRecord setStartBooking(LocalDateTime value) {
public void setStartBooking(LocalDateTime value) {
set(16, value);
return this;
}
/**
@ -278,9 +261,8 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
/**
* Setter for <code>public.t_camp.min_teacherage</code>.
*/
public TCampRecord setMinTeacherage(Integer value) {
public void setMinTeacherage(Integer value) {
set(17, value);
return this;
}
/**
@ -334,35 +316,6 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
setBlockedBedsFemale(blockedBedsFemale);
setStartBooking(startBooking);
setMinTeacherage(minTeacherage);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TCampRecord
*/
public TCampRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TCamp value) {
super(TCamp.T_CAMP);
if (value != null) {
setPk(value.getPk());
setName(value.getName());
setArrive(value.getArrive());
setDepart(value.getDepart());
setFkLocation(value.getFkLocation());
setMinAge(value.getMinAge());
setMaxAge(value.getMaxAge());
setPrice(value.getPrice());
setCountries(value.getCountries());
setFkDocument(value.getFkDocument());
setLockSales(value.getLockSales());
setFkProfile(value.getFkProfile());
setBedsMale(value.getBedsMale());
setBedsFemale(value.getBedsFemale());
setBlockedBedsMale(value.getBlockedBedsMale());
setBlockedBedsFemale(value.getBlockedBedsFemale());
setStartBooking(value.getStartBooking());
setMinTeacherage(value.getMinTeacherage());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -21,9 +21,8 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
/**
* Setter for <code>public.t_campdocument.pk</code>.
*/
public TCampdocumentRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -36,9 +35,8 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
/**
* Setter for <code>public.t_campdocument.fk_camp</code>.
*/
public TCampdocumentRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(1, value);
return this;
}
/**
@ -51,9 +49,8 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
/**
* Setter for <code>public.t_campdocument.fk_document</code>.
*/
public TCampdocumentRecord setFkDocument(Integer value) {
public void setFkDocument(Integer value) {
set(2, value);
return this;
}
/**
@ -92,20 +89,6 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
setPk(pk);
setFkCamp(fkCamp);
setFkDocument(fkDocument);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TCampdocumentRecord
*/
public TCampdocumentRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TCampdocument value) {
super(TCampdocument.T_CAMPDOCUMENT);
if (value != null) {
setPk(value.getPk());
setFkCamp(value.getFkCamp());
setFkDocument(value.getFkDocument());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
/**
* Setter for <code>public.t_campprofile.pk</code>.
*/
public TCampprofileRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
/**
* Setter for <code>public.t_campprofile.fk_profile</code>.
*/
public TCampprofileRecord setFkProfile(Integer value) {
public void setFkProfile(Integer value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
/**
* Setter for <code>public.t_campprofile.fk_camp</code>.
*/
public TCampprofileRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
/**
* Setter for <code>public.t_campprofile.module</code>.
*/
public TCampprofileRecord setModule(EnumModule value) {
public void setModule(EnumModule value) {
set(3, value);
return this;
}
/**
@ -109,21 +105,6 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
setFkProfile(fkProfile);
setFkCamp(fkCamp);
setModule(module);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TCampprofileRecord
*/
public TCampprofileRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TCampprofile value) {
super(TCampprofile.T_CAMPPROFILE);
if (value != null) {
setPk(value.getPk());
setFkProfile(value.getFkProfile());
setFkCamp(value.getFkCamp());
setModule(value.getModule());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -23,9 +23,8 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
/**
* Setter for <code>public.t_document.pk</code>.
*/
public TDocumentRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -38,9 +37,8 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
/**
* Setter for <code>public.t_document.doctype</code>.
*/
public TDocumentRecord setDoctype(EnumDocument value) {
public void setDoctype(EnumDocument value) {
set(1, value);
return this;
}
/**
@ -53,9 +51,8 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
/**
* Setter for <code>public.t_document.name</code>.
*/
public TDocumentRecord setName(String value) {
public void setName(String value) {
set(2, value);
return this;
}
/**
@ -68,9 +65,8 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
/**
* Setter for <code>public.t_document.document</code>.
*/
public TDocumentRecord setDocument(String value) {
public void setDocument(String value) {
set(3, value);
return this;
}
/**
@ -83,9 +79,8 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
/**
* Setter for <code>public.t_document.filetype</code>.
*/
public TDocumentRecord setFiletype(EnumFiletype value) {
public void setFiletype(EnumFiletype value) {
set(4, value);
return this;
}
/**
@ -126,22 +121,6 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
setName(name);
setDocument(document);
setFiletype(filetype);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TDocumentRecord
*/
public TDocumentRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TDocument value) {
super(TDocument.T_DOCUMENT);
if (value != null) {
setPk(value.getPk());
setDoctype(value.getDoctype());
setName(value.getName());
setDocument(value.getDocument());
setFiletype(value.getFiletype());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
/**
* Setter for <code>public.t_documentrole.pk</code>.
*/
public TDocumentroleRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
/**
* Setter for <code>public.t_documentrole.fk_document</code>.
*/
public TDocumentroleRecord setFkDocument(Integer value) {
public void setFkDocument(Integer value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
/**
* Setter for <code>public.t_documentrole.camprole</code>.
*/
public TDocumentroleRecord setCamprole(EnumCamprole value) {
public void setCamprole(EnumCamprole value) {
set(2, value);
return this;
}
/**
@ -93,20 +90,6 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
setPk(pk);
setFkDocument(fkDocument);
setCamprole(camprole);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TDocumentroleRecord
*/
public TDocumentroleRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TDocumentrole value) {
super(TDocumentrole.T_DOCUMENTROLE);
if (value != null) {
setPk(value.getPk());
setFkDocument(value.getFkDocument());
setCamprole(value.getCamprole());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -21,9 +21,8 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
/**
* Setter for <code>public.t_location.pk</code>.
*/
public TLocationRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -36,9 +35,8 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
/**
* Setter for <code>public.t_location.name</code>.
*/
public TLocationRecord setName(String value) {
public void setName(String value) {
set(1, value);
return this;
}
/**
@ -51,9 +49,8 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
/**
* Setter for <code>public.t_location.url</code>.
*/
public TLocationRecord setUrl(String value) {
public void setUrl(String value) {
set(2, value);
return this;
}
/**
@ -66,9 +63,8 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
/**
* Setter for <code>public.t_location.fk_document</code>.
*/
public TLocationRecord setFkDocument(Integer value) {
public void setFkDocument(Integer value) {
set(3, value);
return this;
}
/**
@ -108,21 +104,6 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
setName(name);
setUrl(url);
setFkDocument(fkDocument);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TLocationRecord
*/
public TLocationRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TLocation value) {
super(TLocation.T_LOCATION);
if (value != null) {
setPk(value.getPk());
setName(value.getName());
setUrl(value.getUrl());
setFkDocument(value.getFkDocument());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -28,9 +28,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.pk</code>.
*/
public TPersonRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -43,9 +42,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.forename</code>.
*/
public TPersonRecord setForename(String value) {
public void setForename(String value) {
set(1, value);
return this;
}
/**
@ -58,9 +56,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.surname</code>.
*/
public TPersonRecord setSurname(String value) {
public void setSurname(String value) {
set(2, value);
return this;
}
/**
@ -73,9 +70,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.street</code>.
*/
public TPersonRecord setStreet(String value) {
public void setStreet(String value) {
set(3, value);
return this;
}
/**
@ -88,9 +84,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.zip</code>.
*/
public TPersonRecord setZip(String value) {
public void setZip(String value) {
set(4, value);
return this;
}
/**
@ -103,9 +98,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.city</code>.
*/
public TPersonRecord setCity(String value) {
public void setCity(String value) {
set(5, value);
return this;
}
/**
@ -118,9 +112,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.phone</code>.
*/
public TPersonRecord setPhone(String value) {
public void setPhone(String value) {
set(6, value);
return this;
}
/**
@ -133,9 +126,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.birthdate</code>.
*/
public TPersonRecord setBirthdate(LocalDate value) {
public void setBirthdate(LocalDate value) {
set(7, value);
return this;
}
/**
@ -148,9 +140,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.camprole</code>.
*/
public TPersonRecord setCamprole(EnumCamprole value) {
public void setCamprole(EnumCamprole value) {
set(8, value);
return this;
}
/**
@ -163,9 +154,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.email</code>.
*/
public TPersonRecord setEmail(String value) {
public void setEmail(String value) {
set(9, value);
return this;
}
/**
@ -178,9 +168,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.fk_camp</code>.
*/
public TPersonRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(10, value);
return this;
}
/**
@ -193,9 +182,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.fk_profile</code>.
*/
public TPersonRecord setFkProfile(Integer value) {
public void setFkProfile(Integer value) {
set(11, value);
return this;
}
/**
@ -208,9 +196,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.accept</code>.
*/
public TPersonRecord setAccept(Boolean value) {
public void setAccept(Boolean value) {
set(12, value);
return this;
}
/**
@ -223,9 +210,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.progress</code>.
*/
public TPersonRecord setProgress(EnumProgress value) {
public void setProgress(EnumProgress value) {
set(13, value);
return this;
}
/**
@ -238,9 +224,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.created</code>.
*/
public TPersonRecord setCreated(LocalDateTime value) {
public void setCreated(LocalDateTime value) {
set(14, value);
return this;
}
/**
@ -253,9 +238,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.sex</code>.
*/
public TPersonRecord setSex(EnumSex value) {
public void setSex(EnumSex value) {
set(15, value);
return this;
}
/**
@ -268,9 +252,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.fk_registrator</code>.
*/
public TPersonRecord setFkRegistrator(Integer value) {
public void setFkRegistrator(Integer value) {
set(16, value);
return this;
}
/**
@ -283,9 +266,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.paid</code>.
*/
public TPersonRecord setPaid(BigDecimal value) {
public void setPaid(BigDecimal value) {
set(17, value);
return this;
}
/**
@ -298,9 +280,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.comment</code>.
*/
public TPersonRecord setComment(String value) {
public void setComment(String value) {
set(18, value);
return this;
}
/**
@ -313,9 +294,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.consent_catalog_photo</code>.
*/
public TPersonRecord setConsentCatalogPhoto(Boolean value) {
public void setConsentCatalogPhoto(Boolean value) {
set(19, value);
return this;
}
/**
@ -328,9 +308,8 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
/**
* Setter for <code>public.t_person.required_price</code>.
*/
public TPersonRecord setRequiredPrice(BigDecimal value) {
public void setRequiredPrice(BigDecimal value) {
set(20, value);
return this;
}
/**
@ -387,38 +366,6 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
setComment(comment);
setConsentCatalogPhoto(consentCatalogPhoto);
setRequiredPrice(requiredPrice);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TPersonRecord
*/
public TPersonRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TPerson value) {
super(TPerson.T_PERSON);
if (value != null) {
setPk(value.getPk());
setForename(value.getForename());
setSurname(value.getSurname());
setStreet(value.getStreet());
setZip(value.getZip());
setCity(value.getCity());
setPhone(value.getPhone());
setBirthdate(value.getBirthdate());
setCamprole(value.getCamprole());
setEmail(value.getEmail());
setFkCamp(value.getFkCamp());
setFkProfile(value.getFkProfile());
setAccept(value.getAccept());
setProgress(value.getProgress());
setCreated(value.getCreated());
setSex(value.getSex());
setFkRegistrator(value.getFkRegistrator());
setPaid(value.getPaid());
setComment(value.getComment());
setConsentCatalogPhoto(value.getConsentCatalogPhoto());
setRequiredPrice(value.getRequiredPrice());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
/**
* Setter for <code>public.t_persondocument.pk</code>.
*/
public TPersondocumentRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
/**
* Setter for <code>public.t_persondocument.fk_person</code>.
*/
public TPersondocumentRecord setFkPerson(Integer value) {
public void setFkPerson(Integer value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
/**
* Setter for <code>public.t_persondocument.name</code>.
*/
public TPersondocumentRecord setName(String value) {
public void setName(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
/**
* Setter for <code>public.t_persondocument.document</code>.
*/
public TPersondocumentRecord setDocument(String value) {
public void setDocument(String value) {
set(3, value);
return this;
}
/**
@ -82,9 +78,8 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
/**
* Setter for <code>public.t_persondocument.filetype</code>.
*/
public TPersondocumentRecord setFiletype(EnumFiletype value) {
public void setFiletype(EnumFiletype value) {
set(4, value);
return this;
}
/**
@ -125,22 +120,6 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
setName(name);
setDocument(document);
setFiletype(filetype);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TPersondocumentRecord
*/
public TPersondocumentRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TPersondocument value) {
super(TPersondocument.T_PERSONDOCUMENT);
if (value != null) {
setPk(value.getPk());
setFkPerson(value.getFkPerson());
setName(value.getName());
setDocument(value.getDocument());
setFiletype(value.getFiletype());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -23,9 +23,8 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
/**
* Setter for <code>public.t_profile.pk</code>.
*/
public TProfileRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -38,9 +37,8 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
/**
* Setter for <code>public.t_profile.forename</code>.
*/
public TProfileRecord setForename(String value) {
public void setForename(String value) {
set(1, value);
return this;
}
/**
@ -53,9 +51,8 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
/**
* Setter for <code>public.t_profile.surname</code>.
*/
public TProfileRecord setSurname(String value) {
public void setSurname(String value) {
set(2, value);
return this;
}
/**
@ -68,9 +65,8 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
/**
* Setter for <code>public.t_profile.username</code>.
*/
public TProfileRecord setUsername(String value) {
public void setUsername(String value) {
set(3, value);
return this;
}
/**
@ -83,9 +79,8 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
/**
* Setter for <code>public.t_profile.password</code>.
*/
public TProfileRecord setPassword(String value) {
public void setPassword(String value) {
set(4, value);
return this;
}
/**
@ -98,9 +93,8 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
/**
* Setter for <code>public.t_profile.duedate</code>.
*/
public TProfileRecord setDuedate(LocalDateTime value) {
public void setDuedate(LocalDateTime value) {
set(5, value);
return this;
}
/**
@ -113,9 +107,8 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
/**
* Setter for <code>public.t_profile.uuid</code>.
*/
public TProfileRecord setUuid(String value) {
public void setUuid(String value) {
set(6, value);
return this;
}
/**
@ -158,24 +151,6 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
setPassword(password);
setDuedate(duedate);
setUuid(uuid);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TProfileRecord
*/
public TProfileRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TProfile value) {
super(TProfile.T_PROFILE);
if (value != null) {
setPk(value.getPk());
setForename(value.getForename());
setSurname(value.getSurname());
setUsername(value.getUsername());
setPassword(value.getPassword());
setDuedate(value.getDuedate());
setUuid(value.getUuid());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -21,9 +21,8 @@ public class TProfileroleRecord extends TableRecordImpl<TProfileroleRecord> {
/**
* Setter for <code>public.t_profilerole.fk_profile</code>.
*/
public TProfileroleRecord setFkProfile(Integer value) {
public void setFkProfile(Integer value) {
set(0, value);
return this;
}
/**
@ -36,9 +35,8 @@ public class TProfileroleRecord extends TableRecordImpl<TProfileroleRecord> {
/**
* Setter for <code>public.t_profilerole.role</code>.
*/
public TProfileroleRecord setRole(EnumRole value) {
public void setRole(EnumRole value) {
set(1, value);
return this;
}
/**
@ -67,19 +65,6 @@ public class TProfileroleRecord extends TableRecordImpl<TProfileroleRecord> {
setFkProfile(fkProfile);
setRole(role);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TProfileroleRecord
*/
public TProfileroleRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TProfilerole value) {
super(TProfilerole.T_PROFILEROLE);
if (value != null) {
setFkProfile(value.getFkProfile());
setRole(value.getRole());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -23,9 +23,8 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
/**
* Setter for <code>public.t_rss.pk</code>.
*/
public TRssRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -38,9 +37,8 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
/**
* Setter for <code>public.t_rss.msg</code>.
*/
public TRssRecord setMsg(String value) {
public void setMsg(String value) {
set(1, value);
return this;
}
/**
@ -53,9 +51,8 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
/**
* Setter for <code>public.t_rss.regdate</code>.
*/
public TRssRecord setRegdate(LocalDateTime value) {
public void setRegdate(LocalDateTime value) {
set(2, value);
return this;
}
/**
@ -68,9 +65,8 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
/**
* Setter for <code>public.t_rss.recipient</code>.
*/
public TRssRecord setRecipient(String value) {
public void setRecipient(String value) {
set(3, value);
return this;
}
/**
@ -110,21 +106,6 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
setMsg(msg);
setRegdate(regdate);
setRecipient(recipient);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TRssRecord
*/
public TRssRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TRss value) {
super(TRss.T_RSS);
if (value != null) {
setPk(value.getPk());
setMsg(value.getMsg());
setRegdate(value.getRegdate());
setRecipient(value.getRecipient());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -24,9 +24,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.pk</code>.
*/
public TSalesRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -39,9 +38,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.trader</code>.
*/
public TSalesRecord setTrader(String value) {
public void setTrader(String value) {
set(1, value);
return this;
}
/**
@ -54,9 +52,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.fk_camp</code>.
*/
public TSalesRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(2, value);
return this;
}
/**
@ -69,9 +66,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.provider</code>.
*/
public TSalesRecord setProvider(String value) {
public void setProvider(String value) {
set(3, value);
return this;
}
/**
@ -84,9 +80,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.cash</code>.
*/
public TSalesRecord setCash(BigDecimal value) {
public void setCash(BigDecimal value) {
set(4, value);
return this;
}
/**
@ -99,9 +94,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.buydate</code>.
*/
public TSalesRecord setBuydate(LocalDateTime value) {
public void setBuydate(LocalDateTime value) {
set(5, value);
return this;
}
/**
@ -114,9 +108,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.recipenumber</code>.
*/
public TSalesRecord setRecipenumber(String value) {
public void setRecipenumber(String value) {
set(6, value);
return this;
}
/**
@ -129,9 +122,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.recipeshot</code>.
*/
public TSalesRecord setRecipeshot(byte[] value) {
public void setRecipeshot(byte[] value) {
set(7, value);
return this;
}
/**
@ -144,9 +136,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.recipenote</code>.
*/
public TSalesRecord setRecipenote(String value) {
public void setRecipenote(String value) {
set(8, value);
return this;
}
/**
@ -159,9 +150,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.incredients</code>.
*/
public TSalesRecord setIncredients(String value) {
public void setIncredients(String value) {
set(9, value);
return this;
}
/**
@ -174,9 +164,8 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
/**
* Setter for <code>public.t_sales.recipefilename</code>.
*/
public TSalesRecord setRecipefilename(String value) {
public void setRecipefilename(String value) {
set(10, value);
return this;
}
/**
@ -223,28 +212,6 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
setRecipenote(recipenote);
setIncredients(incredients);
setRecipefilename(recipefilename);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TSalesRecord
*/
public TSalesRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TSales value) {
super(TSales.T_SALES);
if (value != null) {
setPk(value.getPk());
setTrader(value.getTrader());
setFkCamp(value.getFkCamp());
setProvider(value.getProvider());
setCash(value.getCash());
setBuydate(value.getBuydate());
setRecipenumber(value.getRecipenumber());
setRecipeshot(value.getRecipeshot());
setRecipenote(value.getRecipenote());
setIncredients(value.getIncredients());
setRecipefilename(value.getRecipefilename());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -20,9 +20,8 @@ public class TSalescontentRecord extends TableRecordImpl<TSalescontentRecord> {
/**
* Setter for <code>public.t_salescontent.fk_sales</code>.
*/
public TSalescontentRecord setFkSales(Integer value) {
public void setFkSales(Integer value) {
set(0, value);
return this;
}
/**
@ -35,9 +34,8 @@ public class TSalescontentRecord extends TableRecordImpl<TSalescontentRecord> {
/**
* Setter for <code>public.t_salescontent.fk_salescontenttype</code>.
*/
public TSalescontentRecord setFkSalescontenttype(String value) {
public void setFkSalescontenttype(String value) {
set(1, value);
return this;
}
/**
@ -66,19 +64,6 @@ public class TSalescontentRecord extends TableRecordImpl<TSalescontentRecord> {
setFkSales(fkSales);
setFkSalescontenttype(fkSalescontenttype);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TSalescontentRecord
*/
public TSalescontentRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TSalescontent value) {
super(TSalescontent.T_SALESCONTENT);
if (value != null) {
setFkSales(value.getFkSales());
setFkSalescontenttype(value.getFkSalescontenttype());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -21,9 +21,8 @@ public class TSalescontenttypeRecord extends UpdatableRecordImpl<TSalescontentty
/**
* Setter for <code>public.t_salescontenttype.name</code>.
*/
public TSalescontenttypeRecord setName(String value) {
public void setName(String value) {
set(0, value);
return this;
}
/**
@ -60,18 +59,6 @@ public class TSalescontenttypeRecord extends UpdatableRecordImpl<TSalescontentty
super(TSalescontenttype.T_SALESCONTENTTYPE);
setName(name);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised TSalescontenttypeRecord
*/
public TSalescontenttypeRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.TSalescontenttype value) {
super(TSalescontenttype.T_SALESCONTENTTYPE);
if (value != null) {
setName(value.getName());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VAdultRecord extends TableRecordImpl<VAdultRecord> {
/**
* Setter for <code>public.v_adult.age</code>.
*/
public VAdultRecord setAge(YearToSecond value) {
public void setAge(YearToSecond value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VAdultRecord extends TableRecordImpl<VAdultRecord> {
/**
* Setter for <code>public.v_adult.forename</code>.
*/
public VAdultRecord setForename(String value) {
public void setForename(String value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class VAdultRecord extends TableRecordImpl<VAdultRecord> {
/**
* Setter for <code>public.v_adult.surname</code>.
*/
public VAdultRecord setSurname(String value) {
public void setSurname(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class VAdultRecord extends TableRecordImpl<VAdultRecord> {
/**
* Setter for <code>public.v_adult.camprole</code>.
*/
public VAdultRecord setCamprole(EnumCamprole value) {
public void setCamprole(EnumCamprole value) {
set(3, value);
return this;
}
/**
@ -82,9 +78,8 @@ public class VAdultRecord extends TableRecordImpl<VAdultRecord> {
/**
* Setter for <code>public.v_adult.adult</code>.
*/
public VAdultRecord setAdult(Boolean value) {
public void setAdult(Boolean value) {
set(4, value);
return this;
}
/**
@ -116,22 +111,6 @@ public class VAdultRecord extends TableRecordImpl<VAdultRecord> {
setSurname(surname);
setCamprole(camprole);
setAdult(adult);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VAdultRecord
*/
public VAdultRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VAdult value) {
super(VAdult.V_ADULT);
if (value != null) {
setAge(value.getAge());
setForename(value.getForename());
setSurname(value.getSurname());
setCamprole(value.getCamprole());
setAdult(value.getAdult());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
/**
* Setter for <code>public.v_budget.budget</code>.
*/
public VBudgetRecord setBudget(BigDecimal value) {
public void setBudget(BigDecimal value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
/**
* Setter for <code>public.v_budget.fk_camp</code>.
*/
public VBudgetRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
/**
* Setter for <code>public.v_budget.name</code>.
*/
public VBudgetRecord setName(String value) {
public void setName(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
/**
* Setter for <code>public.v_budget.location</code>.
*/
public VBudgetRecord setLocation(String value) {
public void setLocation(String value) {
set(3, value);
return this;
}
/**
@ -82,9 +78,8 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
/**
* Setter for <code>public.v_budget.year</code>.
*/
public VBudgetRecord setYear(Double value) {
public void setYear(Double value) {
set(4, value);
return this;
}
/**
@ -116,22 +111,6 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
setName(name);
setLocation(location);
setYear(year);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VBudgetRecord
*/
public VBudgetRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VBudget value) {
super(VBudget.V_BUDGET);
if (value != null) {
setBudget(value.getBudget());
setFkCamp(value.getFkCamp());
setName(value.getName());
setLocation(value.getLocation());
setYear(value.getYear());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
/**
* Setter for <code>public.v_camp_budget.budget</code>.
*/
public VCampBudgetRecord setBudget(BigDecimal value) {
public void setBudget(BigDecimal value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
/**
* Setter for <code>public.v_camp_budget.fk_camp</code>.
*/
public VCampBudgetRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
/**
* Setter for <code>public.v_camp_budget.camp_name</code>.
*/
public VCampBudgetRecord setCampName(String value) {
public void setCampName(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
/**
* Setter for <code>public.v_camp_budget.year</code>.
*/
public VCampBudgetRecord setYear(Double value) {
public void setYear(Double value) {
set(3, value);
return this;
}
/**
@ -100,21 +96,6 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
setFkCamp(fkCamp);
setCampName(campName);
setYear(year);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VCampBudgetRecord
*/
public VCampBudgetRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VCampBudget value) {
super(VCampBudget.V_CAMP_BUDGET);
if (value != null) {
setBudget(value.getBudget());
setFkCamp(value.getFkCamp());
setCampName(value.getCampName());
setYear(value.getYear());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VCampBudgetYearRecord extends TableRecordImpl<VCampBudgetYearRecord
/**
* Setter for <code>public.v_camp_budget_year.sum</code>.
*/
public VCampBudgetYearRecord setSum(BigDecimal value) {
public void setSum(BigDecimal value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VCampBudgetYearRecord extends TableRecordImpl<VCampBudgetYearRecord
/**
* Setter for <code>public.v_camp_budget_year.year</code>.
*/
public VCampBudgetYearRecord setYear(Double value) {
public void setYear(Double value) {
set(1, value);
return this;
}
/**
@ -68,19 +66,6 @@ public class VCampBudgetYearRecord extends TableRecordImpl<VCampBudgetYearRecord
setSum(sum);
setYear(year);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VCampBudgetYearRecord
*/
public VCampBudgetYearRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VCampBudgetYear value) {
super(VCampBudgetYear.V_CAMP_BUDGET_YEAR);
if (value != null) {
setSum(value.getSum());
setYear(value.getYear());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.pk</code>.
*/
public VCampRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.is_over</code>.
*/
public VCampRecord setIsOver(Boolean value) {
public void setIsOver(Boolean value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.name</code>.
*/
public VCampRecord setName(String value) {
public void setName(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.arrive</code>.
*/
public VCampRecord setArrive(LocalDateTime value) {
public void setArrive(LocalDateTime value) {
set(3, value);
return this;
}
/**
@ -82,9 +78,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.depart</code>.
*/
public VCampRecord setDepart(LocalDateTime value) {
public void setDepart(LocalDateTime value) {
set(4, value);
return this;
}
/**
@ -97,9 +92,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.year</code>.
*/
public VCampRecord setYear(Double value) {
public void setYear(Double value) {
set(5, value);
return this;
}
/**
@ -112,9 +106,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.location_name</code>.
*/
public VCampRecord setLocationName(String value) {
public void setLocationName(String value) {
set(6, value);
return this;
}
/**
@ -127,9 +120,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.min_age</code>.
*/
public VCampRecord setMinAge(Integer value) {
public void setMinAge(Integer value) {
set(7, value);
return this;
}
/**
@ -142,9 +134,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.max_age</code>.
*/
public VCampRecord setMaxAge(Integer value) {
public void setMaxAge(Integer value) {
set(8, value);
return this;
}
/**
@ -157,9 +148,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.min_teacherage</code>.
*/
public VCampRecord setMinTeacherage(Integer value) {
public void setMinTeacherage(Integer value) {
set(9, value);
return this;
}
/**
@ -172,9 +162,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.url</code>.
*/
public VCampRecord setUrl(String value) {
public void setUrl(String value) {
set(10, value);
return this;
}
/**
@ -187,9 +176,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.price</code>.
*/
public VCampRecord setPrice(String value) {
public void setPrice(String value) {
set(11, value);
return this;
}
/**
@ -202,9 +190,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.countries</code>.
*/
public VCampRecord setCountries(String value) {
public void setCountries(String value) {
set(12, value);
return this;
}
/**
@ -217,9 +204,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.fk_document</code>.
*/
public VCampRecord setFkDocument(Integer value) {
public void setFkDocument(Integer value) {
set(13, value);
return this;
}
/**
@ -232,9 +218,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.beds_female</code>.
*/
public VCampRecord setBedsFemale(Integer value) {
public void setBedsFemale(Integer value) {
set(14, value);
return this;
}
/**
@ -247,9 +232,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.beds_male</code>.
*/
public VCampRecord setBedsMale(Integer value) {
public void setBedsMale(Integer value) {
set(15, value);
return this;
}
/**
@ -262,9 +246,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.blocked_beds_female</code>.
*/
public VCampRecord setBlockedBedsFemale(Integer value) {
public void setBlockedBedsFemale(Integer value) {
set(16, value);
return this;
}
/**
@ -277,9 +260,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.blocked_beds_male</code>.
*/
public VCampRecord setBlockedBedsMale(Integer value) {
public void setBlockedBedsMale(Integer value) {
set(17, value);
return this;
}
/**
@ -292,9 +274,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.used_beds_male</code>.
*/
public VCampRecord setUsedBedsMale(Long value) {
public void setUsedBedsMale(Long value) {
set(18, value);
return this;
}
/**
@ -307,9 +288,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.used_beds_female</code>.
*/
public VCampRecord setUsedBedsFemale(Long value) {
public void setUsedBedsFemale(Long value) {
set(19, value);
return this;
}
/**
@ -322,9 +302,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.start_booking</code>.
*/
public VCampRecord setStartBooking(LocalDateTime value) {
public void setStartBooking(LocalDateTime value) {
set(20, value);
return this;
}
/**
@ -337,9 +316,8 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
/**
* Setter for <code>public.v_camp.booking_has_started</code>.
*/
public VCampRecord setBookingHasStarted(Boolean value) {
public void setBookingHasStarted(Boolean value) {
set(21, value);
return this;
}
/**
@ -388,39 +366,6 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
setUsedBedsFemale(usedBedsFemale);
setStartBooking(startBooking);
setBookingHasStarted(bookingHasStarted);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VCampRecord
*/
public VCampRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VCamp value) {
super(VCamp.V_CAMP);
if (value != null) {
setPk(value.getPk());
setIsOver(value.getIsOver());
setName(value.getName());
setArrive(value.getArrive());
setDepart(value.getDepart());
setYear(value.getYear());
setLocationName(value.getLocationName());
setMinAge(value.getMinAge());
setMaxAge(value.getMaxAge());
setMinTeacherage(value.getMinTeacherage());
setUrl(value.getUrl());
setPrice(value.getPrice());
setCountries(value.getCountries());
setFkDocument(value.getFkDocument());
setBedsFemale(value.getBedsFemale());
setBedsMale(value.getBedsMale());
setBlockedBedsFemale(value.getBlockedBedsFemale());
setBlockedBedsMale(value.getBlockedBedsMale());
setUsedBedsMale(value.getUsedBedsMale());
setUsedBedsFemale(value.getUsedBedsFemale());
setStartBooking(value.getStartBooking());
setBookingHasStarted(value.getBookingHasStarted());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -24,9 +24,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.fk_camp</code>.
*/
public VCampdocumentRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(0, value);
return this;
}
/**
@ -39,9 +38,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.campname</code>.
*/
public VCampdocumentRecord setCampname(String value) {
public void setCampname(String value) {
set(1, value);
return this;
}
/**
@ -54,9 +52,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.arrive</code>.
*/
public VCampdocumentRecord setArrive(LocalDateTime value) {
public void setArrive(LocalDateTime value) {
set(2, value);
return this;
}
/**
@ -69,9 +66,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.fk_document</code>.
*/
public VCampdocumentRecord setFkDocument(Integer value) {
public void setFkDocument(Integer value) {
set(3, value);
return this;
}
/**
@ -84,9 +80,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.document</code>.
*/
public VCampdocumentRecord setDocument(String value) {
public void setDocument(String value) {
set(4, value);
return this;
}
/**
@ -99,9 +94,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.documentname</code>.
*/
public VCampdocumentRecord setDocumentname(String value) {
public void setDocumentname(String value) {
set(5, value);
return this;
}
/**
@ -114,9 +108,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.doctype</code>.
*/
public VCampdocumentRecord setDoctype(EnumDocument value) {
public void setDoctype(EnumDocument value) {
set(6, value);
return this;
}
/**
@ -129,9 +122,8 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
/**
* Setter for <code>public.v_campdocument.filetype</code>.
*/
public VCampdocumentRecord setFiletype(EnumFiletype value) {
public void setFiletype(EnumFiletype value) {
set(7, value);
return this;
}
/**
@ -166,25 +158,6 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
setDocumentname(documentname);
setDoctype(doctype);
setFiletype(filetype);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VCampdocumentRecord
*/
public VCampdocumentRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VCampdocument value) {
super(VCampdocument.V_CAMPDOCUMENT);
if (value != null) {
setFkCamp(value.getFkCamp());
setCampname(value.getCampname());
setArrive(value.getArrive());
setFkDocument(value.getFkDocument());
setDocument(value.getDocument());
setDocumentname(value.getDocumentname());
setDoctype(value.getDoctype());
setFiletype(value.getFiletype());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -21,9 +21,8 @@ public class VCamproleRecord extends TableRecordImpl<VCamproleRecord> {
/**
* Setter for <code>public.v_camprole.name</code>.
*/
public VCamproleRecord setName(EnumCamprole value) {
public void setName(EnumCamprole value) {
set(0, value);
return this;
}
/**
@ -51,18 +50,6 @@ public class VCamproleRecord extends TableRecordImpl<VCamproleRecord> {
super(VCamprole.V_CAMPROLE);
setName(name);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VCamproleRecord
*/
public VCamproleRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VCamprole value) {
super(VCamprole.V_CAMPROLE);
if (value != null) {
setName(value.getName());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
/**
* Setter for <code>public.v_document.pk</code>.
*/
public VDocumentRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
/**
* Setter for <code>public.v_document.doctype</code>.
*/
public VDocumentRecord setDoctype(EnumDocument value) {
public void setDoctype(EnumDocument value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
/**
* Setter for <code>public.v_document.name</code>.
*/
public VDocumentRecord setName(String value) {
public void setName(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
/**
* Setter for <code>public.v_document.document</code>.
*/
public VDocumentRecord setDocument(String value) {
public void setDocument(String value) {
set(3, value);
return this;
}
/**
@ -82,9 +78,8 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
/**
* Setter for <code>public.v_document.filetype</code>.
*/
public VDocumentRecord setFiletype(EnumFiletype value) {
public void setFiletype(EnumFiletype value) {
set(4, value);
return this;
}
/**
@ -97,9 +92,8 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
/**
* Setter for <code>public.v_document.roles</code>.
*/
public VDocumentRecord setRoles(String value) {
public void setRoles(String value) {
set(5, value);
return this;
}
/**
@ -132,23 +126,6 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
setDocument(document);
setFiletype(filetype);
setRoles(roles);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VDocumentRecord
*/
public VDocumentRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VDocument value) {
super(VDocument.V_DOCUMENT);
if (value != null) {
setPk(value.getPk());
setDoctype(value.getDoctype());
setName(value.getName());
setDocument(value.getDocument());
setFiletype(value.getFiletype());
setRoles(value.getRoles());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.fk_person</code>.
*/
public VDsgvoDeleteCandidateRecord setFkPerson(Integer value) {
public void setFkPerson(Integer value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.forename</code>.
*/
public VDsgvoDeleteCandidateRecord setForename(String value) {
public void setForename(String value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.surname</code>.
*/
public VDsgvoDeleteCandidateRecord setSurname(String value) {
public void setSurname(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.fk_camp</code>.
*/
public VDsgvoDeleteCandidateRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(3, value);
return this;
}
/**
@ -82,9 +78,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.age</code>.
*/
public VDsgvoDeleteCandidateRecord setAge(YearToSecond value) {
public void setAge(YearToSecond value) {
set(4, value);
return this;
}
/**
@ -97,9 +92,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.camprole</code>.
*/
public VDsgvoDeleteCandidateRecord setCamprole(EnumCamprole value) {
public void setCamprole(EnumCamprole value) {
set(5, value);
return this;
}
/**
@ -112,9 +106,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.name</code>.
*/
public VDsgvoDeleteCandidateRecord setName(String value) {
public void setName(String value) {
set(6, value);
return this;
}
/**
@ -127,9 +120,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.year</code>.
*/
public VDsgvoDeleteCandidateRecord setYear(Double value) {
public void setYear(Double value) {
set(7, value);
return this;
}
/**
@ -142,9 +134,8 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
/**
* Setter for <code>public.v_dsgvo_delete_candidate.is_over</code>.
*/
public VDsgvoDeleteCandidateRecord setIsOver(Boolean value) {
public void setIsOver(Boolean value) {
set(8, value);
return this;
}
/**
@ -180,26 +171,6 @@ public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCan
setName(name);
setYear(year);
setIsOver(isOver);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VDsgvoDeleteCandidateRecord
*/
public VDsgvoDeleteCandidateRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VDsgvoDeleteCandidate value) {
super(VDsgvoDeleteCandidate.V_DSGVO_DELETE_CANDIDATE);
if (value != null) {
setFkPerson(value.getFkPerson());
setForename(value.getForename());
setSurname(value.getSurname());
setFkCamp(value.getFkCamp());
setAge(value.getAge());
setCamprole(value.getCamprole());
setName(value.getName());
setYear(value.getYear());
setIsOver(value.getIsOver());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -22,9 +22,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.forename</code>.
*/
public VFeederRecord setForename(String value) {
public void setForename(String value) {
set(0, value);
return this;
}
/**
@ -37,9 +36,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.surname</code>.
*/
public VFeederRecord setSurname(String value) {
public void setSurname(String value) {
set(1, value);
return this;
}
/**
@ -52,9 +50,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.street</code>.
*/
public VFeederRecord setStreet(String value) {
public void setStreet(String value) {
set(2, value);
return this;
}
/**
@ -67,9 +64,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.zip</code>.
*/
public VFeederRecord setZip(String value) {
public void setZip(String value) {
set(3, value);
return this;
}
/**
@ -82,9 +78,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.city</code>.
*/
public VFeederRecord setCity(String value) {
public void setCity(String value) {
set(4, value);
return this;
}
/**
@ -97,9 +92,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.phone</code>.
*/
public VFeederRecord setPhone(String value) {
public void setPhone(String value) {
set(5, value);
return this;
}
/**
@ -112,9 +106,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.age</code>.
*/
public VFeederRecord setAge(YearToSecond value) {
public void setAge(YearToSecond value) {
set(6, value);
return this;
}
/**
@ -127,9 +120,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.email</code>.
*/
public VFeederRecord setEmail(String value) {
public void setEmail(String value) {
set(7, value);
return this;
}
/**
@ -142,9 +134,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.sex</code>.
*/
public VFeederRecord setSex(EnumSex value) {
public void setSex(EnumSex value) {
set(8, value);
return this;
}
/**
@ -157,9 +148,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.name</code>.
*/
public VFeederRecord setName(String value) {
public void setName(String value) {
set(9, value);
return this;
}
/**
@ -172,9 +162,8 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
/**
* Setter for <code>public.v_feeder.year</code>.
*/
public VFeederRecord setYear(Double value) {
public void setYear(Double value) {
set(10, value);
return this;
}
/**
@ -212,28 +201,6 @@ public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
setSex(sex);
setName(name);
setYear(year);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VFeederRecord
*/
public VFeederRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VFeeder value) {
super(VFeeder.V_FEEDER);
if (value != null) {
setForename(value.getForename());
setSurname(value.getSurname());
setStreet(value.getStreet());
setZip(value.getZip());
setCity(value.getCity());
setPhone(value.getPhone());
setAge(value.getAge());
setEmail(value.getEmail());
setSex(value.getSex());
setName(value.getName());
setYear(value.getYear());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -21,9 +21,8 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
/**
* Setter for <code>public.v_profile.pk</code>.
*/
public VProfileRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -36,9 +35,8 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
/**
* Setter for <code>public.v_profile.forename</code>.
*/
public VProfileRecord setForename(String value) {
public void setForename(String value) {
set(1, value);
return this;
}
/**
@ -51,9 +49,8 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
/**
* Setter for <code>public.v_profile.surname</code>.
*/
public VProfileRecord setSurname(String value) {
public void setSurname(String value) {
set(2, value);
return this;
}
/**
@ -66,9 +63,8 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
/**
* Setter for <code>public.v_profile.username</code>.
*/
public VProfileRecord setUsername(String value) {
public void setUsername(String value) {
set(3, value);
return this;
}
/**
@ -81,9 +77,8 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
/**
* Setter for <code>public.v_profile.password</code>.
*/
public VProfileRecord setPassword(String value) {
public void setPassword(String value) {
set(4, value);
return this;
}
/**
@ -96,9 +91,8 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
/**
* Setter for <code>public.v_profile.uuid</code>.
*/
public VProfileRecord setUuid(String value) {
public void setUuid(String value) {
set(5, value);
return this;
}
/**
@ -111,9 +105,8 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
/**
* Setter for <code>public.v_profile.roles</code>.
*/
public VProfileRecord setRoles(EnumRole[] value) {
public void setRoles(EnumRole[] value) {
set(6, value);
return this;
}
/**
@ -147,24 +140,6 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
setPassword(password);
setUuid(uuid);
setRoles(roles);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VProfileRecord
*/
public VProfileRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VProfile value) {
super(VProfile.V_PROFILE);
if (value != null) {
setPk(value.getPk());
setForename(value.getForename());
setSurname(value.getSurname());
setUsername(value.getUsername());
setPassword(value.getPassword());
setUuid(value.getUuid());
setRoles(value.getRoles());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -23,9 +23,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.pk</code>.
*/
public VRegistrationRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -38,9 +37,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.forename</code>.
*/
public VRegistrationRecord setForename(String value) {
public void setForename(String value) {
set(1, value);
return this;
}
/**
@ -53,9 +51,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.surname</code>.
*/
public VRegistrationRecord setSurname(String value) {
public void setSurname(String value) {
set(2, value);
return this;
}
/**
@ -68,9 +65,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.street</code>.
*/
public VRegistrationRecord setStreet(String value) {
public void setStreet(String value) {
set(3, value);
return this;
}
/**
@ -83,9 +79,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.zip</code>.
*/
public VRegistrationRecord setZip(String value) {
public void setZip(String value) {
set(4, value);
return this;
}
/**
@ -98,9 +93,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.city</code>.
*/
public VRegistrationRecord setCity(String value) {
public void setCity(String value) {
set(5, value);
return this;
}
/**
@ -113,9 +107,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.phone</code>.
*/
public VRegistrationRecord setPhone(String value) {
public void setPhone(String value) {
set(6, value);
return this;
}
/**
@ -128,9 +121,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.birthdate</code>.
*/
public VRegistrationRecord setBirthdate(LocalDate value) {
public void setBirthdate(LocalDate value) {
set(7, value);
return this;
}
/**
@ -143,9 +135,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.camprole</code>.
*/
public VRegistrationRecord setCamprole(EnumCamprole value) {
public void setCamprole(EnumCamprole value) {
set(8, value);
return this;
}
/**
@ -158,9 +149,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.email</code>.
*/
public VRegistrationRecord setEmail(String value) {
public void setEmail(String value) {
set(9, value);
return this;
}
/**
@ -173,9 +163,8 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
/**
* Setter for <code>public.v_registration.campname</code>.
*/
public VRegistrationRecord setCampname(String value) {
public void setCampname(String value) {
set(10, value);
return this;
}
/**
@ -213,28 +202,6 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
setCamprole(camprole);
setEmail(email);
setCampname(campname);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VRegistrationRecord
*/
public VRegistrationRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VRegistration value) {
super(VRegistration.V_REGISTRATION);
if (value != null) {
setPk(value.getPk());
setForename(value.getForename());
setSurname(value.getSurname());
setStreet(value.getStreet());
setZip(value.getZip());
setCity(value.getCity());
setPhone(value.getPhone());
setBirthdate(value.getBirthdate());
setCamprole(value.getCamprole());
setEmail(value.getEmail());
setCampname(value.getCampname());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -21,9 +21,8 @@ public class VRoleRecord extends TableRecordImpl<VRoleRecord> {
/**
* Setter for <code>public.v_role.unnest</code>.
*/
public VRoleRecord setUnnest(EnumRole value) {
public void setUnnest(EnumRole value) {
set(0, value);
return this;
}
/**
@ -51,18 +50,6 @@ public class VRoleRecord extends TableRecordImpl<VRoleRecord> {
super(VRole.V_ROLE);
setUnnest(unnest);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VRoleRecord
*/
public VRoleRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VRole value) {
super(VRole.V_ROLE);
if (value != null) {
setUnnest(value.getUnnest());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -23,9 +23,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.pk</code>.
*/
public VSalesRecord setPk(Integer value) {
public void setPk(Integer value) {
set(0, value);
return this;
}
/**
@ -38,9 +37,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.trader</code>.
*/
public VSalesRecord setTrader(String value) {
public void setTrader(String value) {
set(1, value);
return this;
}
/**
@ -53,9 +51,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.fk_camp</code>.
*/
public VSalesRecord setFkCamp(Integer value) {
public void setFkCamp(Integer value) {
set(2, value);
return this;
}
/**
@ -68,9 +65,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.name</code>.
*/
public VSalesRecord setName(String value) {
public void setName(String value) {
set(3, value);
return this;
}
/**
@ -83,9 +79,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.fk_location</code>.
*/
public VSalesRecord setFkLocation(Integer value) {
public void setFkLocation(Integer value) {
set(4, value);
return this;
}
/**
@ -98,9 +93,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.location</code>.
*/
public VSalesRecord setLocation(String value) {
public void setLocation(String value) {
set(5, value);
return this;
}
/**
@ -113,9 +107,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.incredients</code>.
*/
public VSalesRecord setIncredients(String value) {
public void setIncredients(String value) {
set(6, value);
return this;
}
/**
@ -128,9 +121,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.year</code>.
*/
public VSalesRecord setYear(Double value) {
public void setYear(Double value) {
set(7, value);
return this;
}
/**
@ -143,9 +135,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.fk_sales</code>.
*/
public VSalesRecord setFkSales(Integer value) {
public void setFkSales(Integer value) {
set(8, value);
return this;
}
/**
@ -158,9 +149,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.provider</code>.
*/
public VSalesRecord setProvider(String value) {
public void setProvider(String value) {
set(9, value);
return this;
}
/**
@ -173,9 +163,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.cash</code>.
*/
public VSalesRecord setCash(BigDecimal value) {
public void setCash(BigDecimal value) {
set(10, value);
return this;
}
/**
@ -188,9 +177,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.buydate</code>.
*/
public VSalesRecord setBuydate(LocalDateTime value) {
public void setBuydate(LocalDateTime value) {
set(11, value);
return this;
}
/**
@ -203,9 +191,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.recipenumber</code>.
*/
public VSalesRecord setRecipenumber(String value) {
public void setRecipenumber(String value) {
set(12, value);
return this;
}
/**
@ -218,9 +205,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.recipeshot</code>.
*/
public VSalesRecord setRecipeshot(byte[] value) {
public void setRecipeshot(byte[] value) {
set(13, value);
return this;
}
/**
@ -233,9 +219,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.recipenote</code>.
*/
public VSalesRecord setRecipenote(String value) {
public void setRecipenote(String value) {
set(14, value);
return this;
}
/**
@ -248,9 +233,8 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
/**
* Setter for <code>public.v_sales.content</code>.
*/
public VSalesRecord setContent(String[] value) {
public void setContent(String[] value) {
set(15, value);
return this;
}
/**
@ -293,33 +277,6 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
setRecipeshot(recipeshot);
setRecipenote(recipenote);
setContent(content);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VSalesRecord
*/
public VSalesRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VSales value) {
super(VSales.V_SALES);
if (value != null) {
setPk(value.getPk());
setTrader(value.getTrader());
setFkCamp(value.getFkCamp());
setName(value.getName());
setFkLocation(value.getFkLocation());
setLocation(value.getLocation());
setIncredients(value.getIncredients());
setYear(value.getYear());
setFkSales(value.getFkSales());
setProvider(value.getProvider());
setCash(value.getCash());
setBuydate(value.getBuydate());
setRecipenumber(value.getRecipenumber());
setRecipeshot(value.getRecipeshot());
setRecipenote(value.getRecipenote());
setContent(value.getContent());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}

View File

@ -20,9 +20,8 @@ public class VVersionRecord extends TableRecordImpl<VVersionRecord> {
/**
* Setter for <code>public.v_version.version</code>.
*/
public VVersionRecord setVersion(String value) {
public void setVersion(String value) {
set(0, value);
return this;
}
/**
@ -50,18 +49,6 @@ public class VVersionRecord extends TableRecordImpl<VVersionRecord> {
super(VVersion.V_VERSION);
setVersion(version);
resetChangedOnNotNull();
}
/**
* Create a detached, initialised VVersionRecord
*/
public VVersionRecord(de.jottyfan.camporganizer.db.jooq.tables.pojos.VVersion value) {
super(VVersion.V_VERSION);
if (value != null) {
setVersion(value.getVersion());
resetChangedOnNotNull();
}
resetTouchedOnNotNull();
}
}