preparation for bed overview
This commit is contained in:
parent
3890720dae
commit
a6b09fc88b
@ -6,7 +6,13 @@
|
||||
<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-11/"/>
|
||||
<classpathentry kind="src" output="bin/main" path="src/main/resources">
|
||||
<attributes>
|
||||
<attribute name="gradle_scope" value="main"/>
|
||||
<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.buildship.core.gradleclasspathcontainer"/>
|
||||
<classpathentry kind="output" path="bin/default"/>
|
||||
</classpath>
|
||||
|
@ -1,2 +1,13 @@
|
||||
arguments=
|
||||
auto.sync=false
|
||||
build.scans.enabled=false
|
||||
connection.gradle.distribution=GRADLE_DISTRIBUTION(WRAPPER)
|
||||
connection.project.dir=
|
||||
eclipse.preferences.version=1
|
||||
gradle.user.home=
|
||||
java.home=
|
||||
jvm.arguments=
|
||||
offline.mode=false
|
||||
override.workspace.settings=false
|
||||
show.console.view=false
|
||||
show.executions.view=false
|
||||
|
@ -1,4 +1,4 @@
|
||||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
|
||||
org.eclipse.jdt.core.compiler.compliance=11
|
||||
org.eclipse.jdt.core.compiler.source=11
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
|
||||
org.eclipse.jdt.core.compiler.compliance=17
|
||||
org.eclipse.jdt.core.compiler.source=17
|
||||
|
@ -22,7 +22,7 @@ apply plugin: 'java'
|
||||
apply plugin: 'maven-publish'
|
||||
|
||||
group = 'de.jottyfan'
|
||||
version = '2023.12.1'
|
||||
version = '2024.02.22'
|
||||
|
||||
description = """COJooq"""
|
||||
|
||||
@ -56,7 +56,7 @@ jooq {
|
||||
logging = Logging.WARN
|
||||
jdbc {
|
||||
driver = 'org.postgresql.Driver'
|
||||
url = 'jdbc:postgresql://localhost:5432/testcamporganizer'
|
||||
url = 'jdbc:postgresql://localhost:5432/camporganizer'
|
||||
user = 'jooq'
|
||||
password = 'jooq'
|
||||
properties {
|
||||
@ -70,7 +70,7 @@ jooq {
|
||||
name = 'org.jooq.codegen.DefaultGenerator'
|
||||
database {
|
||||
name = 'org.jooq.meta.postgres.PostgresDatabase'
|
||||
inputSchema = 'camp'
|
||||
inputSchema = 'public'
|
||||
}
|
||||
generate {
|
||||
deprecated = false
|
||||
|
@ -26,9 +26,9 @@ public class DefaultCatalog extends CatalogImpl {
|
||||
public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();
|
||||
|
||||
/**
|
||||
* The schema <code>camp</code>.
|
||||
* The schema <code>public</code>.
|
||||
*/
|
||||
public final Camp CAMP = Camp.CAMP;
|
||||
public final Public PUBLIC = Public.PUBLIC;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
@ -40,7 +40,7 @@ public class DefaultCatalog extends CatalogImpl {
|
||||
@Override
|
||||
public final List<Schema> getSchemas() {
|
||||
return Arrays.asList(
|
||||
Camp.CAMP
|
||||
Public.PUBLIC
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -42,7 +42,7 @@ import org.jooq.impl.Internal;
|
||||
|
||||
/**
|
||||
* A class modelling foreign key relationships and constraints of tables in
|
||||
* camp.
|
||||
* public.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Keys {
|
||||
@ -52,8 +52,8 @@ public class Keys {
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final UniqueKey<TCampRecord> T_CAMP_PKEY = Internal.createUniqueKey(TCamp.T_CAMP, DSL.name("t_camp_pkey"), new TableField[] { TCamp.T_CAMP.PK }, true);
|
||||
public static final UniqueKey<TCampdocumentRecord> T_CAMPDOCUMENT_FK_CAMP_FK_DOCUMENT_KEY = Internal.createUniqueKey(TCampdocument.T_CAMPDOCUMENT, DSL.name("t_campdocument_fk_camp_fk_document_key"), new TableField[] { TCampdocument.T_CAMPDOCUMENT.FK_CAMP, TCampdocument.T_CAMPDOCUMENT.FK_DOCUMENT }, true);
|
||||
public static final UniqueKey<TCampdocumentRecord> T_CAMPDOCUMENT_PKEY = Internal.createUniqueKey(TCampdocument.T_CAMPDOCUMENT, DSL.name("t_campdocument_pkey"), new TableField[] { TCampdocument.T_CAMPDOCUMENT.PK }, true);
|
||||
public static final UniqueKey<TCampdocumentRecord> UK_CAMPDOCUMENT = Internal.createUniqueKey(TCampdocument.T_CAMPDOCUMENT, DSL.name("uk_campdocument"), new TableField[] { TCampdocument.T_CAMPDOCUMENT.FK_CAMP, TCampdocument.T_CAMPDOCUMENT.FK_DOCUMENT }, true);
|
||||
public static final UniqueKey<TCampprofileRecord> T_CAMPPROFILE_FK_PROFILE_FK_CAMP_MODULE_KEY = Internal.createUniqueKey(TCampprofile.T_CAMPPROFILE, DSL.name("t_campprofile_fk_profile_fk_camp_module_key"), new TableField[] { TCampprofile.T_CAMPPROFILE.FK_PROFILE, TCampprofile.T_CAMPPROFILE.FK_CAMP, TCampprofile.T_CAMPPROFILE.MODULE }, true);
|
||||
public static final UniqueKey<TCampprofileRecord> T_CAMPPROFILE_PKEY = Internal.createUniqueKey(TCampprofile.T_CAMPPROFILE, DSL.name("t_campprofile_pkey"), new TableField[] { TCampprofile.T_CAMPPROFILE.PK }, true);
|
||||
public static final UniqueKey<TDocumentRecord> T_DOCUMENT_NAME_KEY = Internal.createUniqueKey(TDocument.T_DOCUMENT, DSL.name("t_document_name_key"), new TableField[] { TDocument.T_DOCUMENT.NAME }, true);
|
||||
@ -61,8 +61,8 @@ public class Keys {
|
||||
public static final UniqueKey<TDocumentroleRecord> T_DOCUMENTROLE_FK_DOCUMENT_CAMPROLE_KEY = Internal.createUniqueKey(TDocumentrole.T_DOCUMENTROLE, DSL.name("t_documentrole_fk_document_camprole_key"), new TableField[] { TDocumentrole.T_DOCUMENTROLE.FK_DOCUMENT, TDocumentrole.T_DOCUMENTROLE.CAMPROLE }, true);
|
||||
public static final UniqueKey<TDocumentroleRecord> T_DOCUMENTROLE_PKEY = Internal.createUniqueKey(TDocumentrole.T_DOCUMENTROLE, DSL.name("t_documentrole_pkey"), new TableField[] { TDocumentrole.T_DOCUMENTROLE.PK }, true);
|
||||
public static final UniqueKey<TLocationRecord> T_LOCATION_PKEY = Internal.createUniqueKey(TLocation.T_LOCATION, DSL.name("t_location_pkey"), new TableField[] { TLocation.T_LOCATION.PK }, true);
|
||||
public static final UniqueKey<TPersonRecord> T_PERSON_FORENAME_SURNAME_BIRTHDATE_FK_CAMP_KEY = Internal.createUniqueKey(TPerson.T_PERSON, DSL.name("t_person_forename_surname_birthdate_fk_camp_key"), new TableField[] { TPerson.T_PERSON.FORENAME, TPerson.T_PERSON.SURNAME, TPerson.T_PERSON.BIRTHDATE, TPerson.T_PERSON.FK_CAMP }, true);
|
||||
public static final UniqueKey<TPersonRecord> T_PERSON_PKEY = Internal.createUniqueKey(TPerson.T_PERSON, DSL.name("t_person_pkey"), new TableField[] { TPerson.T_PERSON.PK }, true);
|
||||
public static final UniqueKey<TPersonRecord> UK_PERSON = Internal.createUniqueKey(TPerson.T_PERSON, DSL.name("uk_person"), new TableField[] { TPerson.T_PERSON.FORENAME, TPerson.T_PERSON.SURNAME, TPerson.T_PERSON.BIRTHDATE, TPerson.T_PERSON.FK_CAMP }, true);
|
||||
public static final UniqueKey<TPersondocumentRecord> T_PERSONDOCUMENT_FK_PERSON_NAME_KEY = Internal.createUniqueKey(TPersondocument.T_PERSONDOCUMENT, DSL.name("t_persondocument_fk_person_name_key"), new TableField[] { TPersondocument.T_PERSONDOCUMENT.FK_PERSON, TPersondocument.T_PERSONDOCUMENT.NAME }, true);
|
||||
public static final UniqueKey<TPersondocumentRecord> T_PERSONDOCUMENT_PKEY = Internal.createUniqueKey(TPersondocument.T_PERSONDOCUMENT, DSL.name("t_persondocument_pkey"), new TableField[] { TPersondocument.T_PERSONDOCUMENT.PK }, true);
|
||||
public static final UniqueKey<TProfileRecord> T_PROFILE_PKEY = Internal.createUniqueKey(TProfile.T_PROFILE, DSL.name("t_profile_pkey"), new TableField[] { TProfile.T_PROFILE.PK }, true);
|
||||
@ -93,4 +93,6 @@ public class Keys {
|
||||
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);
|
||||
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);
|
||||
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);
|
||||
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);
|
||||
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);
|
||||
}
|
||||
|
@ -18,6 +18,7 @@ import de.jottyfan.camporganizer.db.jooq.tables.TRss;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.TSales;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontent;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontenttype;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VAdult;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VBudget;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCamp;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCampBudget;
|
||||
@ -25,6 +26,8 @@ import de.jottyfan.camporganizer.db.jooq.tables.VCampBudgetYear;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCampdocument;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VDocument;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VDsgvoDeleteCandidate;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VFeeder;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VProfile;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VRegistration;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VRole;
|
||||
@ -43,150 +46,165 @@ import org.jooq.impl.SchemaImpl;
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Camp extends SchemaImpl {
|
||||
public class Public extends SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp</code>
|
||||
* The reference instance of <code>public</code>
|
||||
*/
|
||||
public static final Camp CAMP = new Camp();
|
||||
public static final Public PUBLIC = new Public();
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_camp</code>.
|
||||
* The table <code>public.t_camp</code>.
|
||||
*/
|
||||
public final TCamp T_CAMP = TCamp.T_CAMP;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_campdocument</code>.
|
||||
* The table <code>public.t_campdocument</code>.
|
||||
*/
|
||||
public final TCampdocument T_CAMPDOCUMENT = TCampdocument.T_CAMPDOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_campprofile</code>.
|
||||
* The table <code>public.t_campprofile</code>.
|
||||
*/
|
||||
public final TCampprofile T_CAMPPROFILE = TCampprofile.T_CAMPPROFILE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_document</code>.
|
||||
* The table <code>public.t_document</code>.
|
||||
*/
|
||||
public final TDocument T_DOCUMENT = TDocument.T_DOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_documentrole</code>.
|
||||
* The table <code>public.t_documentrole</code>.
|
||||
*/
|
||||
public final TDocumentrole T_DOCUMENTROLE = TDocumentrole.T_DOCUMENTROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_location</code>.
|
||||
* The table <code>public.t_location</code>.
|
||||
*/
|
||||
public final TLocation T_LOCATION = TLocation.T_LOCATION;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_person</code>.
|
||||
* The table <code>public.t_person</code>.
|
||||
*/
|
||||
public final TPerson T_PERSON = TPerson.T_PERSON;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_persondocument</code>.
|
||||
* The table <code>public.t_persondocument</code>.
|
||||
*/
|
||||
public final TPersondocument T_PERSONDOCUMENT = TPersondocument.T_PERSONDOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_profile</code>.
|
||||
* The table <code>public.t_profile</code>.
|
||||
*/
|
||||
public final TProfile T_PROFILE = TProfile.T_PROFILE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_profilerole</code>.
|
||||
* The table <code>public.t_profilerole</code>.
|
||||
*/
|
||||
public final TProfilerole T_PROFILEROLE = TProfilerole.T_PROFILEROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_rss</code>.
|
||||
* The table <code>public.t_rss</code>.
|
||||
*/
|
||||
public final TRss T_RSS = TRss.T_RSS;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_sales</code>.
|
||||
* The table <code>public.t_sales</code>.
|
||||
*/
|
||||
public final TSales T_SALES = TSales.T_SALES;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_salescontent</code>.
|
||||
* The table <code>public.t_salescontent</code>.
|
||||
*/
|
||||
public final TSalescontent T_SALESCONTENT = TSalescontent.T_SALESCONTENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_salescontenttype</code>.
|
||||
* The table <code>public.t_salescontenttype</code>.
|
||||
*/
|
||||
public final TSalescontenttype T_SALESCONTENTTYPE = TSalescontenttype.T_SALESCONTENTTYPE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_budget</code>.
|
||||
* The table <code>public.v_adult</code>.
|
||||
*/
|
||||
public final VAdult V_ADULT = VAdult.V_ADULT;
|
||||
|
||||
/**
|
||||
* The table <code>public.v_budget</code>.
|
||||
*/
|
||||
public final VBudget V_BUDGET = VBudget.V_BUDGET;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camp</code>.
|
||||
* The table <code>public.v_camp</code>.
|
||||
*/
|
||||
public final VCamp V_CAMP = VCamp.V_CAMP;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camp_budget</code>.
|
||||
* The table <code>public.v_camp_budget</code>.
|
||||
*/
|
||||
public final VCampBudget V_CAMP_BUDGET = VCampBudget.V_CAMP_BUDGET;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camp_budget_year</code>.
|
||||
* The table <code>public.v_camp_budget_year</code>.
|
||||
*/
|
||||
public final VCampBudgetYear V_CAMP_BUDGET_YEAR = VCampBudgetYear.V_CAMP_BUDGET_YEAR;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_campdocument</code>.
|
||||
* The table <code>public.v_campdocument</code>.
|
||||
*/
|
||||
public final VCampdocument V_CAMPDOCUMENT = VCampdocument.V_CAMPDOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camprole</code>.
|
||||
* The table <code>public.v_camprole</code>.
|
||||
*/
|
||||
public final VCamprole V_CAMPROLE = VCamprole.V_CAMPROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_document</code>.
|
||||
* The table <code>public.v_document</code>.
|
||||
*/
|
||||
public final VDocument V_DOCUMENT = VDocument.V_DOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_profile</code>.
|
||||
* The table <code>public.v_dsgvo_delete_candidate</code>.
|
||||
*/
|
||||
public final VDsgvoDeleteCandidate V_DSGVO_DELETE_CANDIDATE = VDsgvoDeleteCandidate.V_DSGVO_DELETE_CANDIDATE;
|
||||
|
||||
/**
|
||||
* The table <code>public.v_feeder</code>.
|
||||
*/
|
||||
public final VFeeder V_FEEDER = VFeeder.V_FEEDER;
|
||||
|
||||
/**
|
||||
* The table <code>public.v_profile</code>.
|
||||
*/
|
||||
public final VProfile V_PROFILE = VProfile.V_PROFILE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_registration</code>.
|
||||
* The table <code>public.v_registration</code>.
|
||||
*/
|
||||
public final VRegistration V_REGISTRATION = VRegistration.V_REGISTRATION;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_role</code>.
|
||||
* The table <code>public.v_role</code>.
|
||||
*/
|
||||
public final VRole V_ROLE = VRole.V_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_sales</code>.
|
||||
* The table <code>public.v_sales</code>.
|
||||
*/
|
||||
public final VSales V_SALES = VSales.V_SALES;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_version</code>.
|
||||
* The table <code>public.v_version</code>.
|
||||
*/
|
||||
public final VVersion V_VERSION = VVersion.V_VERSION;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private Camp() {
|
||||
super("camp", null);
|
||||
private Public() {
|
||||
super("public", null);
|
||||
}
|
||||
|
||||
|
||||
@ -212,6 +230,7 @@ public class Camp extends SchemaImpl {
|
||||
TSales.T_SALES,
|
||||
TSalescontent.T_SALESCONTENT,
|
||||
TSalescontenttype.T_SALESCONTENTTYPE,
|
||||
VAdult.V_ADULT,
|
||||
VBudget.V_BUDGET,
|
||||
VCamp.V_CAMP,
|
||||
VCampBudget.V_CAMP_BUDGET,
|
||||
@ -219,6 +238,8 @@ public class Camp extends SchemaImpl {
|
||||
VCampdocument.V_CAMPDOCUMENT,
|
||||
VCamprole.V_CAMPROLE,
|
||||
VDocument.V_DOCUMENT,
|
||||
VDsgvoDeleteCandidate.V_DSGVO_DELETE_CANDIDATE,
|
||||
VFeeder.V_FEEDER,
|
||||
VProfile.V_PROFILE,
|
||||
VRegistration.V_REGISTRATION,
|
||||
VRole.V_ROLE,
|
@ -18,6 +18,7 @@ import de.jottyfan.camporganizer.db.jooq.tables.TRss;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.TSales;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontent;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.TSalescontenttype;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VAdult;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VBudget;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCamp;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCampBudget;
|
||||
@ -25,6 +26,8 @@ import de.jottyfan.camporganizer.db.jooq.tables.VCampBudgetYear;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCampdocument;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VDocument;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VDsgvoDeleteCandidate;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VFeeder;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VProfile;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VRegistration;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VRole;
|
||||
@ -33,138 +36,153 @@ import de.jottyfan.camporganizer.db.jooq.tables.VVersion;
|
||||
|
||||
|
||||
/**
|
||||
* Convenience access to all tables in camp.
|
||||
* Convenience access to all tables in public.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Tables {
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_camp</code>.
|
||||
* The table <code>public.t_camp</code>.
|
||||
*/
|
||||
public static final TCamp T_CAMP = TCamp.T_CAMP;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_campdocument</code>.
|
||||
* The table <code>public.t_campdocument</code>.
|
||||
*/
|
||||
public static final TCampdocument T_CAMPDOCUMENT = TCampdocument.T_CAMPDOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_campprofile</code>.
|
||||
* The table <code>public.t_campprofile</code>.
|
||||
*/
|
||||
public static final TCampprofile T_CAMPPROFILE = TCampprofile.T_CAMPPROFILE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_document</code>.
|
||||
* The table <code>public.t_document</code>.
|
||||
*/
|
||||
public static final TDocument T_DOCUMENT = TDocument.T_DOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_documentrole</code>.
|
||||
* The table <code>public.t_documentrole</code>.
|
||||
*/
|
||||
public static final TDocumentrole T_DOCUMENTROLE = TDocumentrole.T_DOCUMENTROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_location</code>.
|
||||
* The table <code>public.t_location</code>.
|
||||
*/
|
||||
public static final TLocation T_LOCATION = TLocation.T_LOCATION;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_person</code>.
|
||||
* The table <code>public.t_person</code>.
|
||||
*/
|
||||
public static final TPerson T_PERSON = TPerson.T_PERSON;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_persondocument</code>.
|
||||
* The table <code>public.t_persondocument</code>.
|
||||
*/
|
||||
public static final TPersondocument T_PERSONDOCUMENT = TPersondocument.T_PERSONDOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_profile</code>.
|
||||
* The table <code>public.t_profile</code>.
|
||||
*/
|
||||
public static final TProfile T_PROFILE = TProfile.T_PROFILE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_profilerole</code>.
|
||||
* The table <code>public.t_profilerole</code>.
|
||||
*/
|
||||
public static final TProfilerole T_PROFILEROLE = TProfilerole.T_PROFILEROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_rss</code>.
|
||||
* The table <code>public.t_rss</code>.
|
||||
*/
|
||||
public static final TRss T_RSS = TRss.T_RSS;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_sales</code>.
|
||||
* The table <code>public.t_sales</code>.
|
||||
*/
|
||||
public static final TSales T_SALES = TSales.T_SALES;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_salescontent</code>.
|
||||
* The table <code>public.t_salescontent</code>.
|
||||
*/
|
||||
public static final TSalescontent T_SALESCONTENT = TSalescontent.T_SALESCONTENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.t_salescontenttype</code>.
|
||||
* The table <code>public.t_salescontenttype</code>.
|
||||
*/
|
||||
public static final TSalescontenttype T_SALESCONTENTTYPE = TSalescontenttype.T_SALESCONTENTTYPE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_budget</code>.
|
||||
* The table <code>public.v_adult</code>.
|
||||
*/
|
||||
public static final VAdult V_ADULT = VAdult.V_ADULT;
|
||||
|
||||
/**
|
||||
* The table <code>public.v_budget</code>.
|
||||
*/
|
||||
public static final VBudget V_BUDGET = VBudget.V_BUDGET;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camp</code>.
|
||||
* The table <code>public.v_camp</code>.
|
||||
*/
|
||||
public static final VCamp V_CAMP = VCamp.V_CAMP;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camp_budget</code>.
|
||||
* The table <code>public.v_camp_budget</code>.
|
||||
*/
|
||||
public static final VCampBudget V_CAMP_BUDGET = VCampBudget.V_CAMP_BUDGET;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camp_budget_year</code>.
|
||||
* The table <code>public.v_camp_budget_year</code>.
|
||||
*/
|
||||
public static final VCampBudgetYear V_CAMP_BUDGET_YEAR = VCampBudgetYear.V_CAMP_BUDGET_YEAR;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_campdocument</code>.
|
||||
* The table <code>public.v_campdocument</code>.
|
||||
*/
|
||||
public static final VCampdocument V_CAMPDOCUMENT = VCampdocument.V_CAMPDOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_camprole</code>.
|
||||
* The table <code>public.v_camprole</code>.
|
||||
*/
|
||||
public static final VCamprole V_CAMPROLE = VCamprole.V_CAMPROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_document</code>.
|
||||
* The table <code>public.v_document</code>.
|
||||
*/
|
||||
public static final VDocument V_DOCUMENT = VDocument.V_DOCUMENT;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_profile</code>.
|
||||
* The table <code>public.v_dsgvo_delete_candidate</code>.
|
||||
*/
|
||||
public static final VDsgvoDeleteCandidate V_DSGVO_DELETE_CANDIDATE = VDsgvoDeleteCandidate.V_DSGVO_DELETE_CANDIDATE;
|
||||
|
||||
/**
|
||||
* The table <code>public.v_feeder</code>.
|
||||
*/
|
||||
public static final VFeeder V_FEEDER = VFeeder.V_FEEDER;
|
||||
|
||||
/**
|
||||
* The table <code>public.v_profile</code>.
|
||||
*/
|
||||
public static final VProfile V_PROFILE = VProfile.V_PROFILE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_registration</code>.
|
||||
* The table <code>public.v_registration</code>.
|
||||
*/
|
||||
public static final VRegistration V_REGISTRATION = VRegistration.V_REGISTRATION;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_role</code>.
|
||||
* The table <code>public.v_role</code>.
|
||||
*/
|
||||
public static final VRole V_ROLE = VRole.V_ROLE;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_sales</code>.
|
||||
* The table <code>public.v_sales</code>.
|
||||
*/
|
||||
public static final VSales V_SALES = VSales.V_SALES;
|
||||
|
||||
/**
|
||||
* The table <code>camp.v_version</code>.
|
||||
* The table <code>public.v_version</code>.
|
||||
*/
|
||||
public static final VVersion V_VERSION = VVersion.V_VERSION;
|
||||
}
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.enums;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.EnumType;
|
||||
@ -40,7 +40,7 @@ public enum EnumCamprole implements EnumType {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return Camp.CAMP;
|
||||
return Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.enums;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.EnumType;
|
||||
@ -36,7 +36,7 @@ public enum EnumDocument implements EnumType {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return Camp.CAMP;
|
||||
return Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.enums;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.EnumType;
|
||||
@ -36,7 +36,7 @@ public enum EnumFiletype implements EnumType {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return Camp.CAMP;
|
||||
return Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.enums;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.EnumType;
|
||||
@ -34,7 +34,7 @@ public enum EnumModule implements EnumType {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return Camp.CAMP;
|
||||
return Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.enums;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.EnumType;
|
||||
@ -42,7 +42,7 @@ public enum EnumRole implements EnumType {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return Camp.CAMP;
|
||||
return Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.enums;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.EnumType;
|
||||
@ -34,7 +34,7 @@ public enum EnumSex implements EnumType {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return Camp.CAMP;
|
||||
return Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -52,7 +52,7 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_camp</code>
|
||||
* The reference instance of <code>public.t_camp</code>
|
||||
*/
|
||||
public static final TCamp T_CAMP = new TCamp();
|
||||
|
||||
@ -65,65 +65,85 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_camp.pk</code>.
|
||||
* 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>camp.t_camp.name</code>.
|
||||
* 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>camp.t_camp.arrive</code>.
|
||||
* 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>camp.t_camp.depart</code>.
|
||||
* 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>camp.t_camp.fk_location</code>.
|
||||
* 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>camp.t_camp.min_age</code>.
|
||||
* 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>camp.t_camp.max_age</code>.
|
||||
* 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>camp.t_camp.price</code>.
|
||||
* The column <code>public.t_camp.price</code>.
|
||||
*/
|
||||
public final TableField<TCampRecord, String> PRICE = createField(DSL.name("price"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_camp.countries</code>.
|
||||
* The column <code>public.t_camp.countries</code>.
|
||||
*/
|
||||
public final TableField<TCampRecord, String> COUNTRIES = createField(DSL.name("countries"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_camp.fk_document</code>.
|
||||
* 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>camp.t_camp.lock_sales</code>.
|
||||
* 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>camp.t_camp.fk_profile</code>.
|
||||
* 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.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.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.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.defaultValue(DSL.field(DSL.raw("0"), SQLDataType.INTEGER)), this, "");
|
||||
|
||||
private TCamp(Name alias, Table<TCampRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
@ -133,21 +153,21 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_camp</code> table reference
|
||||
* Create an aliased <code>public.t_camp</code> table reference
|
||||
*/
|
||||
public TCamp(String alias) {
|
||||
this(DSL.name(alias), T_CAMP);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_camp</code> table reference
|
||||
* Create an aliased <code>public.t_camp</code> table reference
|
||||
*/
|
||||
public TCamp(Name alias) {
|
||||
this(alias, T_CAMP);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_camp</code> table reference
|
||||
* Create a <code>public.t_camp</code> table reference
|
||||
*/
|
||||
public TCamp() {
|
||||
this(DSL.name("t_camp"), null);
|
||||
@ -186,7 +206,7 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -207,7 +227,7 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
private transient TLocationPath _tLocation;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_location</code> table.
|
||||
* Get the implicit join path to the <code>public.t_location</code> table.
|
||||
*/
|
||||
public TLocationPath tLocation() {
|
||||
if (_tLocation == null)
|
||||
@ -219,7 +239,7 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
private transient TDocumentPath _tDocument;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_document</code> table.
|
||||
* Get the implicit join path to the <code>public.t_document</code> table.
|
||||
*/
|
||||
public TDocumentPath tDocument() {
|
||||
if (_tDocument == null)
|
||||
@ -231,7 +251,7 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
private transient TProfilePath _tProfile;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_profile</code> table.
|
||||
* Get the implicit join path to the <code>public.t_profile</code> table.
|
||||
*/
|
||||
public TProfilePath tProfile() {
|
||||
if (_tProfile == null)
|
||||
@ -244,7 +264,7 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>camp.t_campdocument</code> table
|
||||
* <code>public.t_campdocument</code> table
|
||||
*/
|
||||
public TCampdocumentPath tCampdocument() {
|
||||
if (_tCampdocument == null)
|
||||
@ -256,8 +276,8 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
private transient TCampprofilePath _tCampprofile;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_campprofile</code>
|
||||
* table
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>public.t_campprofile</code> table
|
||||
*/
|
||||
public TCampprofilePath tCampprofile() {
|
||||
if (_tCampprofile == null)
|
||||
@ -269,7 +289,7 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
private transient TPersonPath _tPerson;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_person</code>
|
||||
* Get the implicit to-many join path to the <code>public.t_person</code>
|
||||
* table
|
||||
*/
|
||||
public TPersonPath tPerson() {
|
||||
@ -282,7 +302,8 @@ public class TCamp extends TableImpl<TCampRecord> {
|
||||
private transient TSalesPath _tSales;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_sales</code> table
|
||||
* Get the implicit to-many join path to the <code>public.t_sales</code>
|
||||
* table
|
||||
*/
|
||||
public TSalesPath tSales() {
|
||||
if (_tSales == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -46,7 +46,7 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_campdocument</code>
|
||||
* The reference instance of <code>public.t_campdocument</code>
|
||||
*/
|
||||
public static final TCampdocument T_CAMPDOCUMENT = new TCampdocument();
|
||||
|
||||
@ -59,17 +59,17 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_campdocument.pk</code>.
|
||||
* The column <code>public.t_campdocument.pk</code>.
|
||||
*/
|
||||
public final TableField<TCampdocumentRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_campdocument.fk_camp</code>.
|
||||
* The column <code>public.t_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<TCampdocumentRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_campdocument.fk_document</code>.
|
||||
* The column <code>public.t_campdocument.fk_document</code>.
|
||||
*/
|
||||
public final TableField<TCampdocumentRecord, Integer> FK_DOCUMENT = createField(DSL.name("fk_document"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
@ -82,21 +82,21 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_campdocument</code> table reference
|
||||
* Create an aliased <code>public.t_campdocument</code> table reference
|
||||
*/
|
||||
public TCampdocument(String alias) {
|
||||
this(DSL.name(alias), T_CAMPDOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_campdocument</code> table reference
|
||||
* Create an aliased <code>public.t_campdocument</code> table reference
|
||||
*/
|
||||
public TCampdocument(Name alias) {
|
||||
this(alias, T_CAMPDOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_campdocument</code> table reference
|
||||
* Create a <code>public.t_campdocument</code> table reference
|
||||
*/
|
||||
public TCampdocument() {
|
||||
this(DSL.name("t_campdocument"), null);
|
||||
@ -135,7 +135,7 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -150,7 +150,7 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<TCampdocumentRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.UK_CAMPDOCUMENT);
|
||||
return Arrays.asList(Keys.T_CAMPDOCUMENT_FK_CAMP_FK_DOCUMENT_KEY);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -161,7 +161,7 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
|
||||
private transient TCampPath _tCamp;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_camp</code> table.
|
||||
* Get the implicit join path to the <code>public.t_camp</code> table.
|
||||
*/
|
||||
public TCampPath tCamp() {
|
||||
if (_tCamp == null)
|
||||
@ -173,7 +173,7 @@ public class TCampdocument extends TableImpl<TCampdocumentRecord> {
|
||||
private transient TDocumentPath _tDocument;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_document</code> table.
|
||||
* Get the implicit join path to the <code>public.t_document</code> table.
|
||||
*/
|
||||
public TDocumentPath tDocument() {
|
||||
if (_tDocument == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -47,7 +47,7 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_campprofile</code>
|
||||
* The reference instance of <code>public.t_campprofile</code>
|
||||
*/
|
||||
public static final TCampprofile T_CAMPPROFILE = new TCampprofile();
|
||||
|
||||
@ -60,22 +60,22 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_campprofile.pk</code>.
|
||||
* The column <code>public.t_campprofile.pk</code>.
|
||||
*/
|
||||
public final TableField<TCampprofileRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_campprofile.fk_profile</code>.
|
||||
* The column <code>public.t_campprofile.fk_profile</code>.
|
||||
*/
|
||||
public final TableField<TCampprofileRecord, Integer> FK_PROFILE = createField(DSL.name("fk_profile"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_campprofile.fk_camp</code>.
|
||||
* The column <code>public.t_campprofile.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<TCampprofileRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_campprofile.module</code>.
|
||||
* The column <code>public.t_campprofile.module</code>.
|
||||
*/
|
||||
public final TableField<TCampprofileRecord, EnumModule> MODULE = createField(DSL.name("module"), SQLDataType.VARCHAR.nullable(false).asEnumDataType(EnumModule.class), this, "");
|
||||
|
||||
@ -88,21 +88,21 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_campprofile</code> table reference
|
||||
* Create an aliased <code>public.t_campprofile</code> table reference
|
||||
*/
|
||||
public TCampprofile(String alias) {
|
||||
this(DSL.name(alias), T_CAMPPROFILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_campprofile</code> table reference
|
||||
* Create an aliased <code>public.t_campprofile</code> table reference
|
||||
*/
|
||||
public TCampprofile(Name alias) {
|
||||
this(alias, T_CAMPPROFILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_campprofile</code> table reference
|
||||
* Create a <code>public.t_campprofile</code> table reference
|
||||
*/
|
||||
public TCampprofile() {
|
||||
this(DSL.name("t_campprofile"), null);
|
||||
@ -141,7 +141,7 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -167,7 +167,7 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
|
||||
private transient TProfilePath _tProfile;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_profile</code> table.
|
||||
* Get the implicit join path to the <code>public.t_profile</code> table.
|
||||
*/
|
||||
public TProfilePath tProfile() {
|
||||
if (_tProfile == null)
|
||||
@ -179,7 +179,7 @@ public class TCampprofile extends TableImpl<TCampprofileRecord> {
|
||||
private transient TCampPath _tCamp;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_camp</code> table.
|
||||
* Get the implicit join path to the <code>public.t_camp</code> table.
|
||||
*/
|
||||
public TCampPath tCamp() {
|
||||
if (_tCamp == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -50,7 +50,7 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_document</code>
|
||||
* The reference instance of <code>public.t_document</code>
|
||||
*/
|
||||
public static final TDocument T_DOCUMENT = new TDocument();
|
||||
|
||||
@ -63,27 +63,27 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_document.pk</code>.
|
||||
* The column <code>public.t_document.pk</code>.
|
||||
*/
|
||||
public final TableField<TDocumentRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_document.doctype</code>.
|
||||
* The column <code>public.t_document.doctype</code>.
|
||||
*/
|
||||
public final TableField<TDocumentRecord, EnumDocument> DOCTYPE = createField(DSL.name("doctype"), SQLDataType.VARCHAR.asEnumDataType(EnumDocument.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_document.name</code>.
|
||||
* The column <code>public.t_document.name</code>.
|
||||
*/
|
||||
public final TableField<TDocumentRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_document.document</code>.
|
||||
* The column <code>public.t_document.document</code>.
|
||||
*/
|
||||
public final TableField<TDocumentRecord, String> DOCUMENT = createField(DSL.name("document"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_document.filetype</code>.
|
||||
* The column <code>public.t_document.filetype</code>.
|
||||
*/
|
||||
public final TableField<TDocumentRecord, EnumFiletype> FILETYPE = createField(DSL.name("filetype"), SQLDataType.VARCHAR.asEnumDataType(EnumFiletype.class), this, "");
|
||||
|
||||
@ -96,21 +96,21 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_document</code> table reference
|
||||
* Create an aliased <code>public.t_document</code> table reference
|
||||
*/
|
||||
public TDocument(String alias) {
|
||||
this(DSL.name(alias), T_DOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_document</code> table reference
|
||||
* Create an aliased <code>public.t_document</code> table reference
|
||||
*/
|
||||
public TDocument(Name alias) {
|
||||
this(alias, T_DOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_document</code> table reference
|
||||
* Create a <code>public.t_document</code> table reference
|
||||
*/
|
||||
public TDocument() {
|
||||
this(DSL.name("t_document"), null);
|
||||
@ -149,7 +149,7 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -170,7 +170,8 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
private transient TCampPath _tCamp;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_camp</code> table
|
||||
* Get the implicit to-many join path to the <code>public.t_camp</code>
|
||||
* table
|
||||
*/
|
||||
public TCampPath tCamp() {
|
||||
if (_tCamp == null)
|
||||
@ -183,7 +184,7 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>camp.t_campdocument</code> table
|
||||
* <code>public.t_campdocument</code> table
|
||||
*/
|
||||
public TCampdocumentPath tCampdocument() {
|
||||
if (_tCampdocument == null)
|
||||
@ -196,7 +197,7 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>camp.t_documentrole</code> table
|
||||
* <code>public.t_documentrole</code> table
|
||||
*/
|
||||
public TDocumentrolePath tDocumentrole() {
|
||||
if (_tDocumentrole == null)
|
||||
@ -208,7 +209,7 @@ public class TDocument extends TableImpl<TDocumentRecord> {
|
||||
private transient TLocationPath _tLocation;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_location</code>
|
||||
* Get the implicit to-many join path to the <code>public.t_location</code>
|
||||
* table
|
||||
*/
|
||||
public TLocationPath tLocation() {
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -46,7 +46,7 @@ public class TDocumentrole extends TableImpl<TDocumentroleRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_documentrole</code>
|
||||
* The reference instance of <code>public.t_documentrole</code>
|
||||
*/
|
||||
public static final TDocumentrole T_DOCUMENTROLE = new TDocumentrole();
|
||||
|
||||
@ -59,17 +59,17 @@ public class TDocumentrole extends TableImpl<TDocumentroleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_documentrole.pk</code>.
|
||||
* The column <code>public.t_documentrole.pk</code>.
|
||||
*/
|
||||
public final TableField<TDocumentroleRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_documentrole.fk_document</code>.
|
||||
* The column <code>public.t_documentrole.fk_document</code>.
|
||||
*/
|
||||
public final TableField<TDocumentroleRecord, Integer> FK_DOCUMENT = createField(DSL.name("fk_document"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_documentrole.camprole</code>.
|
||||
* The column <code>public.t_documentrole.camprole</code>.
|
||||
*/
|
||||
public final TableField<TDocumentroleRecord, EnumCamprole> CAMPROLE = createField(DSL.name("camprole"), SQLDataType.VARCHAR.nullable(false).asEnumDataType(EnumCamprole.class), this, "");
|
||||
|
||||
@ -82,21 +82,21 @@ public class TDocumentrole extends TableImpl<TDocumentroleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_documentrole</code> table reference
|
||||
* Create an aliased <code>public.t_documentrole</code> table reference
|
||||
*/
|
||||
public TDocumentrole(String alias) {
|
||||
this(DSL.name(alias), T_DOCUMENTROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_documentrole</code> table reference
|
||||
* Create an aliased <code>public.t_documentrole</code> table reference
|
||||
*/
|
||||
public TDocumentrole(Name alias) {
|
||||
this(alias, T_DOCUMENTROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_documentrole</code> table reference
|
||||
* Create a <code>public.t_documentrole</code> table reference
|
||||
*/
|
||||
public TDocumentrole() {
|
||||
this(DSL.name("t_documentrole"), null);
|
||||
@ -135,7 +135,7 @@ public class TDocumentrole extends TableImpl<TDocumentroleRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -161,7 +161,7 @@ public class TDocumentrole extends TableImpl<TDocumentroleRecord> {
|
||||
private transient TDocumentPath _tDocument;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_document</code> table.
|
||||
* Get the implicit join path to the <code>public.t_document</code> table.
|
||||
*/
|
||||
public TDocumentPath tDocument() {
|
||||
if (_tDocument == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -46,7 +46,7 @@ public class TLocation extends TableImpl<TLocationRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_location</code>
|
||||
* The reference instance of <code>public.t_location</code>
|
||||
*/
|
||||
public static final TLocation T_LOCATION = new TLocation();
|
||||
|
||||
@ -59,22 +59,22 @@ public class TLocation extends TableImpl<TLocationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_location.pk</code>.
|
||||
* The column <code>public.t_location.pk</code>.
|
||||
*/
|
||||
public final TableField<TLocationRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_location.name</code>.
|
||||
* The column <code>public.t_location.name</code>.
|
||||
*/
|
||||
public final TableField<TLocationRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_location.url</code>.
|
||||
* The column <code>public.t_location.url</code>.
|
||||
*/
|
||||
public final TableField<TLocationRecord, String> URL = createField(DSL.name("url"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_location.fk_document</code>.
|
||||
* The column <code>public.t_location.fk_document</code>.
|
||||
*/
|
||||
public final TableField<TLocationRecord, Integer> FK_DOCUMENT = createField(DSL.name("fk_document"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
@ -87,21 +87,21 @@ public class TLocation extends TableImpl<TLocationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_location</code> table reference
|
||||
* Create an aliased <code>public.t_location</code> table reference
|
||||
*/
|
||||
public TLocation(String alias) {
|
||||
this(DSL.name(alias), T_LOCATION);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_location</code> table reference
|
||||
* Create an aliased <code>public.t_location</code> table reference
|
||||
*/
|
||||
public TLocation(Name alias) {
|
||||
this(alias, T_LOCATION);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_location</code> table reference
|
||||
* Create a <code>public.t_location</code> table reference
|
||||
*/
|
||||
public TLocation() {
|
||||
this(DSL.name("t_location"), null);
|
||||
@ -140,7 +140,7 @@ public class TLocation extends TableImpl<TLocationRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -161,7 +161,7 @@ public class TLocation extends TableImpl<TLocationRecord> {
|
||||
private transient TDocumentPath _tDocument;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_document</code> table.
|
||||
* Get the implicit join path to the <code>public.t_document</code> table.
|
||||
*/
|
||||
public TDocumentPath tDocument() {
|
||||
if (_tDocument == null)
|
||||
@ -173,7 +173,8 @@ public class TLocation extends TableImpl<TLocationRecord> {
|
||||
private transient TCampPath _tCamp;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_camp</code> table
|
||||
* Get the implicit to-many join path to the <code>public.t_camp</code>
|
||||
* table
|
||||
*/
|
||||
public TCampPath tCamp() {
|
||||
if (_tCamp == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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.enums.EnumSex;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.TCamp.TCampPath;
|
||||
@ -52,7 +52,7 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_person</code>
|
||||
* The reference instance of <code>public.t_person</code>
|
||||
*/
|
||||
public static final TPerson T_PERSON = new TPerson();
|
||||
|
||||
@ -65,102 +65,102 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.pk</code>.
|
||||
* The column <code>public.t_person.pk</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.forename</code>.
|
||||
* The column <code>public.t_person.forename</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> FORENAME = createField(DSL.name("forename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.surname</code>.
|
||||
* The column <code>public.t_person.surname</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> SURNAME = createField(DSL.name("surname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.street</code>.
|
||||
* The column <code>public.t_person.street</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> STREET = createField(DSL.name("street"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.zip</code>.
|
||||
* The column <code>public.t_person.zip</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> ZIP = createField(DSL.name("zip"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.city</code>.
|
||||
* The column <code>public.t_person.city</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> CITY = createField(DSL.name("city"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.phone</code>.
|
||||
* The column <code>public.t_person.phone</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> PHONE = createField(DSL.name("phone"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.birthdate</code>.
|
||||
* The column <code>public.t_person.birthdate</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, LocalDate> BIRTHDATE = createField(DSL.name("birthdate"), SQLDataType.LOCALDATE, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.camprole</code>.
|
||||
* The column <code>public.t_person.camprole</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, EnumCamprole> CAMPROLE = createField(DSL.name("camprole"), SQLDataType.VARCHAR.asEnumDataType(EnumCamprole.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.email</code>.
|
||||
* The column <code>public.t_person.email</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> EMAIL = createField(DSL.name("email"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.fk_camp</code>.
|
||||
* The column <code>public.t_person.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.fk_profile</code>.
|
||||
* The column <code>public.t_person.fk_profile</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, Integer> FK_PROFILE = createField(DSL.name("fk_profile"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.accept</code>.
|
||||
* The column <code>public.t_person.accept</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, Boolean> ACCEPT = createField(DSL.name("accept"), SQLDataType.BOOLEAN, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.created</code>.
|
||||
* The column <code>public.t_person.created</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, LocalDateTime> CREATED = createField(DSL.name("created"), SQLDataType.LOCALDATETIME(6).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.LOCALDATETIME)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.sex</code>.
|
||||
* The column <code>public.t_person.sex</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, EnumSex> SEX = createField(DSL.name("sex"), SQLDataType.VARCHAR.asEnumDataType(EnumSex.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.fk_registrator</code>.
|
||||
* The column <code>public.t_person.fk_registrator</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, Integer> FK_REGISTRATOR = createField(DSL.name("fk_registrator"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.paid</code>.
|
||||
* The column <code>public.t_person.paid</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, BigDecimal> PAID = createField(DSL.name("paid"), SQLDataType.NUMERIC(7, 2), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.comment</code>.
|
||||
* The column <code>public.t_person.comment</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, String> COMMENT = createField(DSL.name("comment"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.consent_catalog_photo</code>.
|
||||
* The column <code>public.t_person.consent_catalog_photo</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, Boolean> CONSENT_CATALOG_PHOTO = createField(DSL.name("consent_catalog_photo"), SQLDataType.BOOLEAN.nullable(false).defaultValue(DSL.field(DSL.raw("false"), SQLDataType.BOOLEAN)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_person.required_price</code>.
|
||||
* The column <code>public.t_person.required_price</code>.
|
||||
*/
|
||||
public final TableField<TPersonRecord, BigDecimal> REQUIRED_PRICE = createField(DSL.name("required_price"), SQLDataType.NUMERIC(7, 2), this, "");
|
||||
|
||||
@ -173,21 +173,21 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_person</code> table reference
|
||||
* Create an aliased <code>public.t_person</code> table reference
|
||||
*/
|
||||
public TPerson(String alias) {
|
||||
this(DSL.name(alias), T_PERSON);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_person</code> table reference
|
||||
* Create an aliased <code>public.t_person</code> table reference
|
||||
*/
|
||||
public TPerson(Name alias) {
|
||||
this(alias, T_PERSON);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_person</code> table reference
|
||||
* Create a <code>public.t_person</code> table reference
|
||||
*/
|
||||
public TPerson() {
|
||||
this(DSL.name("t_person"), null);
|
||||
@ -226,7 +226,7 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -241,7 +241,7 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
|
||||
@Override
|
||||
public List<UniqueKey<TPersonRecord>> getUniqueKeys() {
|
||||
return Arrays.asList(Keys.UK_PERSON);
|
||||
return Arrays.asList(Keys.T_PERSON_FORENAME_SURNAME_BIRTHDATE_FK_CAMP_KEY);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -252,7 +252,7 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
private transient TCampPath _tCamp;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_camp</code> table.
|
||||
* Get the implicit join path to the <code>public.t_camp</code> table.
|
||||
*/
|
||||
public TCampPath tCamp() {
|
||||
if (_tCamp == null)
|
||||
@ -264,8 +264,8 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
private transient TProfilePath _tPersonFkProfileFkey;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_profile</code> table, via
|
||||
* the <code>t_person_fk_profile_fkey</code> key.
|
||||
* 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)
|
||||
@ -277,8 +277,8 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
private transient TProfilePath _tPersonFkRegistratorFkey;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_profile</code> table, via
|
||||
* the <code>t_person_fk_registrator_fkey</code> key.
|
||||
* 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)
|
||||
@ -291,7 +291,7 @@ public class TPerson extends TableImpl<TPersonRecord> {
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>camp.t_persondocument</code> table
|
||||
* <code>public.t_persondocument</code> table
|
||||
*/
|
||||
public TPersondocumentPath tPersondocument() {
|
||||
if (_tPersondocument == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -46,7 +46,7 @@ public class TPersondocument extends TableImpl<TPersondocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_persondocument</code>
|
||||
* The reference instance of <code>public.t_persondocument</code>
|
||||
*/
|
||||
public static final TPersondocument T_PERSONDOCUMENT = new TPersondocument();
|
||||
|
||||
@ -59,27 +59,27 @@ public class TPersondocument extends TableImpl<TPersondocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_persondocument.pk</code>.
|
||||
* The column <code>public.t_persondocument.pk</code>.
|
||||
*/
|
||||
public final TableField<TPersondocumentRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_persondocument.fk_person</code>.
|
||||
* The column <code>public.t_persondocument.fk_person</code>.
|
||||
*/
|
||||
public final TableField<TPersondocumentRecord, Integer> FK_PERSON = createField(DSL.name("fk_person"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_persondocument.name</code>.
|
||||
* The column <code>public.t_persondocument.name</code>.
|
||||
*/
|
||||
public final TableField<TPersondocumentRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_persondocument.document</code>.
|
||||
* The column <code>public.t_persondocument.document</code>.
|
||||
*/
|
||||
public final TableField<TPersondocumentRecord, String> DOCUMENT = createField(DSL.name("document"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_persondocument.filetype</code>.
|
||||
* The column <code>public.t_persondocument.filetype</code>.
|
||||
*/
|
||||
public final TableField<TPersondocumentRecord, EnumFiletype> FILETYPE = createField(DSL.name("filetype"), SQLDataType.VARCHAR.asEnumDataType(EnumFiletype.class), this, "");
|
||||
|
||||
@ -92,21 +92,21 @@ public class TPersondocument extends TableImpl<TPersondocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_persondocument</code> table reference
|
||||
* Create an aliased <code>public.t_persondocument</code> table reference
|
||||
*/
|
||||
public TPersondocument(String alias) {
|
||||
this(DSL.name(alias), T_PERSONDOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_persondocument</code> table reference
|
||||
* Create an aliased <code>public.t_persondocument</code> table reference
|
||||
*/
|
||||
public TPersondocument(Name alias) {
|
||||
this(alias, T_PERSONDOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_persondocument</code> table reference
|
||||
* Create a <code>public.t_persondocument</code> table reference
|
||||
*/
|
||||
public TPersondocument() {
|
||||
this(DSL.name("t_persondocument"), null);
|
||||
@ -145,7 +145,7 @@ public class TPersondocument extends TableImpl<TPersondocumentRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -171,7 +171,7 @@ public class TPersondocument extends TableImpl<TPersondocumentRecord> {
|
||||
private transient TPersonPath _tPerson;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_person</code> table.
|
||||
* Get the implicit join path to the <code>public.t_person</code> table.
|
||||
*/
|
||||
public TPersonPath tPerson() {
|
||||
if (_tPerson == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -49,7 +49,7 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_profile</code>
|
||||
* The reference instance of <code>public.t_profile</code>
|
||||
*/
|
||||
public static final TProfile T_PROFILE = new TProfile();
|
||||
|
||||
@ -62,37 +62,37 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profile.pk</code>.
|
||||
* The column <code>public.t_profile.pk</code>.
|
||||
*/
|
||||
public final TableField<TProfileRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profile.forename</code>.
|
||||
* The column <code>public.t_profile.forename</code>.
|
||||
*/
|
||||
public final TableField<TProfileRecord, String> FORENAME = createField(DSL.name("forename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profile.surname</code>.
|
||||
* The column <code>public.t_profile.surname</code>.
|
||||
*/
|
||||
public final TableField<TProfileRecord, String> SURNAME = createField(DSL.name("surname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profile.username</code>.
|
||||
* The column <code>public.t_profile.username</code>.
|
||||
*/
|
||||
public final TableField<TProfileRecord, String> USERNAME = createField(DSL.name("username"), SQLDataType.CLOB.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profile.password</code>.
|
||||
* The column <code>public.t_profile.password</code>.
|
||||
*/
|
||||
public final TableField<TProfileRecord, String> PASSWORD = createField(DSL.name("password"), SQLDataType.CLOB.nullable(false), this, "");
|
||||
public final TableField<TProfileRecord, String> PASSWORD = createField(DSL.name("password"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profile.duedate</code>.
|
||||
* The column <code>public.t_profile.duedate</code>.
|
||||
*/
|
||||
public final TableField<TProfileRecord, LocalDateTime> DUEDATE = createField(DSL.name("duedate"), SQLDataType.LOCALDATETIME(6).defaultValue(DSL.field(DSL.raw("(now() + '1 year'::interval)"), SQLDataType.LOCALDATETIME)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profile.uuid</code>.
|
||||
* The column <code>public.t_profile.uuid</code>.
|
||||
*/
|
||||
public final TableField<TProfileRecord, String> UUID = createField(DSL.name("uuid"), SQLDataType.CLOB.nullable(false), this, "");
|
||||
|
||||
@ -105,21 +105,21 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_profile</code> table reference
|
||||
* Create an aliased <code>public.t_profile</code> table reference
|
||||
*/
|
||||
public TProfile(String alias) {
|
||||
this(DSL.name(alias), T_PROFILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_profile</code> table reference
|
||||
* Create an aliased <code>public.t_profile</code> table reference
|
||||
*/
|
||||
public TProfile(Name alias) {
|
||||
this(alias, T_PROFILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_profile</code> table reference
|
||||
* Create a <code>public.t_profile</code> table reference
|
||||
*/
|
||||
public TProfile() {
|
||||
this(DSL.name("t_profile"), null);
|
||||
@ -158,7 +158,7 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -179,7 +179,8 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
private transient TCampPath _tCamp;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_camp</code> table
|
||||
* Get the implicit to-many join path to the <code>public.t_camp</code>
|
||||
* table
|
||||
*/
|
||||
public TCampPath tCamp() {
|
||||
if (_tCamp == null)
|
||||
@ -191,8 +192,8 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
private transient TCampprofilePath _tCampprofile;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_campprofile</code>
|
||||
* table
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>public.t_campprofile</code> table
|
||||
*/
|
||||
public TCampprofilePath tCampprofile() {
|
||||
if (_tCampprofile == null)
|
||||
@ -204,7 +205,7 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
private transient TPersonPath _tPersonFkProfileFkey;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_person</code>
|
||||
* 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() {
|
||||
@ -217,7 +218,7 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
private transient TPersonPath _tPersonFkRegistratorFkey;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_person</code>
|
||||
* 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() {
|
||||
@ -230,8 +231,8 @@ public class TProfile extends TableImpl<TProfileRecord> {
|
||||
private transient TProfilerolePath _tProfilerole;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the <code>camp.t_profilerole</code>
|
||||
* table
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>public.t_profilerole</code> table
|
||||
*/
|
||||
public TProfilerolePath tProfilerole() {
|
||||
if (_tProfilerole == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -45,7 +45,7 @@ public class TProfilerole extends TableImpl<TProfileroleRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_profilerole</code>
|
||||
* The reference instance of <code>public.t_profilerole</code>
|
||||
*/
|
||||
public static final TProfilerole T_PROFILEROLE = new TProfilerole();
|
||||
|
||||
@ -58,12 +58,12 @@ public class TProfilerole extends TableImpl<TProfileroleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profilerole.fk_profile</code>.
|
||||
* The column <code>public.t_profilerole.fk_profile</code>.
|
||||
*/
|
||||
public final TableField<TProfileroleRecord, Integer> FK_PROFILE = createField(DSL.name("fk_profile"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_profilerole.role</code>.
|
||||
* The column <code>public.t_profilerole.role</code>.
|
||||
*/
|
||||
public final TableField<TProfileroleRecord, EnumRole> ROLE = createField(DSL.name("role"), SQLDataType.VARCHAR.nullable(false).asEnumDataType(EnumRole.class), this, "");
|
||||
|
||||
@ -76,21 +76,21 @@ public class TProfilerole extends TableImpl<TProfileroleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_profilerole</code> table reference
|
||||
* Create an aliased <code>public.t_profilerole</code> table reference
|
||||
*/
|
||||
public TProfilerole(String alias) {
|
||||
this(DSL.name(alias), T_PROFILEROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_profilerole</code> table reference
|
||||
* Create an aliased <code>public.t_profilerole</code> table reference
|
||||
*/
|
||||
public TProfilerole(Name alias) {
|
||||
this(alias, T_PROFILEROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_profilerole</code> table reference
|
||||
* Create a <code>public.t_profilerole</code> table reference
|
||||
*/
|
||||
public TProfilerole() {
|
||||
this(DSL.name("t_profilerole"), null);
|
||||
@ -129,7 +129,7 @@ public class TProfilerole extends TableImpl<TProfileroleRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -145,7 +145,7 @@ public class TProfilerole extends TableImpl<TProfileroleRecord> {
|
||||
private transient TProfilePath _tProfile;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_profile</code> table.
|
||||
* Get the implicit join path to the <code>public.t_profile</code> table.
|
||||
*/
|
||||
public TProfilePath tProfile() {
|
||||
if (_tProfile == null)
|
||||
|
@ -4,8 +4,8 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Keys;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.TRssRecord;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
@ -39,7 +39,7 @@ public class TRss extends TableImpl<TRssRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_rss</code>
|
||||
* The reference instance of <code>public.t_rss</code>
|
||||
*/
|
||||
public static final TRss T_RSS = new TRss();
|
||||
|
||||
@ -52,25 +52,25 @@ public class TRss extends TableImpl<TRssRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_rss.msg</code>.
|
||||
* The column <code>public.t_rss.pk</code>.
|
||||
*/
|
||||
public final TableField<TRssRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.t_rss.msg</code>.
|
||||
*/
|
||||
public final TableField<TRssRecord, String> MSG = createField(DSL.name("msg"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_rss.regdate</code>.
|
||||
* The column <code>public.t_rss.regdate</code>.
|
||||
*/
|
||||
public final TableField<TRssRecord, LocalDateTime> REGDATE = createField(DSL.name("regdate"), SQLDataType.LOCALDATETIME(6).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.LOCALDATETIME)), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_rss.recipient</code>.
|
||||
* The column <code>public.t_rss.recipient</code>.
|
||||
*/
|
||||
public final TableField<TRssRecord, String> RECIPIENT = createField(DSL.name("recipient"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_rss.pk</code>.
|
||||
*/
|
||||
public final TableField<TRssRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
private TRss(Name alias, Table<TRssRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
@ -80,21 +80,21 @@ public class TRss extends TableImpl<TRssRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_rss</code> table reference
|
||||
* Create an aliased <code>public.t_rss</code> table reference
|
||||
*/
|
||||
public TRss(String alias) {
|
||||
this(DSL.name(alias), T_RSS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_rss</code> table reference
|
||||
* Create an aliased <code>public.t_rss</code> table reference
|
||||
*/
|
||||
public TRss(Name alias) {
|
||||
this(alias, T_RSS);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_rss</code> table reference
|
||||
* Create a <code>public.t_rss</code> table reference
|
||||
*/
|
||||
public TRss() {
|
||||
this(DSL.name("t_rss"), null);
|
||||
@ -102,7 +102,7 @@ public class TRss extends TableImpl<TRssRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,9 +4,11 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -47,7 +49,7 @@ public class TSales extends TableImpl<TSalesRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_sales</code>
|
||||
* The reference instance of <code>public.t_sales</code>
|
||||
*/
|
||||
public static final TSales T_SALES = new TSales();
|
||||
|
||||
@ -60,57 +62,57 @@ public class TSales extends TableImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.pk</code>.
|
||||
* The column <code>public.t_sales.pk</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.trader</code>.
|
||||
* The column <code>public.t_sales.trader</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, String> TRADER = createField(DSL.name("trader"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.fk_camp</code>.
|
||||
* The column <code>public.t_sales.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.provider</code>.
|
||||
* The column <code>public.t_sales.provider</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, String> PROVIDER = createField(DSL.name("provider"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.cash</code>.
|
||||
* The column <code>public.t_sales.cash</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, BigDecimal> CASH = createField(DSL.name("cash"), SQLDataType.NUMERIC(11, 2).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.buydate</code>.
|
||||
* The column <code>public.t_sales.buydate</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, LocalDateTime> BUYDATE = createField(DSL.name("buydate"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.recipenumber</code>.
|
||||
* The column <code>public.t_sales.recipenumber</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, String> RECIPENUMBER = createField(DSL.name("recipenumber"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.recipeshot</code>.
|
||||
* The column <code>public.t_sales.recipeshot</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, byte[]> RECIPESHOT = createField(DSL.name("recipeshot"), SQLDataType.BLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.recipenote</code>.
|
||||
* The column <code>public.t_sales.recipenote</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, String> RECIPENOTE = createField(DSL.name("recipenote"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.incredients</code>.
|
||||
* The column <code>public.t_sales.incredients</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, String> INCREDIENTS = createField(DSL.name("incredients"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_sales.recipefilename</code>.
|
||||
* The column <code>public.t_sales.recipefilename</code>.
|
||||
*/
|
||||
public final TableField<TSalesRecord, String> RECIPEFILENAME = createField(DSL.name("recipefilename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
@ -123,21 +125,21 @@ public class TSales extends TableImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_sales</code> table reference
|
||||
* Create an aliased <code>public.t_sales</code> table reference
|
||||
*/
|
||||
public TSales(String alias) {
|
||||
this(DSL.name(alias), T_SALES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_sales</code> table reference
|
||||
* Create an aliased <code>public.t_sales</code> table reference
|
||||
*/
|
||||
public TSales(Name alias) {
|
||||
this(alias, T_SALES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_sales</code> table reference
|
||||
* Create a <code>public.t_sales</code> table reference
|
||||
*/
|
||||
public TSales() {
|
||||
this(DSL.name("t_sales"), null);
|
||||
@ -176,7 +178,7 @@ public class TSales extends TableImpl<TSalesRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -197,7 +199,7 @@ public class TSales extends TableImpl<TSalesRecord> {
|
||||
private transient TCampPath _tCamp;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>camp.t_camp</code> table.
|
||||
* Get the implicit join path to the <code>public.t_camp</code> table.
|
||||
*/
|
||||
public TCampPath tCamp() {
|
||||
if (_tCamp == null)
|
||||
@ -206,6 +208,27 @@ public class TSales extends TableImpl<TSalesRecord> {
|
||||
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);
|
||||
|
@ -4,8 +4,10 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -39,7 +45,7 @@ public class TSalescontent extends TableImpl<TSalescontentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_salescontent</code>
|
||||
* The reference instance of <code>public.t_salescontent</code>
|
||||
*/
|
||||
public static final TSalescontent T_SALESCONTENT = new TSalescontent();
|
||||
|
||||
@ -52,12 +58,12 @@ public class TSalescontent extends TableImpl<TSalescontentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_salescontent.fk_sales</code>.
|
||||
* The column <code>public.t_salescontent.fk_sales</code>.
|
||||
*/
|
||||
public final TableField<TSalescontentRecord, Integer> FK_SALES = createField(DSL.name("fk_sales"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_salescontent.fk_salescontenttype</code>.
|
||||
* The column <code>public.t_salescontent.fk_salescontenttype</code>.
|
||||
*/
|
||||
public final TableField<TSalescontentRecord, String> FK_SALESCONTENTTYPE = createField(DSL.name("fk_salescontenttype"), SQLDataType.CLOB.nullable(false), this, "");
|
||||
|
||||
@ -70,29 +76,60 @@ public class TSalescontent extends TableImpl<TSalescontentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_salescontent</code> table reference
|
||||
* Create an aliased <code>public.t_salescontent</code> table reference
|
||||
*/
|
||||
public TSalescontent(String alias) {
|
||||
this(DSL.name(alias), T_SALESCONTENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_salescontent</code> table reference
|
||||
* Create an aliased <code>public.t_salescontent</code> table reference
|
||||
*/
|
||||
public TSalescontent(Name alias) {
|
||||
this(alias, T_SALESCONTENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_salescontent</code> table reference
|
||||
* Create a <code>public.t_salescontent</code> table reference
|
||||
*/
|
||||
public TSalescontent() {
|
||||
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> {
|
||||
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 : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -100,6 +137,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);
|
||||
|
@ -4,17 +4,23 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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;
|
||||
@ -37,7 +43,7 @@ public class TSalescontenttype extends TableImpl<TSalescontenttypeRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.t_salescontenttype</code>
|
||||
* The reference instance of <code>public.t_salescontenttype</code>
|
||||
*/
|
||||
public static final TSalescontenttype T_SALESCONTENTTYPE = new TSalescontenttype();
|
||||
|
||||
@ -50,7 +56,7 @@ public class TSalescontenttype extends TableImpl<TSalescontenttypeRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.t_salescontenttype.name</code>.
|
||||
* The column <code>public.t_salescontenttype.name</code>.
|
||||
*/
|
||||
public final TableField<TSalescontenttypeRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB.nullable(false), this, "");
|
||||
|
||||
@ -63,29 +69,60 @@ public class TSalescontenttype extends TableImpl<TSalescontenttypeRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_salescontenttype</code> table reference
|
||||
* Create an aliased <code>public.t_salescontenttype</code> table reference
|
||||
*/
|
||||
public TSalescontenttype(String alias) {
|
||||
this(DSL.name(alias), T_SALESCONTENTTYPE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.t_salescontenttype</code> table reference
|
||||
* Create an aliased <code>public.t_salescontenttype</code> table reference
|
||||
*/
|
||||
public TSalescontenttype(Name alias) {
|
||||
this(alias, T_SALESCONTENTTYPE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.t_salescontenttype</code> table reference
|
||||
* Create a <code>public.t_salescontenttype</code> table reference
|
||||
*/
|
||||
public TSalescontenttype() {
|
||||
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> {
|
||||
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 : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -93,6 +130,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);
|
||||
|
@ -0,0 +1,240 @@
|
||||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VAdultRecord;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
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.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
import org.jooq.types.YearToSecond;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VAdult extends TableImpl<VAdultRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.v_adult</code>
|
||||
*/
|
||||
public static final VAdult V_ADULT = new VAdult();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<VAdultRecord> getRecordType() {
|
||||
return VAdultRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.v_adult.age</code>.
|
||||
*/
|
||||
public final TableField<VAdultRecord, YearToSecond> AGE = createField(DSL.name("age"), SQLDataType.INTERVAL, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_adult.forename</code>.
|
||||
*/
|
||||
public final TableField<VAdultRecord, String> FORENAME = createField(DSL.name("forename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_adult.surname</code>.
|
||||
*/
|
||||
public final TableField<VAdultRecord, String> SURNAME = createField(DSL.name("surname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_adult.camprole</code>.
|
||||
*/
|
||||
public final TableField<VAdultRecord, EnumCamprole> CAMPROLE = createField(DSL.name("camprole"), SQLDataType.VARCHAR.asEnumDataType(EnumCamprole.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_adult.adult</code>.
|
||||
*/
|
||||
public final TableField<VAdultRecord, Boolean> ADULT = createField(DSL.name("adult"), SQLDataType.BOOLEAN, this, "");
|
||||
|
||||
private VAdult(Name alias, Table<VAdultRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
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((birthdate)::timestamp with time zone) AS age,
|
||||
forename,
|
||||
surname,
|
||||
camprole,
|
||||
(age((birthdate)::timestamp with time zone) > '18 years'::interval) AS adult
|
||||
FROM t_person;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_adult</code> table reference
|
||||
*/
|
||||
public VAdult(String alias) {
|
||||
this(DSL.name(alias), V_ADULT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_adult</code> table reference
|
||||
*/
|
||||
public VAdult(Name alias) {
|
||||
this(alias, V_ADULT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.v_adult</code> table reference
|
||||
*/
|
||||
public VAdult() {
|
||||
this(DSL.name("v_adult"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public VAdult as(String alias) {
|
||||
return new VAdult(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VAdult as(Name alias) {
|
||||
return new VAdult(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VAdult as(Table<?> alias) {
|
||||
return new VAdult(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult rename(String name) {
|
||||
return new VAdult(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult rename(Name name) {
|
||||
return new VAdult(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult rename(Table<?> name) {
|
||||
return new VAdult(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult where(Condition condition) {
|
||||
return new VAdult(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VAdult where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VAdult where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VAdult where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VAdult where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VAdult whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VBudgetRecord;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
@ -36,7 +36,7 @@ public class VBudget extends TableImpl<VBudgetRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_budget</code>
|
||||
* The reference instance of <code>public.v_budget</code>
|
||||
*/
|
||||
public static final VBudget V_BUDGET = new VBudget();
|
||||
|
||||
@ -49,27 +49,27 @@ public class VBudget extends TableImpl<VBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_budget.budget</code>.
|
||||
* The column <code>public.v_budget.budget</code>.
|
||||
*/
|
||||
public final TableField<VBudgetRecord, BigDecimal> BUDGET = createField(DSL.name("budget"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_budget.fk_camp</code>.
|
||||
* The column <code>public.v_budget.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<VBudgetRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_budget.name</code>.
|
||||
* The column <code>public.v_budget.name</code>.
|
||||
*/
|
||||
public final TableField<VBudgetRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_budget.location</code>.
|
||||
* The column <code>public.v_budget.location</code>.
|
||||
*/
|
||||
public final TableField<VBudgetRecord, String> LOCATION = createField(DSL.name("location"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_budget.year</code>.
|
||||
* The column <code>public.v_budget.year</code>.
|
||||
*/
|
||||
public final TableField<VBudgetRecord, Double> YEAR = createField(DSL.name("year"), SQLDataType.DOUBLE, this, "");
|
||||
|
||||
@ -84,27 +84,27 @@ public class VBudget extends TableImpl<VBudgetRecord> {
|
||||
name,
|
||||
location,
|
||||
year
|
||||
FROM camp.v_sales
|
||||
FROM v_sales
|
||||
GROUP BY fk_camp, name, location, year;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_budget</code> table reference
|
||||
* Create an aliased <code>public.v_budget</code> table reference
|
||||
*/
|
||||
public VBudget(String alias) {
|
||||
this(DSL.name(alias), V_BUDGET);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_budget</code> table reference
|
||||
* Create an aliased <code>public.v_budget</code> table reference
|
||||
*/
|
||||
public VBudget(Name alias) {
|
||||
this(alias, V_BUDGET);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_budget</code> table reference
|
||||
* Create a <code>public.v_budget</code> table reference
|
||||
*/
|
||||
public VBudget() {
|
||||
this(DSL.name("v_budget"), null);
|
||||
@ -112,7 +112,7 @@ public class VBudget extends TableImpl<VBudgetRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VCampRecord;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
@ -36,7 +36,7 @@ public class VCamp extends TableImpl<VCampRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_camp</code>
|
||||
* The reference instance of <code>public.v_camp</code>
|
||||
*/
|
||||
public static final VCamp V_CAMP = new VCamp();
|
||||
|
||||
@ -49,67 +49,67 @@ public class VCamp extends TableImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.pk</code>.
|
||||
* The column <code>public.v_camp.pk</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.is_over</code>.
|
||||
* The column <code>public.v_camp.is_over</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, Boolean> IS_OVER = createField(DSL.name("is_over"), SQLDataType.BOOLEAN, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.name</code>.
|
||||
* The column <code>public.v_camp.name</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.arrive</code>.
|
||||
* The column <code>public.v_camp.arrive</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, LocalDateTime> ARRIVE = createField(DSL.name("arrive"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.depart</code>.
|
||||
* The column <code>public.v_camp.depart</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, LocalDateTime> DEPART = createField(DSL.name("depart"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.year</code>.
|
||||
* The column <code>public.v_camp.year</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, Double> YEAR = createField(DSL.name("year"), SQLDataType.DOUBLE, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.location_name</code>.
|
||||
* The column <code>public.v_camp.location_name</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, String> LOCATION_NAME = createField(DSL.name("location_name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.min_age</code>.
|
||||
* The column <code>public.v_camp.min_age</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, Integer> MIN_AGE = createField(DSL.name("min_age"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.max_age</code>.
|
||||
* The column <code>public.v_camp.max_age</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, Integer> MAX_AGE = createField(DSL.name("max_age"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.url</code>.
|
||||
* The column <code>public.v_camp.url</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, String> URL = createField(DSL.name("url"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.price</code>.
|
||||
* The column <code>public.v_camp.price</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, String> PRICE = createField(DSL.name("price"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.countries</code>.
|
||||
* The column <code>public.v_camp.countries</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, String> COUNTRIES = createField(DSL.name("countries"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp.fk_document</code>.
|
||||
* The column <code>public.v_camp.fk_document</code>.
|
||||
*/
|
||||
public final TableField<VCampRecord, Integer> FK_DOCUMENT = createField(DSL.name("fk_document"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
@ -132,27 +132,27 @@ public class VCamp extends TableImpl<VCampRecord> {
|
||||
c.price,
|
||||
c.countries,
|
||||
c.fk_document
|
||||
FROM (camp.t_camp c
|
||||
LEFT JOIN camp.t_location l ON ((c.fk_location = l.pk)));
|
||||
FROM (t_camp c
|
||||
LEFT JOIN t_location l ON ((c.fk_location = l.pk)));
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camp</code> table reference
|
||||
* Create an aliased <code>public.v_camp</code> table reference
|
||||
*/
|
||||
public VCamp(String alias) {
|
||||
this(DSL.name(alias), V_CAMP);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camp</code> table reference
|
||||
* Create an aliased <code>public.v_camp</code> table reference
|
||||
*/
|
||||
public VCamp(Name alias) {
|
||||
this(alias, V_CAMP);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_camp</code> table reference
|
||||
* Create a <code>public.v_camp</code> table reference
|
||||
*/
|
||||
public VCamp() {
|
||||
this(DSL.name("v_camp"), null);
|
||||
@ -160,7 +160,7 @@ public class VCamp extends TableImpl<VCampRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VCampBudgetRecord;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
@ -36,7 +36,7 @@ public class VCampBudget extends TableImpl<VCampBudgetRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_camp_budget</code>
|
||||
* The reference instance of <code>public.v_camp_budget</code>
|
||||
*/
|
||||
public static final VCampBudget V_CAMP_BUDGET = new VCampBudget();
|
||||
|
||||
@ -49,22 +49,22 @@ public class VCampBudget extends TableImpl<VCampBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp_budget.budget</code>.
|
||||
* The column <code>public.v_camp_budget.budget</code>.
|
||||
*/
|
||||
public final TableField<VCampBudgetRecord, BigDecimal> BUDGET = createField(DSL.name("budget"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp_budget.fk_camp</code>.
|
||||
* The column <code>public.v_camp_budget.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<VCampBudgetRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp_budget.camp_name</code>.
|
||||
* The column <code>public.v_camp_budget.camp_name</code>.
|
||||
*/
|
||||
public final TableField<VCampBudgetRecord, String> CAMP_NAME = createField(DSL.name("camp_name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp_budget.year</code>.
|
||||
* The column <code>public.v_camp_budget.year</code>.
|
||||
*/
|
||||
public final TableField<VCampBudgetRecord, Double> YEAR = createField(DSL.name("year"), SQLDataType.DOUBLE, this, "");
|
||||
|
||||
@ -77,39 +77,39 @@ public class VCampBudget extends TableImpl<VCampBudgetRecord> {
|
||||
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 camp.t_person
|
||||
FROM t_person
|
||||
UNION ALL
|
||||
SELECT (t_sales.cash * ('-1'::integer)::numeric),
|
||||
t_sales.fk_camp
|
||||
FROM camp.t_sales
|
||||
FROM t_sales
|
||||
)
|
||||
SELECT sum(x.money) AS budget,
|
||||
c.pk AS fk_camp,
|
||||
c.name AS camp_name,
|
||||
date_part('year'::text, c.arrive) AS year
|
||||
FROM (x
|
||||
LEFT JOIN camp.t_camp c ON ((c.pk = x.camp)))
|
||||
LEFT JOIN t_camp c ON ((c.pk = x.camp)))
|
||||
GROUP BY c.pk, c.name, c.arrive
|
||||
ORDER BY c.arrive;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camp_budget</code> table reference
|
||||
* Create an aliased <code>public.v_camp_budget</code> table reference
|
||||
*/
|
||||
public VCampBudget(String alias) {
|
||||
this(DSL.name(alias), V_CAMP_BUDGET);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camp_budget</code> table reference
|
||||
* Create an aliased <code>public.v_camp_budget</code> table reference
|
||||
*/
|
||||
public VCampBudget(Name alias) {
|
||||
this(alias, V_CAMP_BUDGET);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_camp_budget</code> table reference
|
||||
* Create a <code>public.v_camp_budget</code> table reference
|
||||
*/
|
||||
public VCampBudget() {
|
||||
this(DSL.name("v_camp_budget"), null);
|
||||
@ -117,7 +117,7 @@ public class VCampBudget extends TableImpl<VCampBudgetRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VCampBudgetYearRecord;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
@ -36,7 +36,7 @@ public class VCampBudgetYear extends TableImpl<VCampBudgetYearRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_camp_budget_year</code>
|
||||
* The reference instance of <code>public.v_camp_budget_year</code>
|
||||
*/
|
||||
public static final VCampBudgetYear V_CAMP_BUDGET_YEAR = new VCampBudgetYear();
|
||||
|
||||
@ -49,12 +49,12 @@ public class VCampBudgetYear extends TableImpl<VCampBudgetYearRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp_budget_year.sum</code>.
|
||||
* The column <code>public.v_camp_budget_year.sum</code>.
|
||||
*/
|
||||
public final TableField<VCampBudgetYearRecord, BigDecimal> SUM = createField(DSL.name("sum"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camp_budget_year.year</code>.
|
||||
* The column <code>public.v_camp_budget_year.year</code>.
|
||||
*/
|
||||
public final TableField<VCampBudgetYearRecord, Double> YEAR = createField(DSL.name("year"), SQLDataType.DOUBLE, this, "");
|
||||
|
||||
@ -66,28 +66,28 @@ public class VCampBudgetYear extends TableImpl<VCampBudgetYearRecord> {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
|
||||
create view "v_camp_budget_year" as SELECT sum(budget) AS sum,
|
||||
year
|
||||
FROM camp.v_camp_budget
|
||||
FROM v_camp_budget
|
||||
GROUP BY year
|
||||
ORDER BY year;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camp_budget_year</code> table reference
|
||||
* Create an aliased <code>public.v_camp_budget_year</code> table reference
|
||||
*/
|
||||
public VCampBudgetYear(String alias) {
|
||||
this(DSL.name(alias), V_CAMP_BUDGET_YEAR);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camp_budget_year</code> table reference
|
||||
* Create an aliased <code>public.v_camp_budget_year</code> table reference
|
||||
*/
|
||||
public VCampBudgetYear(Name alias) {
|
||||
this(alias, V_CAMP_BUDGET_YEAR);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_camp_budget_year</code> table reference
|
||||
* Create a <code>public.v_camp_budget_year</code> table reference
|
||||
*/
|
||||
public VCampBudgetYear() {
|
||||
this(DSL.name("v_camp_budget_year"), null);
|
||||
@ -95,7 +95,7 @@ public class VCampBudgetYear extends TableImpl<VCampBudgetYearRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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.records.VCampdocumentRecord;
|
||||
@ -38,7 +38,7 @@ public class VCampdocument extends TableImpl<VCampdocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_campdocument</code>
|
||||
* The reference instance of <code>public.v_campdocument</code>
|
||||
*/
|
||||
public static final VCampdocument V_CAMPDOCUMENT = new VCampdocument();
|
||||
|
||||
@ -51,42 +51,42 @@ public class VCampdocument extends TableImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.fk_camp</code>.
|
||||
* The column <code>public.v_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.campname</code>.
|
||||
* The column <code>public.v_campdocument.campname</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, String> CAMPNAME = createField(DSL.name("campname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.arrive</code>.
|
||||
* The column <code>public.v_campdocument.arrive</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, LocalDateTime> ARRIVE = createField(DSL.name("arrive"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.fk_document</code>.
|
||||
* The column <code>public.v_campdocument.fk_document</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, Integer> FK_DOCUMENT = createField(DSL.name("fk_document"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.document</code>.
|
||||
* The column <code>public.v_campdocument.document</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, String> DOCUMENT = createField(DSL.name("document"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.documentname</code>.
|
||||
* The column <code>public.v_campdocument.documentname</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, String> DOCUMENTNAME = createField(DSL.name("documentname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.doctype</code>.
|
||||
* The column <code>public.v_campdocument.doctype</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, EnumDocument> DOCTYPE = createField(DSL.name("doctype"), SQLDataType.VARCHAR.asEnumDataType(EnumDocument.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_campdocument.filetype</code>.
|
||||
* The column <code>public.v_campdocument.filetype</code>.
|
||||
*/
|
||||
public final TableField<VCampdocumentRecord, EnumFiletype> FILETYPE = createField(DSL.name("filetype"), SQLDataType.VARCHAR.asEnumDataType(EnumFiletype.class), this, "");
|
||||
|
||||
@ -104,28 +104,28 @@ public class VCampdocument extends TableImpl<VCampdocumentRecord> {
|
||||
d.name AS documentname,
|
||||
d.doctype,
|
||||
d.filetype
|
||||
FROM ((camp.t_campdocument cd
|
||||
LEFT JOIN camp.t_camp c ON ((c.pk = cd.fk_camp)))
|
||||
LEFT JOIN camp.t_document d ON ((d.pk = cd.fk_document)));
|
||||
FROM ((t_campdocument cd
|
||||
LEFT JOIN t_camp c ON ((c.pk = cd.fk_camp)))
|
||||
LEFT JOIN t_document d ON ((d.pk = cd.fk_document)));
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_campdocument</code> table reference
|
||||
* Create an aliased <code>public.v_campdocument</code> table reference
|
||||
*/
|
||||
public VCampdocument(String alias) {
|
||||
this(DSL.name(alias), V_CAMPDOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_campdocument</code> table reference
|
||||
* Create an aliased <code>public.v_campdocument</code> table reference
|
||||
*/
|
||||
public VCampdocument(Name alias) {
|
||||
this(alias, V_CAMPDOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_campdocument</code> table reference
|
||||
* Create a <code>public.v_campdocument</code> table reference
|
||||
*/
|
||||
public VCampdocument() {
|
||||
this(DSL.name("v_campdocument"), null);
|
||||
@ -133,7 +133,7 @@ public class VCampdocument extends TableImpl<VCampdocumentRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VCamproleRecord;
|
||||
|
||||
@ -36,7 +36,7 @@ public class VCamprole extends TableImpl<VCamproleRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_camprole</code>
|
||||
* The reference instance of <code>public.v_camprole</code>
|
||||
*/
|
||||
public static final VCamprole V_CAMPROLE = new VCamprole();
|
||||
|
||||
@ -49,7 +49,7 @@ public class VCamprole extends TableImpl<VCamproleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_camprole.name</code>.
|
||||
* The column <code>public.v_camprole.name</code>.
|
||||
*/
|
||||
public final TableField<VCamproleRecord, EnumCamprole> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR.asEnumDataType(EnumCamprole.class), this, "");
|
||||
|
||||
@ -59,26 +59,26 @@ 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::camp.enum_camprole)) AS name;
|
||||
create view "v_camprole" as SELECT unnest(enum_range(NULL::enum_camprole)) AS name;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camprole</code> table reference
|
||||
* Create an aliased <code>public.v_camprole</code> table reference
|
||||
*/
|
||||
public VCamprole(String alias) {
|
||||
this(DSL.name(alias), V_CAMPROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_camprole</code> table reference
|
||||
* Create an aliased <code>public.v_camprole</code> table reference
|
||||
*/
|
||||
public VCamprole(Name alias) {
|
||||
this(alias, V_CAMPROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_camprole</code> table reference
|
||||
* Create a <code>public.v_camprole</code> table reference
|
||||
*/
|
||||
public VCamprole() {
|
||||
this(DSL.name("v_camprole"), null);
|
||||
@ -86,7 +86,7 @@ public class VCamprole extends TableImpl<VCamproleRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
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.records.VDocumentRecord;
|
||||
@ -37,7 +37,7 @@ public class VDocument extends TableImpl<VDocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_document</code>
|
||||
* The reference instance of <code>public.v_document</code>
|
||||
*/
|
||||
public static final VDocument V_DOCUMENT = new VDocument();
|
||||
|
||||
@ -50,32 +50,32 @@ public class VDocument extends TableImpl<VDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_document.pk</code>.
|
||||
* The column <code>public.v_document.pk</code>.
|
||||
*/
|
||||
public final TableField<VDocumentRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_document.doctype</code>.
|
||||
* The column <code>public.v_document.doctype</code>.
|
||||
*/
|
||||
public final TableField<VDocumentRecord, EnumDocument> DOCTYPE = createField(DSL.name("doctype"), SQLDataType.VARCHAR.asEnumDataType(EnumDocument.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_document.name</code>.
|
||||
* The column <code>public.v_document.name</code>.
|
||||
*/
|
||||
public final TableField<VDocumentRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_document.document</code>.
|
||||
* The column <code>public.v_document.document</code>.
|
||||
*/
|
||||
public final TableField<VDocumentRecord, String> DOCUMENT = createField(DSL.name("document"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_document.filetype</code>.
|
||||
* The column <code>public.v_document.filetype</code>.
|
||||
*/
|
||||
public final TableField<VDocumentRecord, EnumFiletype> FILETYPE = createField(DSL.name("filetype"), SQLDataType.VARCHAR.asEnumDataType(EnumFiletype.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_document.roles</code>.
|
||||
* The column <code>public.v_document.roles</code>.
|
||||
*/
|
||||
public final TableField<VDocumentRecord, String> ROLES = createField(DSL.name("roles"), SQLDataType.CLOB, this, "");
|
||||
|
||||
@ -91,28 +91,28 @@ public class VDocument extends TableImpl<VDocumentRecord> {
|
||||
d.document,
|
||||
d.filetype,
|
||||
string_agg((r.camprole)::text, ','::text) AS roles
|
||||
FROM (camp.t_document d
|
||||
LEFT JOIN camp.t_documentrole r ON ((r.fk_document = d.pk)))
|
||||
FROM (t_document d
|
||||
LEFT JOIN t_documentrole r ON ((r.fk_document = d.pk)))
|
||||
GROUP BY d.pk, d.doctype, d.name, d.document, d.filetype;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_document</code> table reference
|
||||
* Create an aliased <code>public.v_document</code> table reference
|
||||
*/
|
||||
public VDocument(String alias) {
|
||||
this(DSL.name(alias), V_DOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_document</code> table reference
|
||||
* Create an aliased <code>public.v_document</code> table reference
|
||||
*/
|
||||
public VDocument(Name alias) {
|
||||
this(alias, V_DOCUMENT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_document</code> table reference
|
||||
* Create a <code>public.v_document</code> table reference
|
||||
*/
|
||||
public VDocument() {
|
||||
this(DSL.name("v_document"), null);
|
||||
@ -120,7 +120,7 @@ public class VDocument extends TableImpl<VDocumentRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -0,0 +1,268 @@
|
||||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VDsgvoDeleteCandidateRecord;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
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.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
import org.jooq.types.YearToSecond;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VDsgvoDeleteCandidate extends TableImpl<VDsgvoDeleteCandidateRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.v_dsgvo_delete_candidate</code>
|
||||
*/
|
||||
public static final VDsgvoDeleteCandidate V_DSGVO_DELETE_CANDIDATE = new VDsgvoDeleteCandidate();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<VDsgvoDeleteCandidateRecord> getRecordType() {
|
||||
return VDsgvoDeleteCandidateRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.fk_person</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, Integer> FK_PERSON = createField(DSL.name("fk_person"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.forename</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, String> FORENAME = createField(DSL.name("forename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.surname</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, String> SURNAME = createField(DSL.name("surname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.age</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, YearToSecond> AGE = createField(DSL.name("age"), SQLDataType.INTERVAL, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.camprole</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, EnumCamprole> CAMPROLE = createField(DSL.name("camprole"), SQLDataType.VARCHAR.asEnumDataType(EnumCamprole.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.name</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.year</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, Double> YEAR = createField(DSL.name("year"), SQLDataType.DOUBLE, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_dsgvo_delete_candidate.is_over</code>.
|
||||
*/
|
||||
public final TableField<VDsgvoDeleteCandidateRecord, Boolean> IS_OVER = createField(DSL.name("is_over"), SQLDataType.BOOLEAN, this, "");
|
||||
|
||||
private VDsgvoDeleteCandidate(Name alias, Table<VDsgvoDeleteCandidateRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
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,
|
||||
p.forename,
|
||||
p.surname,
|
||||
p.fk_camp,
|
||||
age((p.birthdate)::timestamp with time zone) AS age,
|
||||
p.camprole,
|
||||
c.name,
|
||||
c.year,
|
||||
c.is_over
|
||||
FROM (t_person p
|
||||
LEFT JOIN v_camp c ON ((c.pk = p.fk_camp)))
|
||||
WHERE (age((p.birthdate)::timestamp with time zone) > '21 years'::interval);
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_dsgvo_delete_candidate</code> table
|
||||
* reference
|
||||
*/
|
||||
public VDsgvoDeleteCandidate(String alias) {
|
||||
this(DSL.name(alias), V_DSGVO_DELETE_CANDIDATE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_dsgvo_delete_candidate</code> table
|
||||
* reference
|
||||
*/
|
||||
public VDsgvoDeleteCandidate(Name alias) {
|
||||
this(alias, V_DSGVO_DELETE_CANDIDATE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.v_dsgvo_delete_candidate</code> table reference
|
||||
*/
|
||||
public VDsgvoDeleteCandidate() {
|
||||
this(DSL.name("v_dsgvo_delete_candidate"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate as(String alias) {
|
||||
return new VDsgvoDeleteCandidate(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate as(Name alias) {
|
||||
return new VDsgvoDeleteCandidate(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate as(Table<?> alias) {
|
||||
return new VDsgvoDeleteCandidate(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate rename(String name) {
|
||||
return new VDsgvoDeleteCandidate(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate rename(Name name) {
|
||||
return new VDsgvoDeleteCandidate(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate rename(Table<?> name) {
|
||||
return new VDsgvoDeleteCandidate(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate where(Condition condition) {
|
||||
return new VDsgvoDeleteCandidate(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VDsgvoDeleteCandidate where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VDsgvoDeleteCandidate where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VDsgvoDeleteCandidate where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VDsgvoDeleteCandidate where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VDsgvoDeleteCandidate whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
@ -0,0 +1,278 @@
|
||||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumSex;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VFeederRecord;
|
||||
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
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.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
import org.jooq.types.YearToSecond;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VFeeder extends TableImpl<VFeederRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.v_feeder</code>
|
||||
*/
|
||||
public static final VFeeder V_FEEDER = new VFeeder();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<VFeederRecord> getRecordType() {
|
||||
return VFeederRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.forename</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> FORENAME = createField(DSL.name("forename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.surname</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> SURNAME = createField(DSL.name("surname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.street</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> STREET = createField(DSL.name("street"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.zip</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> ZIP = createField(DSL.name("zip"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.city</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> CITY = createField(DSL.name("city"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.phone</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> PHONE = createField(DSL.name("phone"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.age</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, YearToSecond> AGE = createField(DSL.name("age"), SQLDataType.INTERVAL, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.email</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> EMAIL = createField(DSL.name("email"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.sex</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, EnumSex> SEX = createField(DSL.name("sex"), SQLDataType.VARCHAR.asEnumDataType(EnumSex.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.name</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.v_feeder.year</code>.
|
||||
*/
|
||||
public final TableField<VFeederRecord, Double> YEAR = createField(DSL.name("year"), SQLDataType.DOUBLE, this, "");
|
||||
|
||||
private VFeeder(Name alias, Table<VFeederRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
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,
|
||||
t_person.surname,
|
||||
t_person.street,
|
||||
t_person.zip,
|
||||
t_person.city,
|
||||
t_person.phone,
|
||||
age(c.arrive, (t_person.birthdate)::timestamp without time zone) AS age,
|
||||
t_person.email,
|
||||
t_person.sex,
|
||||
c.name,
|
||||
date_part('year'::text, c.arrive) AS year
|
||||
FROM (t_person
|
||||
LEFT JOIN t_camp c ON ((c.pk = t_person.fk_camp)))
|
||||
WHERE (t_person.camprole = 'feeder'::enum_camprole);
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_feeder</code> table reference
|
||||
*/
|
||||
public VFeeder(String alias) {
|
||||
this(DSL.name(alias), V_FEEDER);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.v_feeder</code> table reference
|
||||
*/
|
||||
public VFeeder(Name alias) {
|
||||
this(alias, V_FEEDER);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.v_feeder</code> table reference
|
||||
*/
|
||||
public VFeeder() {
|
||||
this(DSL.name("v_feeder"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public VFeeder as(String alias) {
|
||||
return new VFeeder(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VFeeder as(Name alias) {
|
||||
return new VFeeder(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VFeeder as(Table<?> alias) {
|
||||
return new VFeeder(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder rename(String name) {
|
||||
return new VFeeder(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder rename(Name name) {
|
||||
return new VFeeder(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder rename(Table<?> name) {
|
||||
return new VFeeder(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder where(Condition condition) {
|
||||
return new VFeeder(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VFeeder where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VFeeder where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VFeeder where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public VFeeder where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public VFeeder whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumRole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VProfileRecord;
|
||||
|
||||
@ -36,7 +36,7 @@ public class VProfile extends TableImpl<VProfileRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_profile</code>
|
||||
* The reference instance of <code>public.v_profile</code>
|
||||
*/
|
||||
public static final VProfile V_PROFILE = new VProfile();
|
||||
|
||||
@ -49,37 +49,37 @@ public class VProfile extends TableImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_profile.pk</code>.
|
||||
* The column <code>public.v_profile.pk</code>.
|
||||
*/
|
||||
public final TableField<VProfileRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_profile.forename</code>.
|
||||
* The column <code>public.v_profile.forename</code>.
|
||||
*/
|
||||
public final TableField<VProfileRecord, String> FORENAME = createField(DSL.name("forename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_profile.surname</code>.
|
||||
* The column <code>public.v_profile.surname</code>.
|
||||
*/
|
||||
public final TableField<VProfileRecord, String> SURNAME = createField(DSL.name("surname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_profile.username</code>.
|
||||
* The column <code>public.v_profile.username</code>.
|
||||
*/
|
||||
public final TableField<VProfileRecord, String> USERNAME = createField(DSL.name("username"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_profile.password</code>.
|
||||
* The column <code>public.v_profile.password</code>.
|
||||
*/
|
||||
public final TableField<VProfileRecord, String> PASSWORD = createField(DSL.name("password"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_profile.uuid</code>.
|
||||
* The column <code>public.v_profile.uuid</code>.
|
||||
*/
|
||||
public final TableField<VProfileRecord, String> UUID = createField(DSL.name("uuid"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_profile.roles</code>.
|
||||
* The column <code>public.v_profile.roles</code>.
|
||||
*/
|
||||
public final TableField<VProfileRecord, EnumRole[]> ROLES = createField(DSL.name("roles"), SQLDataType.VARCHAR.asEnumDataType(EnumRole.class).array(), this, "");
|
||||
|
||||
@ -96,29 +96,29 @@ public class VProfile extends TableImpl<VProfileRecord> {
|
||||
t_profile.password,
|
||||
t_profile.uuid,
|
||||
array_agg(t_profilerole.role) AS roles
|
||||
FROM (camp.t_profile
|
||||
LEFT JOIN camp.t_profilerole ON ((t_profilerole.fk_profile = t_profile.pk)))
|
||||
FROM (t_profile
|
||||
LEFT JOIN t_profilerole ON ((t_profilerole.fk_profile = t_profile.pk)))
|
||||
WHERE (t_profile.duedate > now())
|
||||
GROUP BY t_profile.pk, t_profile.forename, t_profile.surname, t_profile.username, t_profile.password;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_profile</code> table reference
|
||||
* Create an aliased <code>public.v_profile</code> table reference
|
||||
*/
|
||||
public VProfile(String alias) {
|
||||
this(DSL.name(alias), V_PROFILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_profile</code> table reference
|
||||
* Create an aliased <code>public.v_profile</code> table reference
|
||||
*/
|
||||
public VProfile(Name alias) {
|
||||
this(alias, V_PROFILE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_profile</code> table reference
|
||||
* Create a <code>public.v_profile</code> table reference
|
||||
*/
|
||||
public VProfile() {
|
||||
this(DSL.name("v_profile"), null);
|
||||
@ -126,7 +126,7 @@ public class VProfile extends TableImpl<VProfileRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VRegistrationRecord;
|
||||
|
||||
@ -37,7 +37,7 @@ public class VRegistration extends TableImpl<VRegistrationRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_registration</code>
|
||||
* The reference instance of <code>public.v_registration</code>
|
||||
*/
|
||||
public static final VRegistration V_REGISTRATION = new VRegistration();
|
||||
|
||||
@ -50,57 +50,57 @@ public class VRegistration extends TableImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.pk</code>.
|
||||
* The column <code>public.v_registration.pk</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.forename</code>.
|
||||
* The column <code>public.v_registration.forename</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> FORENAME = createField(DSL.name("forename"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.surname</code>.
|
||||
* The column <code>public.v_registration.surname</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> SURNAME = createField(DSL.name("surname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.street</code>.
|
||||
* The column <code>public.v_registration.street</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> STREET = createField(DSL.name("street"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.zip</code>.
|
||||
* The column <code>public.v_registration.zip</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> ZIP = createField(DSL.name("zip"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.city</code>.
|
||||
* The column <code>public.v_registration.city</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> CITY = createField(DSL.name("city"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.phone</code>.
|
||||
* The column <code>public.v_registration.phone</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> PHONE = createField(DSL.name("phone"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.birthdate</code>.
|
||||
* The column <code>public.v_registration.birthdate</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, LocalDate> BIRTHDATE = createField(DSL.name("birthdate"), SQLDataType.LOCALDATE, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.camprole</code>.
|
||||
* The column <code>public.v_registration.camprole</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, EnumCamprole> CAMPROLE = createField(DSL.name("camprole"), SQLDataType.VARCHAR.asEnumDataType(EnumCamprole.class), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.email</code>.
|
||||
* The column <code>public.v_registration.email</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> EMAIL = createField(DSL.name("email"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_registration.campname</code>.
|
||||
* The column <code>public.v_registration.campname</code>.
|
||||
*/
|
||||
public final TableField<VRegistrationRecord, String> CAMPNAME = createField(DSL.name("campname"), SQLDataType.CLOB, this, "");
|
||||
|
||||
@ -110,38 +110,38 @@ 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 t_person.pk,
|
||||
t_person.forename,
|
||||
t_person.surname,
|
||||
t_person.street,
|
||||
t_person.zip,
|
||||
t_person.city,
|
||||
t_person.phone,
|
||||
t_person.birthdate,
|
||||
t_person.camprole,
|
||||
t_person.email,
|
||||
(t_camp.name || date_part('isoyear'::text, t_camp.arrive)) AS campname
|
||||
FROM (camp.t_person
|
||||
LEFT JOIN camp.t_camp ON ((t_camp.pk = t_person.fk_camp)));
|
||||
create view "v_registration" as SELECT p.pk,
|
||||
p.forename,
|
||||
p.surname,
|
||||
p.street,
|
||||
p.zip,
|
||||
p.city,
|
||||
p.phone,
|
||||
p.birthdate,
|
||||
p.camprole,
|
||||
p.email,
|
||||
(c.name || date_part('isoyear'::text, c.arrive)) AS campname
|
||||
FROM (t_person p
|
||||
LEFT JOIN t_camp c ON ((c.pk = p.fk_camp)));
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_registration</code> table reference
|
||||
* Create an aliased <code>public.v_registration</code> table reference
|
||||
*/
|
||||
public VRegistration(String alias) {
|
||||
this(DSL.name(alias), V_REGISTRATION);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_registration</code> table reference
|
||||
* Create an aliased <code>public.v_registration</code> table reference
|
||||
*/
|
||||
public VRegistration(Name alias) {
|
||||
this(alias, V_REGISTRATION);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_registration</code> table reference
|
||||
* Create a <code>public.v_registration</code> table reference
|
||||
*/
|
||||
public VRegistration() {
|
||||
this(DSL.name("v_registration"), null);
|
||||
@ -149,7 +149,7 @@ public class VRegistration extends TableImpl<VRegistrationRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumRole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VRoleRecord;
|
||||
|
||||
@ -36,7 +36,7 @@ public class VRole extends TableImpl<VRoleRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_role</code>
|
||||
* The reference instance of <code>public.v_role</code>
|
||||
*/
|
||||
public static final VRole V_ROLE = new VRole();
|
||||
|
||||
@ -49,7 +49,7 @@ public class VRole extends TableImpl<VRoleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_role.unnest</code>.
|
||||
* The column <code>public.v_role.unnest</code>.
|
||||
*/
|
||||
public final TableField<VRoleRecord, EnumRole> UNNEST = createField(DSL.name("unnest"), SQLDataType.VARCHAR.asEnumDataType(EnumRole.class), this, "");
|
||||
|
||||
@ -59,26 +59,26 @@ 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::camp.enum_role)) AS unnest;
|
||||
create view "v_role" as SELECT unnest(enum_range(NULL::enum_role)) AS unnest;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_role</code> table reference
|
||||
* Create an aliased <code>public.v_role</code> table reference
|
||||
*/
|
||||
public VRole(String alias) {
|
||||
this(DSL.name(alias), V_ROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_role</code> table reference
|
||||
* Create an aliased <code>public.v_role</code> table reference
|
||||
*/
|
||||
public VRole(Name alias) {
|
||||
this(alias, V_ROLE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_role</code> table reference
|
||||
* Create a <code>public.v_role</code> table reference
|
||||
*/
|
||||
public VRole() {
|
||||
this(DSL.name("v_role"), null);
|
||||
@ -86,7 +86,7 @@ public class VRole extends TableImpl<VRoleRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VSalesRecord;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
@ -37,7 +37,7 @@ public class VSales extends TableImpl<VSalesRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_sales</code>
|
||||
* The reference instance of <code>public.v_sales</code>
|
||||
*/
|
||||
public static final VSales V_SALES = new VSales();
|
||||
|
||||
@ -50,82 +50,82 @@ public class VSales extends TableImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.pk</code>.
|
||||
* The column <code>public.v_sales.pk</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, Integer> PK = createField(DSL.name("pk"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.trader</code>.
|
||||
* The column <code>public.v_sales.trader</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String> TRADER = createField(DSL.name("trader"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.fk_camp</code>.
|
||||
* The column <code>public.v_sales.fk_camp</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, Integer> FK_CAMP = createField(DSL.name("fk_camp"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.name</code>.
|
||||
* The column <code>public.v_sales.name</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String> NAME = createField(DSL.name("name"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.fk_location</code>.
|
||||
* The column <code>public.v_sales.fk_location</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, Integer> FK_LOCATION = createField(DSL.name("fk_location"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.location</code>.
|
||||
* The column <code>public.v_sales.location</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String> LOCATION = createField(DSL.name("location"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.incredients</code>.
|
||||
* The column <code>public.v_sales.incredients</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String> INCREDIENTS = createField(DSL.name("incredients"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.year</code>.
|
||||
* The column <code>public.v_sales.year</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, Double> YEAR = createField(DSL.name("year"), SQLDataType.DOUBLE, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.fk_sales</code>.
|
||||
* The column <code>public.v_sales.fk_sales</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, Integer> FK_SALES = createField(DSL.name("fk_sales"), SQLDataType.INTEGER, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.provider</code>.
|
||||
* The column <code>public.v_sales.provider</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String> PROVIDER = createField(DSL.name("provider"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.cash</code>.
|
||||
* The column <code>public.v_sales.cash</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, BigDecimal> CASH = createField(DSL.name("cash"), SQLDataType.NUMERIC(11, 2), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.buydate</code>.
|
||||
* The column <code>public.v_sales.buydate</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, LocalDateTime> BUYDATE = createField(DSL.name("buydate"), SQLDataType.LOCALDATETIME(6), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.recipenumber</code>.
|
||||
* The column <code>public.v_sales.recipenumber</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String> RECIPENUMBER = createField(DSL.name("recipenumber"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.recipeshot</code>.
|
||||
* The column <code>public.v_sales.recipeshot</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, byte[]> RECIPESHOT = createField(DSL.name("recipeshot"), SQLDataType.BLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.recipenote</code>.
|
||||
* The column <code>public.v_sales.recipenote</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String> RECIPENOTE = createField(DSL.name("recipenote"), SQLDataType.CLOB, this, "");
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_sales.content</code>.
|
||||
* The column <code>public.v_sales.content</code>.
|
||||
*/
|
||||
public final TableField<VSalesRecord, String[]> CONTENT = createField(DSL.name("content"), SQLDataType.CLOB.array(), this, "");
|
||||
|
||||
@ -151,30 +151,30 @@ public class VSales extends TableImpl<VSalesRecord> {
|
||||
s.recipeshot,
|
||||
s.recipenote,
|
||||
array_agg(t.fk_salescontenttype) AS content
|
||||
FROM (((camp.t_sales s
|
||||
LEFT JOIN camp.t_camp c ON ((c.pk = s.fk_camp)))
|
||||
LEFT JOIN camp.t_location l ON ((l.pk = c.fk_location)))
|
||||
LEFT JOIN camp.t_salescontent t ON ((t.fk_sales = s.pk)))
|
||||
FROM (((t_sales s
|
||||
LEFT JOIN t_camp c ON ((c.pk = s.fk_camp)))
|
||||
LEFT JOIN t_location l ON ((l.pk = c.fk_location)))
|
||||
LEFT JOIN t_salescontent t ON ((t.fk_sales = s.pk)))
|
||||
GROUP BY s.pk, s.trader, c.pk, c.name, l.pk, l.name, s.incredients, (date_part('isoyear'::text, c.arrive)), s.provider, s.cash, s.buydate, s.recipenumber, s.recipeshot;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_sales</code> table reference
|
||||
* Create an aliased <code>public.v_sales</code> table reference
|
||||
*/
|
||||
public VSales(String alias) {
|
||||
this(DSL.name(alias), V_SALES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_sales</code> table reference
|
||||
* Create an aliased <code>public.v_sales</code> table reference
|
||||
*/
|
||||
public VSales(Name alias) {
|
||||
this(alias, V_SALES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_sales</code> table reference
|
||||
* Create a <code>public.v_sales</code> table reference
|
||||
*/
|
||||
public VSales() {
|
||||
this(DSL.name("v_sales"), null);
|
||||
@ -182,7 +182,7 @@ public class VSales extends TableImpl<VSalesRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -4,7 +4,7 @@
|
||||
package de.jottyfan.camporganizer.db.jooq.tables;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.Camp;
|
||||
import de.jottyfan.camporganizer.db.jooq.Public;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.records.VVersionRecord;
|
||||
|
||||
import java.util.Collection;
|
||||
@ -35,7 +35,7 @@ public class VVersion extends TableImpl<VVersionRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>camp.v_version</code>
|
||||
* The reference instance of <code>public.v_version</code>
|
||||
*/
|
||||
public static final VVersion V_VERSION = new VVersion();
|
||||
|
||||
@ -48,7 +48,7 @@ public class VVersion extends TableImpl<VVersionRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>camp.v_version.version</code>.
|
||||
* The column <code>public.v_version.version</code>.
|
||||
*/
|
||||
public final TableField<VVersionRecord, String> VERSION = createField(DSL.name("version"), SQLDataType.CLOB, this, "");
|
||||
|
||||
@ -58,26 +58,26 @@ 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 '2023.03'::text AS version;
|
||||
create view "v_version" as SELECT '2024.02'::text AS version;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_version</code> table reference
|
||||
* Create an aliased <code>public.v_version</code> table reference
|
||||
*/
|
||||
public VVersion(String alias) {
|
||||
this(DSL.name(alias), V_VERSION);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>camp.v_version</code> table reference
|
||||
* Create an aliased <code>public.v_version</code> table reference
|
||||
*/
|
||||
public VVersion(Name alias) {
|
||||
this(alias, V_VERSION);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>camp.v_version</code> table reference
|
||||
* Create a <code>public.v_version</code> table reference
|
||||
*/
|
||||
public VVersion() {
|
||||
this(DSL.name("v_version"), null);
|
||||
@ -85,7 +85,7 @@ public class VVersion extends TableImpl<VVersionRecord> {
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Camp.CAMP;
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -28,6 +28,10 @@ public class TCamp implements Serializable {
|
||||
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;
|
||||
|
||||
public TCamp(TCamp value) {
|
||||
this.pk = value.pk;
|
||||
@ -42,6 +46,10 @@ public class TCamp implements Serializable {
|
||||
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;
|
||||
}
|
||||
|
||||
public TCamp(
|
||||
@ -56,7 +64,11 @@ public class TCamp implements Serializable {
|
||||
String countries,
|
||||
Integer fkDocument,
|
||||
Boolean lockSales,
|
||||
Integer fkProfile
|
||||
Integer fkProfile,
|
||||
Integer bedsMale,
|
||||
Integer bedsFemale,
|
||||
Integer blockedBedsMale,
|
||||
Integer blockedBedsFemale
|
||||
) {
|
||||
this.pk = pk;
|
||||
this.name = name;
|
||||
@ -70,92 +82,124 @@ public class TCamp implements Serializable {
|
||||
this.fkDocument = fkDocument;
|
||||
this.lockSales = lockSales;
|
||||
this.fkProfile = fkProfile;
|
||||
this.bedsMale = bedsMale;
|
||||
this.bedsFemale = bedsFemale;
|
||||
this.blockedBedsMale = blockedBedsMale;
|
||||
this.blockedBedsFemale = blockedBedsFemale;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.pk</code>.
|
||||
* Getter for <code>public.t_camp.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.name</code>.
|
||||
* Getter for <code>public.t_camp.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.arrive</code>.
|
||||
* Getter for <code>public.t_camp.arrive</code>.
|
||||
*/
|
||||
public LocalDateTime getArrive() {
|
||||
return this.arrive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.depart</code>.
|
||||
* Getter for <code>public.t_camp.depart</code>.
|
||||
*/
|
||||
public LocalDateTime getDepart() {
|
||||
return this.depart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.fk_location</code>.
|
||||
* Getter for <code>public.t_camp.fk_location</code>.
|
||||
*/
|
||||
public Integer getFkLocation() {
|
||||
return this.fkLocation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.min_age</code>.
|
||||
* Getter for <code>public.t_camp.min_age</code>.
|
||||
*/
|
||||
public Integer getMinAge() {
|
||||
return this.minAge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.max_age</code>.
|
||||
* Getter for <code>public.t_camp.max_age</code>.
|
||||
*/
|
||||
public Integer getMaxAge() {
|
||||
return this.maxAge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.price</code>.
|
||||
* Getter for <code>public.t_camp.price</code>.
|
||||
*/
|
||||
public String getPrice() {
|
||||
return this.price;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.countries</code>.
|
||||
* Getter for <code>public.t_camp.countries</code>.
|
||||
*/
|
||||
public String getCountries() {
|
||||
return this.countries;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.fk_document</code>.
|
||||
* Getter for <code>public.t_camp.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return this.fkDocument;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.lock_sales</code>.
|
||||
* Getter for <code>public.t_camp.lock_sales</code>.
|
||||
*/
|
||||
public Boolean getLockSales() {
|
||||
return this.lockSales;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.fk_profile</code>.
|
||||
* 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;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
@ -237,6 +281,30 @@ public class TCamp implements Serializable {
|
||||
}
|
||||
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;
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -256,6 +324,10 @@ public class TCamp implements Serializable {
|
||||
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());
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -275,6 +347,10 @@ public class TCamp implements Serializable {
|
||||
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(")");
|
||||
return sb.toString();
|
||||
|
@ -36,21 +36,21 @@ public class TCampdocument implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campdocument.pk</code>.
|
||||
* Getter for <code>public.t_campdocument.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campdocument.fk_camp</code>.
|
||||
* Getter for <code>public.t_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campdocument.fk_document</code>.
|
||||
* Getter for <code>public.t_campdocument.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return this.fkDocument;
|
||||
|
@ -42,28 +42,28 @@ public class TCampprofile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.pk</code>.
|
||||
* Getter for <code>public.t_campprofile.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.fk_profile</code>.
|
||||
* Getter for <code>public.t_campprofile.fk_profile</code>.
|
||||
*/
|
||||
public Integer getFkProfile() {
|
||||
return this.fkProfile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.fk_camp</code>.
|
||||
* Getter for <code>public.t_campprofile.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.module</code>.
|
||||
* Getter for <code>public.t_campprofile.module</code>.
|
||||
*/
|
||||
public EnumModule getModule() {
|
||||
return this.module;
|
||||
|
@ -47,35 +47,35 @@ public class TDocument implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.pk</code>.
|
||||
* Getter for <code>public.t_document.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.doctype</code>.
|
||||
* Getter for <code>public.t_document.doctype</code>.
|
||||
*/
|
||||
public EnumDocument getDoctype() {
|
||||
return this.doctype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.name</code>.
|
||||
* Getter for <code>public.t_document.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.document</code>.
|
||||
* Getter for <code>public.t_document.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return this.document;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.filetype</code>.
|
||||
* Getter for <code>public.t_document.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return this.filetype;
|
||||
|
@ -38,21 +38,21 @@ public class TDocumentrole implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_documentrole.pk</code>.
|
||||
* Getter for <code>public.t_documentrole.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_documentrole.fk_document</code>.
|
||||
* Getter for <code>public.t_documentrole.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return this.fkDocument;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_documentrole.camprole</code>.
|
||||
* Getter for <code>public.t_documentrole.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return this.camprole;
|
||||
|
@ -40,28 +40,28 @@ public class TLocation implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.pk</code>.
|
||||
* Getter for <code>public.t_location.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.name</code>.
|
||||
* Getter for <code>public.t_location.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.url</code>.
|
||||
* Getter for <code>public.t_location.url</code>.
|
||||
*/
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.fk_document</code>.
|
||||
* Getter for <code>public.t_location.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return this.fkDocument;
|
||||
|
@ -110,140 +110,140 @@ public class TPerson implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.pk</code>.
|
||||
* Getter for <code>public.t_person.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.forename</code>.
|
||||
* Getter for <code>public.t_person.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return this.forename;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.surname</code>.
|
||||
* Getter for <code>public.t_person.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return this.surname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.street</code>.
|
||||
* Getter for <code>public.t_person.street</code>.
|
||||
*/
|
||||
public String getStreet() {
|
||||
return this.street;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.zip</code>.
|
||||
* Getter for <code>public.t_person.zip</code>.
|
||||
*/
|
||||
public String getZip() {
|
||||
return this.zip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.city</code>.
|
||||
* Getter for <code>public.t_person.city</code>.
|
||||
*/
|
||||
public String getCity() {
|
||||
return this.city;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.phone</code>.
|
||||
* Getter for <code>public.t_person.phone</code>.
|
||||
*/
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.birthdate</code>.
|
||||
* Getter for <code>public.t_person.birthdate</code>.
|
||||
*/
|
||||
public LocalDate getBirthdate() {
|
||||
return this.birthdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.camprole</code>.
|
||||
* Getter for <code>public.t_person.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return this.camprole;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.email</code>.
|
||||
* Getter for <code>public.t_person.email</code>.
|
||||
*/
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.fk_camp</code>.
|
||||
* Getter for <code>public.t_person.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.fk_profile</code>.
|
||||
* Getter for <code>public.t_person.fk_profile</code>.
|
||||
*/
|
||||
public Integer getFkProfile() {
|
||||
return this.fkProfile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.accept</code>.
|
||||
* Getter for <code>public.t_person.accept</code>.
|
||||
*/
|
||||
public Boolean getAccept() {
|
||||
return this.accept;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.created</code>.
|
||||
* Getter for <code>public.t_person.created</code>.
|
||||
*/
|
||||
public LocalDateTime getCreated() {
|
||||
return this.created;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.sex</code>.
|
||||
* Getter for <code>public.t_person.sex</code>.
|
||||
*/
|
||||
public EnumSex getSex() {
|
||||
return this.sex;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.fk_registrator</code>.
|
||||
* Getter for <code>public.t_person.fk_registrator</code>.
|
||||
*/
|
||||
public Integer getFkRegistrator() {
|
||||
return this.fkRegistrator;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.paid</code>.
|
||||
* Getter for <code>public.t_person.paid</code>.
|
||||
*/
|
||||
public BigDecimal getPaid() {
|
||||
return this.paid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.comment</code>.
|
||||
* Getter for <code>public.t_person.comment</code>.
|
||||
*/
|
||||
public String getComment() {
|
||||
return this.comment;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.consent_catalog_photo</code>.
|
||||
* Getter for <code>public.t_person.consent_catalog_photo</code>.
|
||||
*/
|
||||
public Boolean getConsentCatalogPhoto() {
|
||||
return this.consentCatalogPhoto;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.required_price</code>.
|
||||
* Getter for <code>public.t_person.required_price</code>.
|
||||
*/
|
||||
public BigDecimal getRequiredPrice() {
|
||||
return this.requiredPrice;
|
||||
|
@ -46,35 +46,35 @@ public class TPersondocument implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.pk</code>.
|
||||
* Getter for <code>public.t_persondocument.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.fk_person</code>.
|
||||
* Getter for <code>public.t_persondocument.fk_person</code>.
|
||||
*/
|
||||
public Integer getFkPerson() {
|
||||
return this.fkPerson;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.name</code>.
|
||||
* Getter for <code>public.t_persondocument.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.document</code>.
|
||||
* Getter for <code>public.t_persondocument.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return this.document;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.filetype</code>.
|
||||
* Getter for <code>public.t_persondocument.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return this.filetype;
|
||||
|
@ -53,49 +53,49 @@ public class TProfile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.pk</code>.
|
||||
* Getter for <code>public.t_profile.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.forename</code>.
|
||||
* Getter for <code>public.t_profile.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return this.forename;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.surname</code>.
|
||||
* Getter for <code>public.t_profile.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return this.surname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.username</code>.
|
||||
* Getter for <code>public.t_profile.username</code>.
|
||||
*/
|
||||
public String getUsername() {
|
||||
return this.username;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.password</code>.
|
||||
* Getter for <code>public.t_profile.password</code>.
|
||||
*/
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.duedate</code>.
|
||||
* Getter for <code>public.t_profile.duedate</code>.
|
||||
*/
|
||||
public LocalDateTime getDuedate() {
|
||||
return this.duedate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.uuid</code>.
|
||||
* Getter for <code>public.t_profile.uuid</code>.
|
||||
*/
|
||||
public String getUuid() {
|
||||
return this.uuid;
|
||||
|
@ -34,14 +34,14 @@ public class TProfilerole implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profilerole.fk_profile</code>.
|
||||
* Getter for <code>public.t_profilerole.fk_profile</code>.
|
||||
*/
|
||||
public Integer getFkProfile() {
|
||||
return this.fkProfile;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profilerole.role</code>.
|
||||
* Getter for <code>public.t_profilerole.role</code>.
|
||||
*/
|
||||
public EnumRole getRole() {
|
||||
return this.role;
|
||||
|
@ -16,58 +16,58 @@ 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;
|
||||
private final Integer pk;
|
||||
|
||||
public TRss(TRss value) {
|
||||
this.pk = value.pk;
|
||||
this.msg = value.msg;
|
||||
this.regdate = value.regdate;
|
||||
this.recipient = value.recipient;
|
||||
this.pk = value.pk;
|
||||
}
|
||||
|
||||
public TRss(
|
||||
Integer pk,
|
||||
String msg,
|
||||
LocalDateTime regdate,
|
||||
String recipient,
|
||||
Integer pk
|
||||
String recipient
|
||||
) {
|
||||
this.pk = pk;
|
||||
this.msg = msg;
|
||||
this.regdate = regdate;
|
||||
this.recipient = recipient;
|
||||
this.pk = pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_rss.msg</code>.
|
||||
* 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>camp.t_rss.regdate</code>.
|
||||
* Getter for <code>public.t_rss.regdate</code>.
|
||||
*/
|
||||
public LocalDateTime getRegdate() {
|
||||
return this.regdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_rss.recipient</code>.
|
||||
* Getter for <code>public.t_rss.recipient</code>.
|
||||
*/
|
||||
public String getRecipient() {
|
||||
return this.recipient;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_rss.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
@ -77,6 +77,12 @@ public class TRss implements Serializable {
|
||||
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;
|
||||
@ -95,12 +101,6 @@ public class TRss implements Serializable {
|
||||
}
|
||||
else if (!this.recipient.equals(other.recipient))
|
||||
return false;
|
||||
if (this.pk == null) {
|
||||
if (other.pk != null)
|
||||
return false;
|
||||
}
|
||||
else if (!this.pk.equals(other.pk))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -108,10 +108,10 @@ public class TRss implements Serializable {
|
||||
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());
|
||||
result = prime * result + ((this.pk == null) ? 0 : this.pk.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@ -119,10 +119,10 @@ public class TRss implements Serializable {
|
||||
public String toString() {
|
||||
StringBuilder sb = new StringBuilder("TRss (");
|
||||
|
||||
sb.append(msg);
|
||||
sb.append(pk);
|
||||
sb.append(", ").append(msg);
|
||||
sb.append(", ").append(regdate);
|
||||
sb.append(", ").append(recipient);
|
||||
sb.append(", ").append(pk);
|
||||
|
||||
sb.append(")");
|
||||
return sb.toString();
|
||||
|
@ -71,77 +71,77 @@ public class TSales implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.pk</code>.
|
||||
* Getter for <code>public.t_sales.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.trader</code>.
|
||||
* Getter for <code>public.t_sales.trader</code>.
|
||||
*/
|
||||
public String getTrader() {
|
||||
return this.trader;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.fk_camp</code>.
|
||||
* Getter for <code>public.t_sales.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.provider</code>.
|
||||
* Getter for <code>public.t_sales.provider</code>.
|
||||
*/
|
||||
public String getProvider() {
|
||||
return this.provider;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.cash</code>.
|
||||
* Getter for <code>public.t_sales.cash</code>.
|
||||
*/
|
||||
public BigDecimal getCash() {
|
||||
return this.cash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.buydate</code>.
|
||||
* Getter for <code>public.t_sales.buydate</code>.
|
||||
*/
|
||||
public LocalDateTime getBuydate() {
|
||||
return this.buydate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipenumber</code>.
|
||||
* Getter for <code>public.t_sales.recipenumber</code>.
|
||||
*/
|
||||
public String getRecipenumber() {
|
||||
return this.recipenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipeshot</code>.
|
||||
* Getter for <code>public.t_sales.recipeshot</code>.
|
||||
*/
|
||||
public byte[] getRecipeshot() {
|
||||
return this.recipeshot;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipenote</code>.
|
||||
* Getter for <code>public.t_sales.recipenote</code>.
|
||||
*/
|
||||
public String getRecipenote() {
|
||||
return this.recipenote;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.incredients</code>.
|
||||
* Getter for <code>public.t_sales.incredients</code>.
|
||||
*/
|
||||
public String getIncredients() {
|
||||
return this.incredients;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipefilename</code>.
|
||||
* Getter for <code>public.t_sales.recipefilename</code>.
|
||||
*/
|
||||
public String getRecipefilename() {
|
||||
return this.recipefilename;
|
||||
|
@ -32,14 +32,14 @@ public class TSalescontent implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_salescontent.fk_sales</code>.
|
||||
* Getter for <code>public.t_salescontent.fk_sales</code>.
|
||||
*/
|
||||
public Integer getFkSales() {
|
||||
return this.fkSales;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_salescontent.fk_salescontenttype</code>.
|
||||
* Getter for <code>public.t_salescontent.fk_salescontenttype</code>.
|
||||
*/
|
||||
public String getFkSalescontenttype() {
|
||||
return this.fkSalescontenttype;
|
||||
|
@ -28,7 +28,7 @@ public class TSalescontenttype implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_salescontenttype.name</code>.
|
||||
* Getter for <code>public.t_salescontenttype.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
|
@ -0,0 +1,152 @@
|
||||
/*
|
||||
* 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" })
|
||||
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();
|
||||
}
|
||||
}
|
@ -45,35 +45,35 @@ public class VBudget implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.budget</code>.
|
||||
* Getter for <code>public.v_budget.budget</code>.
|
||||
*/
|
||||
public BigDecimal getBudget() {
|
||||
return this.budget;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.fk_camp</code>.
|
||||
* Getter for <code>public.v_budget.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.name</code>.
|
||||
* Getter for <code>public.v_budget.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.location</code>.
|
||||
* Getter for <code>public.v_budget.location</code>.
|
||||
*/
|
||||
public String getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.year</code>.
|
||||
* Getter for <code>public.v_budget.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return this.year;
|
||||
|
@ -77,91 +77,91 @@ public class VCamp implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.pk</code>.
|
||||
* Getter for <code>public.v_camp.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.is_over</code>.
|
||||
* Getter for <code>public.v_camp.is_over</code>.
|
||||
*/
|
||||
public Boolean getIsOver() {
|
||||
return this.isOver;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.name</code>.
|
||||
* Getter for <code>public.v_camp.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.arrive</code>.
|
||||
* Getter for <code>public.v_camp.arrive</code>.
|
||||
*/
|
||||
public LocalDateTime getArrive() {
|
||||
return this.arrive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.depart</code>.
|
||||
* Getter for <code>public.v_camp.depart</code>.
|
||||
*/
|
||||
public LocalDateTime getDepart() {
|
||||
return this.depart;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.year</code>.
|
||||
* Getter for <code>public.v_camp.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return this.year;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.location_name</code>.
|
||||
* Getter for <code>public.v_camp.location_name</code>.
|
||||
*/
|
||||
public String getLocationName() {
|
||||
return this.locationName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.min_age</code>.
|
||||
* Getter for <code>public.v_camp.min_age</code>.
|
||||
*/
|
||||
public Integer getMinAge() {
|
||||
return this.minAge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.max_age</code>.
|
||||
* Getter for <code>public.v_camp.max_age</code>.
|
||||
*/
|
||||
public Integer getMaxAge() {
|
||||
return this.maxAge;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.url</code>.
|
||||
* Getter for <code>public.v_camp.url</code>.
|
||||
*/
|
||||
public String getUrl() {
|
||||
return this.url;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.price</code>.
|
||||
* Getter for <code>public.v_camp.price</code>.
|
||||
*/
|
||||
public String getPrice() {
|
||||
return this.price;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.countries</code>.
|
||||
* Getter for <code>public.v_camp.countries</code>.
|
||||
*/
|
||||
public String getCountries() {
|
||||
return this.countries;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.fk_document</code>.
|
||||
* Getter for <code>public.v_camp.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return this.fkDocument;
|
||||
|
@ -41,28 +41,28 @@ public class VCampBudget implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.budget</code>.
|
||||
* Getter for <code>public.v_camp_budget.budget</code>.
|
||||
*/
|
||||
public BigDecimal getBudget() {
|
||||
return this.budget;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.fk_camp</code>.
|
||||
* Getter for <code>public.v_camp_budget.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.camp_name</code>.
|
||||
* Getter for <code>public.v_camp_budget.camp_name</code>.
|
||||
*/
|
||||
public String getCampName() {
|
||||
return this.campName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.year</code>.
|
||||
* Getter for <code>public.v_camp_budget.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return this.year;
|
||||
|
@ -33,14 +33,14 @@ public class VCampBudgetYear implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget_year.sum</code>.
|
||||
* Getter for <code>public.v_camp_budget_year.sum</code>.
|
||||
*/
|
||||
public BigDecimal getSum() {
|
||||
return this.sum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget_year.year</code>.
|
||||
* Getter for <code>public.v_camp_budget_year.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return this.year;
|
||||
|
@ -60,56 +60,56 @@ public class VCampdocument implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.fk_camp</code>.
|
||||
* Getter for <code>public.v_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.campname</code>.
|
||||
* Getter for <code>public.v_campdocument.campname</code>.
|
||||
*/
|
||||
public String getCampname() {
|
||||
return this.campname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.arrive</code>.
|
||||
* Getter for <code>public.v_campdocument.arrive</code>.
|
||||
*/
|
||||
public LocalDateTime getArrive() {
|
||||
return this.arrive;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.fk_document</code>.
|
||||
* Getter for <code>public.v_campdocument.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return this.fkDocument;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.document</code>.
|
||||
* Getter for <code>public.v_campdocument.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return this.document;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.documentname</code>.
|
||||
* Getter for <code>public.v_campdocument.documentname</code>.
|
||||
*/
|
||||
public String getDocumentname() {
|
||||
return this.documentname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.doctype</code>.
|
||||
* Getter for <code>public.v_campdocument.doctype</code>.
|
||||
*/
|
||||
public EnumDocument getDoctype() {
|
||||
return this.doctype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.filetype</code>.
|
||||
* Getter for <code>public.v_campdocument.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return this.filetype;
|
||||
|
@ -30,7 +30,7 @@ public class VCamprole implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camprole.name</code>.
|
||||
* Getter for <code>public.v_camprole.name</code>.
|
||||
*/
|
||||
public EnumCamprole getName() {
|
||||
return this.name;
|
||||
|
@ -51,42 +51,42 @@ public class VDocument implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.pk</code>.
|
||||
* Getter for <code>public.v_document.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.doctype</code>.
|
||||
* Getter for <code>public.v_document.doctype</code>.
|
||||
*/
|
||||
public EnumDocument getDoctype() {
|
||||
return this.doctype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.name</code>.
|
||||
* Getter for <code>public.v_document.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.document</code>.
|
||||
* Getter for <code>public.v_document.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return this.document;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.filetype</code>.
|
||||
* Getter for <code>public.v_document.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return this.filetype;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.roles</code>.
|
||||
* Getter for <code>public.v_document.roles</code>.
|
||||
*/
|
||||
public String getRoles() {
|
||||
return this.roles;
|
||||
|
@ -0,0 +1,228 @@
|
||||
/*
|
||||
* 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" })
|
||||
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();
|
||||
}
|
||||
}
|
@ -0,0 +1,266 @@
|
||||
/*
|
||||
* 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" })
|
||||
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();
|
||||
}
|
||||
}
|
@ -55,49 +55,49 @@ public class VProfile implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.pk</code>.
|
||||
* Getter for <code>public.v_profile.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.forename</code>.
|
||||
* Getter for <code>public.v_profile.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return this.forename;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.surname</code>.
|
||||
* Getter for <code>public.v_profile.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return this.surname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.username</code>.
|
||||
* Getter for <code>public.v_profile.username</code>.
|
||||
*/
|
||||
public String getUsername() {
|
||||
return this.username;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.password</code>.
|
||||
* Getter for <code>public.v_profile.password</code>.
|
||||
*/
|
||||
public String getPassword() {
|
||||
return this.password;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.uuid</code>.
|
||||
* Getter for <code>public.v_profile.uuid</code>.
|
||||
*/
|
||||
public String getUuid() {
|
||||
return this.uuid;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.roles</code>.
|
||||
* Getter for <code>public.v_profile.roles</code>.
|
||||
*/
|
||||
public EnumRole[] getRoles() {
|
||||
return this.roles;
|
||||
|
@ -71,77 +71,77 @@ public class VRegistration implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.pk</code>.
|
||||
* Getter for <code>public.v_registration.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.forename</code>.
|
||||
* Getter for <code>public.v_registration.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return this.forename;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.surname</code>.
|
||||
* Getter for <code>public.v_registration.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return this.surname;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.street</code>.
|
||||
* Getter for <code>public.v_registration.street</code>.
|
||||
*/
|
||||
public String getStreet() {
|
||||
return this.street;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.zip</code>.
|
||||
* Getter for <code>public.v_registration.zip</code>.
|
||||
*/
|
||||
public String getZip() {
|
||||
return this.zip;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.city</code>.
|
||||
* Getter for <code>public.v_registration.city</code>.
|
||||
*/
|
||||
public String getCity() {
|
||||
return this.city;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.phone</code>.
|
||||
* Getter for <code>public.v_registration.phone</code>.
|
||||
*/
|
||||
public String getPhone() {
|
||||
return this.phone;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.birthdate</code>.
|
||||
* Getter for <code>public.v_registration.birthdate</code>.
|
||||
*/
|
||||
public LocalDate getBirthdate() {
|
||||
return this.birthdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.camprole</code>.
|
||||
* Getter for <code>public.v_registration.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return this.camprole;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.email</code>.
|
||||
* Getter for <code>public.v_registration.email</code>.
|
||||
*/
|
||||
public String getEmail() {
|
||||
return this.email;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.campname</code>.
|
||||
* Getter for <code>public.v_registration.campname</code>.
|
||||
*/
|
||||
public String getCampname() {
|
||||
return this.campname;
|
||||
|
@ -30,7 +30,7 @@ public class VRole implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_role.unnest</code>.
|
||||
* Getter for <code>public.v_role.unnest</code>.
|
||||
*/
|
||||
public EnumRole getUnnest() {
|
||||
return this.unnest;
|
||||
|
@ -91,112 +91,112 @@ public class VSales implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.pk</code>.
|
||||
* Getter for <code>public.v_sales.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return this.pk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.trader</code>.
|
||||
* Getter for <code>public.v_sales.trader</code>.
|
||||
*/
|
||||
public String getTrader() {
|
||||
return this.trader;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.fk_camp</code>.
|
||||
* Getter for <code>public.v_sales.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return this.fkCamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.name</code>.
|
||||
* Getter for <code>public.v_sales.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.fk_location</code>.
|
||||
* Getter for <code>public.v_sales.fk_location</code>.
|
||||
*/
|
||||
public Integer getFkLocation() {
|
||||
return this.fkLocation;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.location</code>.
|
||||
* Getter for <code>public.v_sales.location</code>.
|
||||
*/
|
||||
public String getLocation() {
|
||||
return this.location;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.incredients</code>.
|
||||
* Getter for <code>public.v_sales.incredients</code>.
|
||||
*/
|
||||
public String getIncredients() {
|
||||
return this.incredients;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.year</code>.
|
||||
* Getter for <code>public.v_sales.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return this.year;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.fk_sales</code>.
|
||||
* Getter for <code>public.v_sales.fk_sales</code>.
|
||||
*/
|
||||
public Integer getFkSales() {
|
||||
return this.fkSales;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.provider</code>.
|
||||
* Getter for <code>public.v_sales.provider</code>.
|
||||
*/
|
||||
public String getProvider() {
|
||||
return this.provider;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.cash</code>.
|
||||
* Getter for <code>public.v_sales.cash</code>.
|
||||
*/
|
||||
public BigDecimal getCash() {
|
||||
return this.cash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.buydate</code>.
|
||||
* Getter for <code>public.v_sales.buydate</code>.
|
||||
*/
|
||||
public LocalDateTime getBuydate() {
|
||||
return this.buydate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.recipenumber</code>.
|
||||
* Getter for <code>public.v_sales.recipenumber</code>.
|
||||
*/
|
||||
public String getRecipenumber() {
|
||||
return this.recipenumber;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.recipeshot</code>.
|
||||
* Getter for <code>public.v_sales.recipeshot</code>.
|
||||
*/
|
||||
public byte[] getRecipeshot() {
|
||||
return this.recipeshot;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.recipenote</code>.
|
||||
* Getter for <code>public.v_sales.recipenote</code>.
|
||||
*/
|
||||
public String getRecipenote() {
|
||||
return this.recipenote;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.content</code>.
|
||||
* Getter for <code>public.v_sales.content</code>.
|
||||
*/
|
||||
public String[] getContent() {
|
||||
return this.content;
|
||||
|
@ -28,7 +28,7 @@ public class VVersion implements Serializable {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_version.version</code>.
|
||||
* Getter for <code>public.v_version.version</code>.
|
||||
*/
|
||||
public String getVersion() {
|
||||
return this.version;
|
||||
|
@ -21,7 +21,7 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.pk</code>.
|
||||
* Setter for <code>public.t_camp.pk</code>.
|
||||
*/
|
||||
public TCampRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -29,14 +29,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.pk</code>.
|
||||
* Getter for <code>public.t_camp.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.name</code>.
|
||||
* Setter for <code>public.t_camp.name</code>.
|
||||
*/
|
||||
public TCampRecord setName(String value) {
|
||||
set(1, value);
|
||||
@ -44,14 +44,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.name</code>.
|
||||
* Getter for <code>public.t_camp.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.arrive</code>.
|
||||
* Setter for <code>public.t_camp.arrive</code>.
|
||||
*/
|
||||
public TCampRecord setArrive(LocalDateTime value) {
|
||||
set(2, value);
|
||||
@ -59,14 +59,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.arrive</code>.
|
||||
* Getter for <code>public.t_camp.arrive</code>.
|
||||
*/
|
||||
public LocalDateTime getArrive() {
|
||||
return (LocalDateTime) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.depart</code>.
|
||||
* Setter for <code>public.t_camp.depart</code>.
|
||||
*/
|
||||
public TCampRecord setDepart(LocalDateTime value) {
|
||||
set(3, value);
|
||||
@ -74,14 +74,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.depart</code>.
|
||||
* Getter for <code>public.t_camp.depart</code>.
|
||||
*/
|
||||
public LocalDateTime getDepart() {
|
||||
return (LocalDateTime) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.fk_location</code>.
|
||||
* Setter for <code>public.t_camp.fk_location</code>.
|
||||
*/
|
||||
public TCampRecord setFkLocation(Integer value) {
|
||||
set(4, value);
|
||||
@ -89,14 +89,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.fk_location</code>.
|
||||
* Getter for <code>public.t_camp.fk_location</code>.
|
||||
*/
|
||||
public Integer getFkLocation() {
|
||||
return (Integer) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.min_age</code>.
|
||||
* Setter for <code>public.t_camp.min_age</code>.
|
||||
*/
|
||||
public TCampRecord setMinAge(Integer value) {
|
||||
set(5, value);
|
||||
@ -104,14 +104,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.min_age</code>.
|
||||
* Getter for <code>public.t_camp.min_age</code>.
|
||||
*/
|
||||
public Integer getMinAge() {
|
||||
return (Integer) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.max_age</code>.
|
||||
* Setter for <code>public.t_camp.max_age</code>.
|
||||
*/
|
||||
public TCampRecord setMaxAge(Integer value) {
|
||||
set(6, value);
|
||||
@ -119,14 +119,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.max_age</code>.
|
||||
* Getter for <code>public.t_camp.max_age</code>.
|
||||
*/
|
||||
public Integer getMaxAge() {
|
||||
return (Integer) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.price</code>.
|
||||
* Setter for <code>public.t_camp.price</code>.
|
||||
*/
|
||||
public TCampRecord setPrice(String value) {
|
||||
set(7, value);
|
||||
@ -134,14 +134,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.price</code>.
|
||||
* Getter for <code>public.t_camp.price</code>.
|
||||
*/
|
||||
public String getPrice() {
|
||||
return (String) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.countries</code>.
|
||||
* Setter for <code>public.t_camp.countries</code>.
|
||||
*/
|
||||
public TCampRecord setCountries(String value) {
|
||||
set(8, value);
|
||||
@ -149,14 +149,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.countries</code>.
|
||||
* Getter for <code>public.t_camp.countries</code>.
|
||||
*/
|
||||
public String getCountries() {
|
||||
return (String) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.fk_document</code>.
|
||||
* Setter for <code>public.t_camp.fk_document</code>.
|
||||
*/
|
||||
public TCampRecord setFkDocument(Integer value) {
|
||||
set(9, value);
|
||||
@ -164,14 +164,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.fk_document</code>.
|
||||
* Getter for <code>public.t_camp.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return (Integer) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.lock_sales</code>.
|
||||
* Setter for <code>public.t_camp.lock_sales</code>.
|
||||
*/
|
||||
public TCampRecord setLockSales(Boolean value) {
|
||||
set(10, value);
|
||||
@ -179,14 +179,14 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.lock_sales</code>.
|
||||
* Getter for <code>public.t_camp.lock_sales</code>.
|
||||
*/
|
||||
public Boolean getLockSales() {
|
||||
return (Boolean) get(10);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_camp.fk_profile</code>.
|
||||
* Setter for <code>public.t_camp.fk_profile</code>.
|
||||
*/
|
||||
public TCampRecord setFkProfile(Integer value) {
|
||||
set(11, value);
|
||||
@ -194,12 +194,72 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_camp.fk_profile</code>.
|
||||
* Getter for <code>public.t_camp.fk_profile</code>.
|
||||
*/
|
||||
public Integer getFkProfile() {
|
||||
return (Integer) get(11);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_camp.beds_male</code>.
|
||||
*/
|
||||
public TCampRecord setBedsMale(Integer value) {
|
||||
set(12, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_camp.beds_male</code>.
|
||||
*/
|
||||
public Integer getBedsMale() {
|
||||
return (Integer) get(12);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_camp.beds_female</code>.
|
||||
*/
|
||||
public TCampRecord setBedsFemale(Integer value) {
|
||||
set(13, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_camp.beds_female</code>.
|
||||
*/
|
||||
public Integer getBedsFemale() {
|
||||
return (Integer) get(13);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_camp.blocked_beds_male</code>.
|
||||
*/
|
||||
public TCampRecord setBlockedBedsMale(Integer value) {
|
||||
set(14, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_camp.blocked_beds_male</code>.
|
||||
*/
|
||||
public Integer getBlockedBedsMale() {
|
||||
return (Integer) get(14);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.t_camp.blocked_beds_female</code>.
|
||||
*/
|
||||
public TCampRecord setBlockedBedsFemale(Integer value) {
|
||||
set(15, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.t_camp.blocked_beds_female</code>.
|
||||
*/
|
||||
public Integer getBlockedBedsFemale() {
|
||||
return (Integer) get(15);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Primary key information
|
||||
// -------------------------------------------------------------------------
|
||||
@ -223,7 +283,7 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
/**
|
||||
* Create a detached, initialised TCampRecord
|
||||
*/
|
||||
public TCampRecord(Integer pk, String name, LocalDateTime arrive, LocalDateTime depart, Integer fkLocation, Integer minAge, Integer maxAge, String price, String countries, Integer fkDocument, Boolean lockSales, Integer fkProfile) {
|
||||
public TCampRecord(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) {
|
||||
super(TCamp.T_CAMP);
|
||||
|
||||
setPk(pk);
|
||||
@ -238,6 +298,10 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
setFkDocument(fkDocument);
|
||||
setLockSales(lockSales);
|
||||
setFkProfile(fkProfile);
|
||||
setBedsMale(bedsMale);
|
||||
setBedsFemale(bedsFemale);
|
||||
setBlockedBedsMale(blockedBedsMale);
|
||||
setBlockedBedsFemale(blockedBedsFemale);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
|
||||
@ -260,6 +324,10 @@ public class TCampRecord extends UpdatableRecordImpl<TCampRecord> {
|
||||
setFkDocument(value.getFkDocument());
|
||||
setLockSales(value.getLockSales());
|
||||
setFkProfile(value.getFkProfile());
|
||||
setBedsMale(value.getBedsMale());
|
||||
setBedsFemale(value.getBedsFemale());
|
||||
setBlockedBedsMale(value.getBlockedBedsMale());
|
||||
setBlockedBedsFemale(value.getBlockedBedsFemale());
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
@ -19,7 +19,7 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_campdocument.pk</code>.
|
||||
* Setter for <code>public.t_campdocument.pk</code>.
|
||||
*/
|
||||
public TCampdocumentRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -27,14 +27,14 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campdocument.pk</code>.
|
||||
* Getter for <code>public.t_campdocument.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_campdocument.fk_camp</code>.
|
||||
* Setter for <code>public.t_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public TCampdocumentRecord setFkCamp(Integer value) {
|
||||
set(1, value);
|
||||
@ -42,14 +42,14 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campdocument.fk_camp</code>.
|
||||
* Getter for <code>public.t_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_campdocument.fk_document</code>.
|
||||
* Setter for <code>public.t_campdocument.fk_document</code>.
|
||||
*/
|
||||
public TCampdocumentRecord setFkDocument(Integer value) {
|
||||
set(2, value);
|
||||
@ -57,7 +57,7 @@ public class TCampdocumentRecord extends UpdatableRecordImpl<TCampdocumentRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campdocument.fk_document</code>.
|
||||
* Getter for <code>public.t_campdocument.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return (Integer) get(2);
|
||||
|
@ -20,7 +20,7 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_campprofile.pk</code>.
|
||||
* Setter for <code>public.t_campprofile.pk</code>.
|
||||
*/
|
||||
public TCampprofileRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.pk</code>.
|
||||
* Getter for <code>public.t_campprofile.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_campprofile.fk_profile</code>.
|
||||
* Setter for <code>public.t_campprofile.fk_profile</code>.
|
||||
*/
|
||||
public TCampprofileRecord setFkProfile(Integer value) {
|
||||
set(1, value);
|
||||
@ -43,14 +43,14 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.fk_profile</code>.
|
||||
* Getter for <code>public.t_campprofile.fk_profile</code>.
|
||||
*/
|
||||
public Integer getFkProfile() {
|
||||
return (Integer) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_campprofile.fk_camp</code>.
|
||||
* Setter for <code>public.t_campprofile.fk_camp</code>.
|
||||
*/
|
||||
public TCampprofileRecord setFkCamp(Integer value) {
|
||||
set(2, value);
|
||||
@ -58,14 +58,14 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.fk_camp</code>.
|
||||
* Getter for <code>public.t_campprofile.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_campprofile.module</code>.
|
||||
* Setter for <code>public.t_campprofile.module</code>.
|
||||
*/
|
||||
public TCampprofileRecord setModule(EnumModule value) {
|
||||
set(3, value);
|
||||
@ -73,7 +73,7 @@ public class TCampprofileRecord extends UpdatableRecordImpl<TCampprofileRecord>
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_campprofile.module</code>.
|
||||
* Getter for <code>public.t_campprofile.module</code>.
|
||||
*/
|
||||
public EnumModule getModule() {
|
||||
return (EnumModule) get(3);
|
||||
|
@ -21,7 +21,7 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_document.pk</code>.
|
||||
* Setter for <code>public.t_document.pk</code>.
|
||||
*/
|
||||
public TDocumentRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -29,14 +29,14 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.pk</code>.
|
||||
* Getter for <code>public.t_document.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_document.doctype</code>.
|
||||
* Setter for <code>public.t_document.doctype</code>.
|
||||
*/
|
||||
public TDocumentRecord setDoctype(EnumDocument value) {
|
||||
set(1, value);
|
||||
@ -44,14 +44,14 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.doctype</code>.
|
||||
* Getter for <code>public.t_document.doctype</code>.
|
||||
*/
|
||||
public EnumDocument getDoctype() {
|
||||
return (EnumDocument) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_document.name</code>.
|
||||
* Setter for <code>public.t_document.name</code>.
|
||||
*/
|
||||
public TDocumentRecord setName(String value) {
|
||||
set(2, value);
|
||||
@ -59,14 +59,14 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.name</code>.
|
||||
* Getter for <code>public.t_document.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_document.document</code>.
|
||||
* Setter for <code>public.t_document.document</code>.
|
||||
*/
|
||||
public TDocumentRecord setDocument(String value) {
|
||||
set(3, value);
|
||||
@ -74,14 +74,14 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.document</code>.
|
||||
* Getter for <code>public.t_document.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_document.filetype</code>.
|
||||
* Setter for <code>public.t_document.filetype</code>.
|
||||
*/
|
||||
public TDocumentRecord setFiletype(EnumFiletype value) {
|
||||
set(4, value);
|
||||
@ -89,7 +89,7 @@ public class TDocumentRecord extends UpdatableRecordImpl<TDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_document.filetype</code>.
|
||||
* Getter for <code>public.t_document.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return (EnumFiletype) get(4);
|
||||
|
@ -20,7 +20,7 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_documentrole.pk</code>.
|
||||
* Setter for <code>public.t_documentrole.pk</code>.
|
||||
*/
|
||||
public TDocumentroleRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_documentrole.pk</code>.
|
||||
* Getter for <code>public.t_documentrole.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_documentrole.fk_document</code>.
|
||||
* Setter for <code>public.t_documentrole.fk_document</code>.
|
||||
*/
|
||||
public TDocumentroleRecord setFkDocument(Integer value) {
|
||||
set(1, value);
|
||||
@ -43,14 +43,14 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_documentrole.fk_document</code>.
|
||||
* Getter for <code>public.t_documentrole.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return (Integer) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_documentrole.camprole</code>.
|
||||
* Setter for <code>public.t_documentrole.camprole</code>.
|
||||
*/
|
||||
public TDocumentroleRecord setCamprole(EnumCamprole value) {
|
||||
set(2, value);
|
||||
@ -58,7 +58,7 @@ public class TDocumentroleRecord extends UpdatableRecordImpl<TDocumentroleRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_documentrole.camprole</code>.
|
||||
* Getter for <code>public.t_documentrole.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return (EnumCamprole) get(2);
|
||||
|
@ -19,7 +19,7 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_location.pk</code>.
|
||||
* Setter for <code>public.t_location.pk</code>.
|
||||
*/
|
||||
public TLocationRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -27,14 +27,14 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.pk</code>.
|
||||
* Getter for <code>public.t_location.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_location.name</code>.
|
||||
* Setter for <code>public.t_location.name</code>.
|
||||
*/
|
||||
public TLocationRecord setName(String value) {
|
||||
set(1, value);
|
||||
@ -42,14 +42,14 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.name</code>.
|
||||
* Getter for <code>public.t_location.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_location.url</code>.
|
||||
* Setter for <code>public.t_location.url</code>.
|
||||
*/
|
||||
public TLocationRecord setUrl(String value) {
|
||||
set(2, value);
|
||||
@ -57,14 +57,14 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.url</code>.
|
||||
* Getter for <code>public.t_location.url</code>.
|
||||
*/
|
||||
public String getUrl() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_location.fk_document</code>.
|
||||
* Setter for <code>public.t_location.fk_document</code>.
|
||||
*/
|
||||
public TLocationRecord setFkDocument(Integer value) {
|
||||
set(3, value);
|
||||
@ -72,7 +72,7 @@ public class TLocationRecord extends UpdatableRecordImpl<TLocationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_location.fk_document</code>.
|
||||
* Getter for <code>public.t_location.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return (Integer) get(3);
|
||||
|
@ -25,7 +25,7 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.pk</code>.
|
||||
* Setter for <code>public.t_person.pk</code>.
|
||||
*/
|
||||
public TPersonRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -33,14 +33,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.pk</code>.
|
||||
* Getter for <code>public.t_person.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.forename</code>.
|
||||
* Setter for <code>public.t_person.forename</code>.
|
||||
*/
|
||||
public TPersonRecord setForename(String value) {
|
||||
set(1, value);
|
||||
@ -48,14 +48,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.forename</code>.
|
||||
* Getter for <code>public.t_person.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.surname</code>.
|
||||
* Setter for <code>public.t_person.surname</code>.
|
||||
*/
|
||||
public TPersonRecord setSurname(String value) {
|
||||
set(2, value);
|
||||
@ -63,14 +63,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.surname</code>.
|
||||
* Getter for <code>public.t_person.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.street</code>.
|
||||
* Setter for <code>public.t_person.street</code>.
|
||||
*/
|
||||
public TPersonRecord setStreet(String value) {
|
||||
set(3, value);
|
||||
@ -78,14 +78,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.street</code>.
|
||||
* Getter for <code>public.t_person.street</code>.
|
||||
*/
|
||||
public String getStreet() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.zip</code>.
|
||||
* Setter for <code>public.t_person.zip</code>.
|
||||
*/
|
||||
public TPersonRecord setZip(String value) {
|
||||
set(4, value);
|
||||
@ -93,14 +93,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.zip</code>.
|
||||
* Getter for <code>public.t_person.zip</code>.
|
||||
*/
|
||||
public String getZip() {
|
||||
return (String) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.city</code>.
|
||||
* Setter for <code>public.t_person.city</code>.
|
||||
*/
|
||||
public TPersonRecord setCity(String value) {
|
||||
set(5, value);
|
||||
@ -108,14 +108,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.city</code>.
|
||||
* Getter for <code>public.t_person.city</code>.
|
||||
*/
|
||||
public String getCity() {
|
||||
return (String) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.phone</code>.
|
||||
* Setter for <code>public.t_person.phone</code>.
|
||||
*/
|
||||
public TPersonRecord setPhone(String value) {
|
||||
set(6, value);
|
||||
@ -123,14 +123,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.phone</code>.
|
||||
* Getter for <code>public.t_person.phone</code>.
|
||||
*/
|
||||
public String getPhone() {
|
||||
return (String) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.birthdate</code>.
|
||||
* Setter for <code>public.t_person.birthdate</code>.
|
||||
*/
|
||||
public TPersonRecord setBirthdate(LocalDate value) {
|
||||
set(7, value);
|
||||
@ -138,14 +138,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.birthdate</code>.
|
||||
* Getter for <code>public.t_person.birthdate</code>.
|
||||
*/
|
||||
public LocalDate getBirthdate() {
|
||||
return (LocalDate) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.camprole</code>.
|
||||
* Setter for <code>public.t_person.camprole</code>.
|
||||
*/
|
||||
public TPersonRecord setCamprole(EnumCamprole value) {
|
||||
set(8, value);
|
||||
@ -153,14 +153,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.camprole</code>.
|
||||
* Getter for <code>public.t_person.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return (EnumCamprole) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.email</code>.
|
||||
* Setter for <code>public.t_person.email</code>.
|
||||
*/
|
||||
public TPersonRecord setEmail(String value) {
|
||||
set(9, value);
|
||||
@ -168,14 +168,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.email</code>.
|
||||
* Getter for <code>public.t_person.email</code>.
|
||||
*/
|
||||
public String getEmail() {
|
||||
return (String) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.fk_camp</code>.
|
||||
* Setter for <code>public.t_person.fk_camp</code>.
|
||||
*/
|
||||
public TPersonRecord setFkCamp(Integer value) {
|
||||
set(10, value);
|
||||
@ -183,14 +183,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.fk_camp</code>.
|
||||
* Getter for <code>public.t_person.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(10);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.fk_profile</code>.
|
||||
* Setter for <code>public.t_person.fk_profile</code>.
|
||||
*/
|
||||
public TPersonRecord setFkProfile(Integer value) {
|
||||
set(11, value);
|
||||
@ -198,14 +198,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.fk_profile</code>.
|
||||
* Getter for <code>public.t_person.fk_profile</code>.
|
||||
*/
|
||||
public Integer getFkProfile() {
|
||||
return (Integer) get(11);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.accept</code>.
|
||||
* Setter for <code>public.t_person.accept</code>.
|
||||
*/
|
||||
public TPersonRecord setAccept(Boolean value) {
|
||||
set(12, value);
|
||||
@ -213,14 +213,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.accept</code>.
|
||||
* Getter for <code>public.t_person.accept</code>.
|
||||
*/
|
||||
public Boolean getAccept() {
|
||||
return (Boolean) get(12);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.created</code>.
|
||||
* Setter for <code>public.t_person.created</code>.
|
||||
*/
|
||||
public TPersonRecord setCreated(LocalDateTime value) {
|
||||
set(13, value);
|
||||
@ -228,14 +228,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.created</code>.
|
||||
* Getter for <code>public.t_person.created</code>.
|
||||
*/
|
||||
public LocalDateTime getCreated() {
|
||||
return (LocalDateTime) get(13);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.sex</code>.
|
||||
* Setter for <code>public.t_person.sex</code>.
|
||||
*/
|
||||
public TPersonRecord setSex(EnumSex value) {
|
||||
set(14, value);
|
||||
@ -243,14 +243,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.sex</code>.
|
||||
* Getter for <code>public.t_person.sex</code>.
|
||||
*/
|
||||
public EnumSex getSex() {
|
||||
return (EnumSex) get(14);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.fk_registrator</code>.
|
||||
* Setter for <code>public.t_person.fk_registrator</code>.
|
||||
*/
|
||||
public TPersonRecord setFkRegistrator(Integer value) {
|
||||
set(15, value);
|
||||
@ -258,14 +258,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.fk_registrator</code>.
|
||||
* Getter for <code>public.t_person.fk_registrator</code>.
|
||||
*/
|
||||
public Integer getFkRegistrator() {
|
||||
return (Integer) get(15);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.paid</code>.
|
||||
* Setter for <code>public.t_person.paid</code>.
|
||||
*/
|
||||
public TPersonRecord setPaid(BigDecimal value) {
|
||||
set(16, value);
|
||||
@ -273,14 +273,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.paid</code>.
|
||||
* Getter for <code>public.t_person.paid</code>.
|
||||
*/
|
||||
public BigDecimal getPaid() {
|
||||
return (BigDecimal) get(16);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.comment</code>.
|
||||
* Setter for <code>public.t_person.comment</code>.
|
||||
*/
|
||||
public TPersonRecord setComment(String value) {
|
||||
set(17, value);
|
||||
@ -288,14 +288,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.comment</code>.
|
||||
* Getter for <code>public.t_person.comment</code>.
|
||||
*/
|
||||
public String getComment() {
|
||||
return (String) get(17);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.consent_catalog_photo</code>.
|
||||
* Setter for <code>public.t_person.consent_catalog_photo</code>.
|
||||
*/
|
||||
public TPersonRecord setConsentCatalogPhoto(Boolean value) {
|
||||
set(18, value);
|
||||
@ -303,14 +303,14 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.consent_catalog_photo</code>.
|
||||
* Getter for <code>public.t_person.consent_catalog_photo</code>.
|
||||
*/
|
||||
public Boolean getConsentCatalogPhoto() {
|
||||
return (Boolean) get(18);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_person.required_price</code>.
|
||||
* Setter for <code>public.t_person.required_price</code>.
|
||||
*/
|
||||
public TPersonRecord setRequiredPrice(BigDecimal value) {
|
||||
set(19, value);
|
||||
@ -318,7 +318,7 @@ public class TPersonRecord extends UpdatableRecordImpl<TPersonRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_person.required_price</code>.
|
||||
* Getter for <code>public.t_person.required_price</code>.
|
||||
*/
|
||||
public BigDecimal getRequiredPrice() {
|
||||
return (BigDecimal) get(19);
|
||||
|
@ -20,7 +20,7 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_persondocument.pk</code>.
|
||||
* Setter for <code>public.t_persondocument.pk</code>.
|
||||
*/
|
||||
public TPersondocumentRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.pk</code>.
|
||||
* Getter for <code>public.t_persondocument.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_persondocument.fk_person</code>.
|
||||
* Setter for <code>public.t_persondocument.fk_person</code>.
|
||||
*/
|
||||
public TPersondocumentRecord setFkPerson(Integer value) {
|
||||
set(1, value);
|
||||
@ -43,14 +43,14 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.fk_person</code>.
|
||||
* Getter for <code>public.t_persondocument.fk_person</code>.
|
||||
*/
|
||||
public Integer getFkPerson() {
|
||||
return (Integer) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_persondocument.name</code>.
|
||||
* Setter for <code>public.t_persondocument.name</code>.
|
||||
*/
|
||||
public TPersondocumentRecord setName(String value) {
|
||||
set(2, value);
|
||||
@ -58,14 +58,14 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.name</code>.
|
||||
* Getter for <code>public.t_persondocument.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_persondocument.document</code>.
|
||||
* Setter for <code>public.t_persondocument.document</code>.
|
||||
*/
|
||||
public TPersondocumentRecord setDocument(String value) {
|
||||
set(3, value);
|
||||
@ -73,14 +73,14 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.document</code>.
|
||||
* Getter for <code>public.t_persondocument.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_persondocument.filetype</code>.
|
||||
* Setter for <code>public.t_persondocument.filetype</code>.
|
||||
*/
|
||||
public TPersondocumentRecord setFiletype(EnumFiletype value) {
|
||||
set(4, value);
|
||||
@ -88,7 +88,7 @@ public class TPersondocumentRecord extends UpdatableRecordImpl<TPersondocumentRe
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_persondocument.filetype</code>.
|
||||
* Getter for <code>public.t_persondocument.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return (EnumFiletype) get(4);
|
||||
|
@ -21,7 +21,7 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profile.pk</code>.
|
||||
* Setter for <code>public.t_profile.pk</code>.
|
||||
*/
|
||||
public TProfileRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -29,14 +29,14 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.pk</code>.
|
||||
* Getter for <code>public.t_profile.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profile.forename</code>.
|
||||
* Setter for <code>public.t_profile.forename</code>.
|
||||
*/
|
||||
public TProfileRecord setForename(String value) {
|
||||
set(1, value);
|
||||
@ -44,14 +44,14 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.forename</code>.
|
||||
* Getter for <code>public.t_profile.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profile.surname</code>.
|
||||
* Setter for <code>public.t_profile.surname</code>.
|
||||
*/
|
||||
public TProfileRecord setSurname(String value) {
|
||||
set(2, value);
|
||||
@ -59,14 +59,14 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.surname</code>.
|
||||
* Getter for <code>public.t_profile.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profile.username</code>.
|
||||
* Setter for <code>public.t_profile.username</code>.
|
||||
*/
|
||||
public TProfileRecord setUsername(String value) {
|
||||
set(3, value);
|
||||
@ -74,14 +74,14 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.username</code>.
|
||||
* Getter for <code>public.t_profile.username</code>.
|
||||
*/
|
||||
public String getUsername() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profile.password</code>.
|
||||
* Setter for <code>public.t_profile.password</code>.
|
||||
*/
|
||||
public TProfileRecord setPassword(String value) {
|
||||
set(4, value);
|
||||
@ -89,14 +89,14 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.password</code>.
|
||||
* Getter for <code>public.t_profile.password</code>.
|
||||
*/
|
||||
public String getPassword() {
|
||||
return (String) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profile.duedate</code>.
|
||||
* Setter for <code>public.t_profile.duedate</code>.
|
||||
*/
|
||||
public TProfileRecord setDuedate(LocalDateTime value) {
|
||||
set(5, value);
|
||||
@ -104,14 +104,14 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.duedate</code>.
|
||||
* Getter for <code>public.t_profile.duedate</code>.
|
||||
*/
|
||||
public LocalDateTime getDuedate() {
|
||||
return (LocalDateTime) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profile.uuid</code>.
|
||||
* Setter for <code>public.t_profile.uuid</code>.
|
||||
*/
|
||||
public TProfileRecord setUuid(String value) {
|
||||
set(6, value);
|
||||
@ -119,7 +119,7 @@ public class TProfileRecord extends UpdatableRecordImpl<TProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profile.uuid</code>.
|
||||
* Getter for <code>public.t_profile.uuid</code>.
|
||||
*/
|
||||
public String getUuid() {
|
||||
return (String) get(6);
|
||||
|
@ -19,7 +19,7 @@ public class TProfileroleRecord extends TableRecordImpl<TProfileroleRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profilerole.fk_profile</code>.
|
||||
* Setter for <code>public.t_profilerole.fk_profile</code>.
|
||||
*/
|
||||
public TProfileroleRecord setFkProfile(Integer value) {
|
||||
set(0, value);
|
||||
@ -27,14 +27,14 @@ public class TProfileroleRecord extends TableRecordImpl<TProfileroleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profilerole.fk_profile</code>.
|
||||
* Getter for <code>public.t_profilerole.fk_profile</code>.
|
||||
*/
|
||||
public Integer getFkProfile() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_profilerole.role</code>.
|
||||
* Setter for <code>public.t_profilerole.role</code>.
|
||||
*/
|
||||
public TProfileroleRecord setRole(EnumRole value) {
|
||||
set(1, value);
|
||||
@ -42,7 +42,7 @@ public class TProfileroleRecord extends TableRecordImpl<TProfileroleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_profilerole.role</code>.
|
||||
* Getter for <code>public.t_profilerole.role</code>.
|
||||
*/
|
||||
public EnumRole getRole() {
|
||||
return (EnumRole) get(1);
|
||||
|
@ -21,63 +21,63 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_rss.msg</code>.
|
||||
* Setter for <code>public.t_rss.pk</code>.
|
||||
*/
|
||||
public TRssRecord setMsg(String value) {
|
||||
public TRssRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_rss.msg</code>.
|
||||
* Getter for <code>public.t_rss.pk</code>.
|
||||
*/
|
||||
public String getMsg() {
|
||||
return (String) get(0);
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_rss.regdate</code>.
|
||||
* Setter for <code>public.t_rss.msg</code>.
|
||||
*/
|
||||
public TRssRecord setRegdate(LocalDateTime value) {
|
||||
public TRssRecord setMsg(String value) {
|
||||
set(1, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_rss.regdate</code>.
|
||||
* Getter for <code>public.t_rss.msg</code>.
|
||||
*/
|
||||
public LocalDateTime getRegdate() {
|
||||
return (LocalDateTime) get(1);
|
||||
public String getMsg() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_rss.recipient</code>.
|
||||
* Setter for <code>public.t_rss.regdate</code>.
|
||||
*/
|
||||
public TRssRecord setRecipient(String value) {
|
||||
public TRssRecord setRegdate(LocalDateTime value) {
|
||||
set(2, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_rss.recipient</code>.
|
||||
* Getter for <code>public.t_rss.regdate</code>.
|
||||
*/
|
||||
public String getRecipient() {
|
||||
return (String) get(2);
|
||||
public LocalDateTime getRegdate() {
|
||||
return (LocalDateTime) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_rss.pk</code>.
|
||||
* Setter for <code>public.t_rss.recipient</code>.
|
||||
*/
|
||||
public TRssRecord setPk(Integer value) {
|
||||
public TRssRecord setRecipient(String value) {
|
||||
set(3, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_rss.pk</code>.
|
||||
* Getter for <code>public.t_rss.recipient</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(3);
|
||||
public String getRecipient() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
@ -103,13 +103,13 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
|
||||
/**
|
||||
* Create a detached, initialised TRssRecord
|
||||
*/
|
||||
public TRssRecord(String msg, LocalDateTime regdate, String recipient, Integer pk) {
|
||||
public TRssRecord(Integer pk, String msg, LocalDateTime regdate, String recipient) {
|
||||
super(TRss.T_RSS);
|
||||
|
||||
setPk(pk);
|
||||
setMsg(msg);
|
||||
setRegdate(regdate);
|
||||
setRecipient(recipient);
|
||||
setPk(pk);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
|
||||
@ -120,10 +120,10 @@ public class TRssRecord extends UpdatableRecordImpl<TRssRecord> {
|
||||
super(TRss.T_RSS);
|
||||
|
||||
if (value != null) {
|
||||
setPk(value.getPk());
|
||||
setMsg(value.getMsg());
|
||||
setRegdate(value.getRegdate());
|
||||
setRecipient(value.getRecipient());
|
||||
setPk(value.getPk());
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
@ -22,7 +22,7 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.pk</code>.
|
||||
* Setter for <code>public.t_sales.pk</code>.
|
||||
*/
|
||||
public TSalesRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -30,14 +30,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.pk</code>.
|
||||
* Getter for <code>public.t_sales.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.trader</code>.
|
||||
* Setter for <code>public.t_sales.trader</code>.
|
||||
*/
|
||||
public TSalesRecord setTrader(String value) {
|
||||
set(1, value);
|
||||
@ -45,14 +45,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.trader</code>.
|
||||
* Getter for <code>public.t_sales.trader</code>.
|
||||
*/
|
||||
public String getTrader() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.fk_camp</code>.
|
||||
* Setter for <code>public.t_sales.fk_camp</code>.
|
||||
*/
|
||||
public TSalesRecord setFkCamp(Integer value) {
|
||||
set(2, value);
|
||||
@ -60,14 +60,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.fk_camp</code>.
|
||||
* Getter for <code>public.t_sales.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.provider</code>.
|
||||
* Setter for <code>public.t_sales.provider</code>.
|
||||
*/
|
||||
public TSalesRecord setProvider(String value) {
|
||||
set(3, value);
|
||||
@ -75,14 +75,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.provider</code>.
|
||||
* Getter for <code>public.t_sales.provider</code>.
|
||||
*/
|
||||
public String getProvider() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.cash</code>.
|
||||
* Setter for <code>public.t_sales.cash</code>.
|
||||
*/
|
||||
public TSalesRecord setCash(BigDecimal value) {
|
||||
set(4, value);
|
||||
@ -90,14 +90,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.cash</code>.
|
||||
* Getter for <code>public.t_sales.cash</code>.
|
||||
*/
|
||||
public BigDecimal getCash() {
|
||||
return (BigDecimal) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.buydate</code>.
|
||||
* Setter for <code>public.t_sales.buydate</code>.
|
||||
*/
|
||||
public TSalesRecord setBuydate(LocalDateTime value) {
|
||||
set(5, value);
|
||||
@ -105,14 +105,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.buydate</code>.
|
||||
* Getter for <code>public.t_sales.buydate</code>.
|
||||
*/
|
||||
public LocalDateTime getBuydate() {
|
||||
return (LocalDateTime) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.recipenumber</code>.
|
||||
* Setter for <code>public.t_sales.recipenumber</code>.
|
||||
*/
|
||||
public TSalesRecord setRecipenumber(String value) {
|
||||
set(6, value);
|
||||
@ -120,14 +120,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipenumber</code>.
|
||||
* Getter for <code>public.t_sales.recipenumber</code>.
|
||||
*/
|
||||
public String getRecipenumber() {
|
||||
return (String) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.recipeshot</code>.
|
||||
* Setter for <code>public.t_sales.recipeshot</code>.
|
||||
*/
|
||||
public TSalesRecord setRecipeshot(byte[] value) {
|
||||
set(7, value);
|
||||
@ -135,14 +135,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipeshot</code>.
|
||||
* Getter for <code>public.t_sales.recipeshot</code>.
|
||||
*/
|
||||
public byte[] getRecipeshot() {
|
||||
return (byte[]) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.recipenote</code>.
|
||||
* Setter for <code>public.t_sales.recipenote</code>.
|
||||
*/
|
||||
public TSalesRecord setRecipenote(String value) {
|
||||
set(8, value);
|
||||
@ -150,14 +150,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipenote</code>.
|
||||
* Getter for <code>public.t_sales.recipenote</code>.
|
||||
*/
|
||||
public String getRecipenote() {
|
||||
return (String) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.incredients</code>.
|
||||
* Setter for <code>public.t_sales.incredients</code>.
|
||||
*/
|
||||
public TSalesRecord setIncredients(String value) {
|
||||
set(9, value);
|
||||
@ -165,14 +165,14 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.incredients</code>.
|
||||
* Getter for <code>public.t_sales.incredients</code>.
|
||||
*/
|
||||
public String getIncredients() {
|
||||
return (String) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_sales.recipefilename</code>.
|
||||
* Setter for <code>public.t_sales.recipefilename</code>.
|
||||
*/
|
||||
public TSalesRecord setRecipefilename(String value) {
|
||||
set(10, value);
|
||||
@ -180,7 +180,7 @@ public class TSalesRecord extends UpdatableRecordImpl<TSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_sales.recipefilename</code>.
|
||||
* Getter for <code>public.t_sales.recipefilename</code>.
|
||||
*/
|
||||
public String getRecipefilename() {
|
||||
return (String) get(10);
|
||||
|
@ -18,7 +18,7 @@ public class TSalescontentRecord extends TableRecordImpl<TSalescontentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_salescontent.fk_sales</code>.
|
||||
* Setter for <code>public.t_salescontent.fk_sales</code>.
|
||||
*/
|
||||
public TSalescontentRecord setFkSales(Integer value) {
|
||||
set(0, value);
|
||||
@ -26,14 +26,14 @@ public class TSalescontentRecord extends TableRecordImpl<TSalescontentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_salescontent.fk_sales</code>.
|
||||
* Getter for <code>public.t_salescontent.fk_sales</code>.
|
||||
*/
|
||||
public Integer getFkSales() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_salescontent.fk_salescontenttype</code>.
|
||||
* Setter for <code>public.t_salescontent.fk_salescontenttype</code>.
|
||||
*/
|
||||
public TSalescontentRecord setFkSalescontenttype(String value) {
|
||||
set(1, value);
|
||||
@ -41,7 +41,7 @@ public class TSalescontentRecord extends TableRecordImpl<TSalescontentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_salescontent.fk_salescontenttype</code>.
|
||||
* Getter for <code>public.t_salescontent.fk_salescontenttype</code>.
|
||||
*/
|
||||
public String getFkSalescontenttype() {
|
||||
return (String) get(1);
|
||||
|
@ -19,7 +19,7 @@ public class TSalescontenttypeRecord extends UpdatableRecordImpl<TSalescontentty
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.t_salescontenttype.name</code>.
|
||||
* Setter for <code>public.t_salescontenttype.name</code>.
|
||||
*/
|
||||
public TSalescontenttypeRecord setName(String value) {
|
||||
set(0, value);
|
||||
@ -27,7 +27,7 @@ public class TSalescontenttypeRecord extends UpdatableRecordImpl<TSalescontentty
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.t_salescontenttype.name</code>.
|
||||
* Getter for <code>public.t_salescontenttype.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(0);
|
||||
|
@ -0,0 +1,137 @@
|
||||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package de.jottyfan.camporganizer.db.jooq.tables.records;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VAdult;
|
||||
|
||||
import org.jooq.impl.TableRecordImpl;
|
||||
import org.jooq.types.YearToSecond;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VAdultRecord extends TableRecordImpl<VAdultRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_adult.age</code>.
|
||||
*/
|
||||
public VAdultRecord setAge(YearToSecond value) {
|
||||
set(0, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_adult.age</code>.
|
||||
*/
|
||||
public YearToSecond getAge() {
|
||||
return (YearToSecond) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_adult.forename</code>.
|
||||
*/
|
||||
public VAdultRecord setForename(String value) {
|
||||
set(1, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_adult.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_adult.surname</code>.
|
||||
*/
|
||||
public VAdultRecord setSurname(String value) {
|
||||
set(2, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_adult.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_adult.camprole</code>.
|
||||
*/
|
||||
public VAdultRecord setCamprole(EnumCamprole value) {
|
||||
set(3, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_adult.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return (EnumCamprole) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_adult.adult</code>.
|
||||
*/
|
||||
public VAdultRecord setAdult(Boolean value) {
|
||||
set(4, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_adult.adult</code>.
|
||||
*/
|
||||
public Boolean getAdult() {
|
||||
return (Boolean) get(4);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached VAdultRecord
|
||||
*/
|
||||
public VAdultRecord() {
|
||||
super(VAdult.V_ADULT);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised VAdultRecord
|
||||
*/
|
||||
public VAdultRecord(YearToSecond age, String forename, String surname, EnumCamprole camprole, Boolean adult) {
|
||||
super(VAdult.V_ADULT);
|
||||
|
||||
setAge(age);
|
||||
setForename(forename);
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
@ -20,7 +20,7 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_budget.budget</code>.
|
||||
* Setter for <code>public.v_budget.budget</code>.
|
||||
*/
|
||||
public VBudgetRecord setBudget(BigDecimal value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.budget</code>.
|
||||
* Getter for <code>public.v_budget.budget</code>.
|
||||
*/
|
||||
public BigDecimal getBudget() {
|
||||
return (BigDecimal) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_budget.fk_camp</code>.
|
||||
* Setter for <code>public.v_budget.fk_camp</code>.
|
||||
*/
|
||||
public VBudgetRecord setFkCamp(Integer value) {
|
||||
set(1, value);
|
||||
@ -43,14 +43,14 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.fk_camp</code>.
|
||||
* Getter for <code>public.v_budget.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_budget.name</code>.
|
||||
* Setter for <code>public.v_budget.name</code>.
|
||||
*/
|
||||
public VBudgetRecord setName(String value) {
|
||||
set(2, value);
|
||||
@ -58,14 +58,14 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.name</code>.
|
||||
* Getter for <code>public.v_budget.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_budget.location</code>.
|
||||
* Setter for <code>public.v_budget.location</code>.
|
||||
*/
|
||||
public VBudgetRecord setLocation(String value) {
|
||||
set(3, value);
|
||||
@ -73,14 +73,14 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.location</code>.
|
||||
* Getter for <code>public.v_budget.location</code>.
|
||||
*/
|
||||
public String getLocation() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_budget.year</code>.
|
||||
* Setter for <code>public.v_budget.year</code>.
|
||||
*/
|
||||
public VBudgetRecord setYear(Double value) {
|
||||
set(4, value);
|
||||
@ -88,7 +88,7 @@ public class VBudgetRecord extends TableRecordImpl<VBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_budget.year</code>.
|
||||
* Getter for <code>public.v_budget.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return (Double) get(4);
|
||||
|
@ -20,7 +20,7 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp_budget.budget</code>.
|
||||
* Setter for <code>public.v_camp_budget.budget</code>.
|
||||
*/
|
||||
public VCampBudgetRecord setBudget(BigDecimal value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.budget</code>.
|
||||
* Getter for <code>public.v_camp_budget.budget</code>.
|
||||
*/
|
||||
public BigDecimal getBudget() {
|
||||
return (BigDecimal) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp_budget.fk_camp</code>.
|
||||
* Setter for <code>public.v_camp_budget.fk_camp</code>.
|
||||
*/
|
||||
public VCampBudgetRecord setFkCamp(Integer value) {
|
||||
set(1, value);
|
||||
@ -43,14 +43,14 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.fk_camp</code>.
|
||||
* Getter for <code>public.v_camp_budget.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp_budget.camp_name</code>.
|
||||
* Setter for <code>public.v_camp_budget.camp_name</code>.
|
||||
*/
|
||||
public VCampBudgetRecord setCampName(String value) {
|
||||
set(2, value);
|
||||
@ -58,14 +58,14 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.camp_name</code>.
|
||||
* Getter for <code>public.v_camp_budget.camp_name</code>.
|
||||
*/
|
||||
public String getCampName() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp_budget.year</code>.
|
||||
* Setter for <code>public.v_camp_budget.year</code>.
|
||||
*/
|
||||
public VCampBudgetRecord setYear(Double value) {
|
||||
set(3, value);
|
||||
@ -73,7 +73,7 @@ public class VCampBudgetRecord extends TableRecordImpl<VCampBudgetRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget.year</code>.
|
||||
* Getter for <code>public.v_camp_budget.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return (Double) get(3);
|
||||
|
@ -20,7 +20,7 @@ public class VCampBudgetYearRecord extends TableRecordImpl<VCampBudgetYearRecord
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp_budget_year.sum</code>.
|
||||
* Setter for <code>public.v_camp_budget_year.sum</code>.
|
||||
*/
|
||||
public VCampBudgetYearRecord setSum(BigDecimal value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class VCampBudgetYearRecord extends TableRecordImpl<VCampBudgetYearRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget_year.sum</code>.
|
||||
* Getter for <code>public.v_camp_budget_year.sum</code>.
|
||||
*/
|
||||
public BigDecimal getSum() {
|
||||
return (BigDecimal) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp_budget_year.year</code>.
|
||||
* Setter for <code>public.v_camp_budget_year.year</code>.
|
||||
*/
|
||||
public VCampBudgetYearRecord setYear(Double value) {
|
||||
set(1, value);
|
||||
@ -43,7 +43,7 @@ public class VCampBudgetYearRecord extends TableRecordImpl<VCampBudgetYearRecord
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp_budget_year.year</code>.
|
||||
* Getter for <code>public.v_camp_budget_year.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return (Double) get(1);
|
||||
|
@ -20,7 +20,7 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.pk</code>.
|
||||
* Setter for <code>public.v_camp.pk</code>.
|
||||
*/
|
||||
public VCampRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.pk</code>.
|
||||
* Getter for <code>public.v_camp.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.is_over</code>.
|
||||
* Setter for <code>public.v_camp.is_over</code>.
|
||||
*/
|
||||
public VCampRecord setIsOver(Boolean value) {
|
||||
set(1, value);
|
||||
@ -43,14 +43,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.is_over</code>.
|
||||
* Getter for <code>public.v_camp.is_over</code>.
|
||||
*/
|
||||
public Boolean getIsOver() {
|
||||
return (Boolean) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.name</code>.
|
||||
* Setter for <code>public.v_camp.name</code>.
|
||||
*/
|
||||
public VCampRecord setName(String value) {
|
||||
set(2, value);
|
||||
@ -58,14 +58,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.name</code>.
|
||||
* Getter for <code>public.v_camp.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.arrive</code>.
|
||||
* Setter for <code>public.v_camp.arrive</code>.
|
||||
*/
|
||||
public VCampRecord setArrive(LocalDateTime value) {
|
||||
set(3, value);
|
||||
@ -73,14 +73,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.arrive</code>.
|
||||
* Getter for <code>public.v_camp.arrive</code>.
|
||||
*/
|
||||
public LocalDateTime getArrive() {
|
||||
return (LocalDateTime) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.depart</code>.
|
||||
* Setter for <code>public.v_camp.depart</code>.
|
||||
*/
|
||||
public VCampRecord setDepart(LocalDateTime value) {
|
||||
set(4, value);
|
||||
@ -88,14 +88,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.depart</code>.
|
||||
* Getter for <code>public.v_camp.depart</code>.
|
||||
*/
|
||||
public LocalDateTime getDepart() {
|
||||
return (LocalDateTime) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.year</code>.
|
||||
* Setter for <code>public.v_camp.year</code>.
|
||||
*/
|
||||
public VCampRecord setYear(Double value) {
|
||||
set(5, value);
|
||||
@ -103,14 +103,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.year</code>.
|
||||
* Getter for <code>public.v_camp.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return (Double) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.location_name</code>.
|
||||
* Setter for <code>public.v_camp.location_name</code>.
|
||||
*/
|
||||
public VCampRecord setLocationName(String value) {
|
||||
set(6, value);
|
||||
@ -118,14 +118,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.location_name</code>.
|
||||
* Getter for <code>public.v_camp.location_name</code>.
|
||||
*/
|
||||
public String getLocationName() {
|
||||
return (String) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.min_age</code>.
|
||||
* Setter for <code>public.v_camp.min_age</code>.
|
||||
*/
|
||||
public VCampRecord setMinAge(Integer value) {
|
||||
set(7, value);
|
||||
@ -133,14 +133,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.min_age</code>.
|
||||
* Getter for <code>public.v_camp.min_age</code>.
|
||||
*/
|
||||
public Integer getMinAge() {
|
||||
return (Integer) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.max_age</code>.
|
||||
* Setter for <code>public.v_camp.max_age</code>.
|
||||
*/
|
||||
public VCampRecord setMaxAge(Integer value) {
|
||||
set(8, value);
|
||||
@ -148,14 +148,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.max_age</code>.
|
||||
* Getter for <code>public.v_camp.max_age</code>.
|
||||
*/
|
||||
public Integer getMaxAge() {
|
||||
return (Integer) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.url</code>.
|
||||
* Setter for <code>public.v_camp.url</code>.
|
||||
*/
|
||||
public VCampRecord setUrl(String value) {
|
||||
set(9, value);
|
||||
@ -163,14 +163,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.url</code>.
|
||||
* Getter for <code>public.v_camp.url</code>.
|
||||
*/
|
||||
public String getUrl() {
|
||||
return (String) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.price</code>.
|
||||
* Setter for <code>public.v_camp.price</code>.
|
||||
*/
|
||||
public VCampRecord setPrice(String value) {
|
||||
set(10, value);
|
||||
@ -178,14 +178,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.price</code>.
|
||||
* Getter for <code>public.v_camp.price</code>.
|
||||
*/
|
||||
public String getPrice() {
|
||||
return (String) get(10);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.countries</code>.
|
||||
* Setter for <code>public.v_camp.countries</code>.
|
||||
*/
|
||||
public VCampRecord setCountries(String value) {
|
||||
set(11, value);
|
||||
@ -193,14 +193,14 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.countries</code>.
|
||||
* Getter for <code>public.v_camp.countries</code>.
|
||||
*/
|
||||
public String getCountries() {
|
||||
return (String) get(11);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camp.fk_document</code>.
|
||||
* Setter for <code>public.v_camp.fk_document</code>.
|
||||
*/
|
||||
public VCampRecord setFkDocument(Integer value) {
|
||||
set(12, value);
|
||||
@ -208,7 +208,7 @@ public class VCampRecord extends TableRecordImpl<VCampRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camp.fk_document</code>.
|
||||
* Getter for <code>public.v_camp.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return (Integer) get(12);
|
||||
|
@ -22,7 +22,7 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.fk_camp</code>.
|
||||
* Setter for <code>public.v_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setFkCamp(Integer value) {
|
||||
set(0, value);
|
||||
@ -30,14 +30,14 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.fk_camp</code>.
|
||||
* Getter for <code>public.v_campdocument.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.campname</code>.
|
||||
* Setter for <code>public.v_campdocument.campname</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setCampname(String value) {
|
||||
set(1, value);
|
||||
@ -45,14 +45,14 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.campname</code>.
|
||||
* Getter for <code>public.v_campdocument.campname</code>.
|
||||
*/
|
||||
public String getCampname() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.arrive</code>.
|
||||
* Setter for <code>public.v_campdocument.arrive</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setArrive(LocalDateTime value) {
|
||||
set(2, value);
|
||||
@ -60,14 +60,14 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.arrive</code>.
|
||||
* Getter for <code>public.v_campdocument.arrive</code>.
|
||||
*/
|
||||
public LocalDateTime getArrive() {
|
||||
return (LocalDateTime) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.fk_document</code>.
|
||||
* Setter for <code>public.v_campdocument.fk_document</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setFkDocument(Integer value) {
|
||||
set(3, value);
|
||||
@ -75,14 +75,14 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.fk_document</code>.
|
||||
* Getter for <code>public.v_campdocument.fk_document</code>.
|
||||
*/
|
||||
public Integer getFkDocument() {
|
||||
return (Integer) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.document</code>.
|
||||
* Setter for <code>public.v_campdocument.document</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setDocument(String value) {
|
||||
set(4, value);
|
||||
@ -90,14 +90,14 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.document</code>.
|
||||
* Getter for <code>public.v_campdocument.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return (String) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.documentname</code>.
|
||||
* Setter for <code>public.v_campdocument.documentname</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setDocumentname(String value) {
|
||||
set(5, value);
|
||||
@ -105,14 +105,14 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.documentname</code>.
|
||||
* Getter for <code>public.v_campdocument.documentname</code>.
|
||||
*/
|
||||
public String getDocumentname() {
|
||||
return (String) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.doctype</code>.
|
||||
* Setter for <code>public.v_campdocument.doctype</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setDoctype(EnumDocument value) {
|
||||
set(6, value);
|
||||
@ -120,14 +120,14 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.doctype</code>.
|
||||
* Getter for <code>public.v_campdocument.doctype</code>.
|
||||
*/
|
||||
public EnumDocument getDoctype() {
|
||||
return (EnumDocument) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_campdocument.filetype</code>.
|
||||
* Setter for <code>public.v_campdocument.filetype</code>.
|
||||
*/
|
||||
public VCampdocumentRecord setFiletype(EnumFiletype value) {
|
||||
set(7, value);
|
||||
@ -135,7 +135,7 @@ public class VCampdocumentRecord extends TableRecordImpl<VCampdocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_campdocument.filetype</code>.
|
||||
* Getter for <code>public.v_campdocument.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return (EnumFiletype) get(7);
|
||||
|
@ -19,7 +19,7 @@ public class VCamproleRecord extends TableRecordImpl<VCamproleRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_camprole.name</code>.
|
||||
* Setter for <code>public.v_camprole.name</code>.
|
||||
*/
|
||||
public VCamproleRecord setName(EnumCamprole value) {
|
||||
set(0, value);
|
||||
@ -27,7 +27,7 @@ public class VCamproleRecord extends TableRecordImpl<VCamproleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_camprole.name</code>.
|
||||
* Getter for <code>public.v_camprole.name</code>.
|
||||
*/
|
||||
public EnumCamprole getName() {
|
||||
return (EnumCamprole) get(0);
|
||||
|
@ -20,7 +20,7 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_document.pk</code>.
|
||||
* Setter for <code>public.v_document.pk</code>.
|
||||
*/
|
||||
public VDocumentRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -28,14 +28,14 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.pk</code>.
|
||||
* Getter for <code>public.v_document.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_document.doctype</code>.
|
||||
* Setter for <code>public.v_document.doctype</code>.
|
||||
*/
|
||||
public VDocumentRecord setDoctype(EnumDocument value) {
|
||||
set(1, value);
|
||||
@ -43,14 +43,14 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.doctype</code>.
|
||||
* Getter for <code>public.v_document.doctype</code>.
|
||||
*/
|
||||
public EnumDocument getDoctype() {
|
||||
return (EnumDocument) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_document.name</code>.
|
||||
* Setter for <code>public.v_document.name</code>.
|
||||
*/
|
||||
public VDocumentRecord setName(String value) {
|
||||
set(2, value);
|
||||
@ -58,14 +58,14 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.name</code>.
|
||||
* Getter for <code>public.v_document.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_document.document</code>.
|
||||
* Setter for <code>public.v_document.document</code>.
|
||||
*/
|
||||
public VDocumentRecord setDocument(String value) {
|
||||
set(3, value);
|
||||
@ -73,14 +73,14 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.document</code>.
|
||||
* Getter for <code>public.v_document.document</code>.
|
||||
*/
|
||||
public String getDocument() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_document.filetype</code>.
|
||||
* Setter for <code>public.v_document.filetype</code>.
|
||||
*/
|
||||
public VDocumentRecord setFiletype(EnumFiletype value) {
|
||||
set(4, value);
|
||||
@ -88,14 +88,14 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.filetype</code>.
|
||||
* Getter for <code>public.v_document.filetype</code>.
|
||||
*/
|
||||
public EnumFiletype getFiletype() {
|
||||
return (EnumFiletype) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_document.roles</code>.
|
||||
* Setter for <code>public.v_document.roles</code>.
|
||||
*/
|
||||
public VDocumentRecord setRoles(String value) {
|
||||
set(5, value);
|
||||
@ -103,7 +103,7 @@ public class VDocumentRecord extends TableRecordImpl<VDocumentRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_document.roles</code>.
|
||||
* Getter for <code>public.v_document.roles</code>.
|
||||
*/
|
||||
public String getRoles() {
|
||||
return (String) get(5);
|
||||
|
@ -0,0 +1,205 @@
|
||||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package de.jottyfan.camporganizer.db.jooq.tables.records;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumCamprole;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VDsgvoDeleteCandidate;
|
||||
|
||||
import org.jooq.impl.TableRecordImpl;
|
||||
import org.jooq.types.YearToSecond;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VDsgvoDeleteCandidateRecord extends TableRecordImpl<VDsgvoDeleteCandidateRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.fk_person</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setFkPerson(Integer value) {
|
||||
set(0, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.fk_person</code>.
|
||||
*/
|
||||
public Integer getFkPerson() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.forename</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setForename(String value) {
|
||||
set(1, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.surname</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setSurname(String value) {
|
||||
set(2, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.fk_camp</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setFkCamp(Integer value) {
|
||||
set(3, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.age</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setAge(YearToSecond value) {
|
||||
set(4, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.age</code>.
|
||||
*/
|
||||
public YearToSecond getAge() {
|
||||
return (YearToSecond) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.camprole</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setCamprole(EnumCamprole value) {
|
||||
set(5, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return (EnumCamprole) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.name</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setName(String value) {
|
||||
set(6, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.year</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setYear(Double value) {
|
||||
set(7, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return (Double) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_dsgvo_delete_candidate.is_over</code>.
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord setIsOver(Boolean value) {
|
||||
set(8, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_dsgvo_delete_candidate.is_over</code>.
|
||||
*/
|
||||
public Boolean getIsOver() {
|
||||
return (Boolean) get(8);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached VDsgvoDeleteCandidateRecord
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord() {
|
||||
super(VDsgvoDeleteCandidate.V_DSGVO_DELETE_CANDIDATE);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised VDsgvoDeleteCandidateRecord
|
||||
*/
|
||||
public VDsgvoDeleteCandidateRecord(Integer fkPerson, String forename, String surname, Integer fkCamp, YearToSecond age, EnumCamprole camprole, String name, Double year, Boolean isOver) {
|
||||
super(VDsgvoDeleteCandidate.V_DSGVO_DELETE_CANDIDATE);
|
||||
|
||||
setFkPerson(fkPerson);
|
||||
setForename(forename);
|
||||
setSurname(surname);
|
||||
setFkCamp(fkCamp);
|
||||
setAge(age);
|
||||
setCamprole(camprole);
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,239 @@
|
||||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package de.jottyfan.camporganizer.db.jooq.tables.records;
|
||||
|
||||
|
||||
import de.jottyfan.camporganizer.db.jooq.enums.EnumSex;
|
||||
import de.jottyfan.camporganizer.db.jooq.tables.VFeeder;
|
||||
|
||||
import org.jooq.impl.TableRecordImpl;
|
||||
import org.jooq.types.YearToSecond;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class VFeederRecord extends TableRecordImpl<VFeederRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.forename</code>.
|
||||
*/
|
||||
public VFeederRecord setForename(String value) {
|
||||
set(0, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return (String) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.surname</code>.
|
||||
*/
|
||||
public VFeederRecord setSurname(String value) {
|
||||
set(1, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.street</code>.
|
||||
*/
|
||||
public VFeederRecord setStreet(String value) {
|
||||
set(2, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.street</code>.
|
||||
*/
|
||||
public String getStreet() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.zip</code>.
|
||||
*/
|
||||
public VFeederRecord setZip(String value) {
|
||||
set(3, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.zip</code>.
|
||||
*/
|
||||
public String getZip() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.city</code>.
|
||||
*/
|
||||
public VFeederRecord setCity(String value) {
|
||||
set(4, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.city</code>.
|
||||
*/
|
||||
public String getCity() {
|
||||
return (String) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.phone</code>.
|
||||
*/
|
||||
public VFeederRecord setPhone(String value) {
|
||||
set(5, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.phone</code>.
|
||||
*/
|
||||
public String getPhone() {
|
||||
return (String) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.age</code>.
|
||||
*/
|
||||
public VFeederRecord setAge(YearToSecond value) {
|
||||
set(6, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.age</code>.
|
||||
*/
|
||||
public YearToSecond getAge() {
|
||||
return (YearToSecond) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.email</code>.
|
||||
*/
|
||||
public VFeederRecord setEmail(String value) {
|
||||
set(7, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.email</code>.
|
||||
*/
|
||||
public String getEmail() {
|
||||
return (String) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.sex</code>.
|
||||
*/
|
||||
public VFeederRecord setSex(EnumSex value) {
|
||||
set(8, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.sex</code>.
|
||||
*/
|
||||
public EnumSex getSex() {
|
||||
return (EnumSex) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.name</code>.
|
||||
*/
|
||||
public VFeederRecord setName(String value) {
|
||||
set(9, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>public.v_feeder.year</code>.
|
||||
*/
|
||||
public VFeederRecord setYear(Double value) {
|
||||
set(10, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>public.v_feeder.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return (Double) get(10);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached VFeederRecord
|
||||
*/
|
||||
public VFeederRecord() {
|
||||
super(VFeeder.V_FEEDER);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised VFeederRecord
|
||||
*/
|
||||
public VFeederRecord(String forename, String surname, String street, String zip, String city, String phone, YearToSecond age, String email, EnumSex sex, String name, Double year) {
|
||||
super(VFeeder.V_FEEDER);
|
||||
|
||||
setForename(forename);
|
||||
setSurname(surname);
|
||||
setStreet(street);
|
||||
setZip(zip);
|
||||
setCity(city);
|
||||
setPhone(phone);
|
||||
setAge(age);
|
||||
setEmail(email);
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
@ -19,7 +19,7 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_profile.pk</code>.
|
||||
* Setter for <code>public.v_profile.pk</code>.
|
||||
*/
|
||||
public VProfileRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -27,14 +27,14 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.pk</code>.
|
||||
* Getter for <code>public.v_profile.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_profile.forename</code>.
|
||||
* Setter for <code>public.v_profile.forename</code>.
|
||||
*/
|
||||
public VProfileRecord setForename(String value) {
|
||||
set(1, value);
|
||||
@ -42,14 +42,14 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.forename</code>.
|
||||
* Getter for <code>public.v_profile.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_profile.surname</code>.
|
||||
* Setter for <code>public.v_profile.surname</code>.
|
||||
*/
|
||||
public VProfileRecord setSurname(String value) {
|
||||
set(2, value);
|
||||
@ -57,14 +57,14 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.surname</code>.
|
||||
* Getter for <code>public.v_profile.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_profile.username</code>.
|
||||
* Setter for <code>public.v_profile.username</code>.
|
||||
*/
|
||||
public VProfileRecord setUsername(String value) {
|
||||
set(3, value);
|
||||
@ -72,14 +72,14 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.username</code>.
|
||||
* Getter for <code>public.v_profile.username</code>.
|
||||
*/
|
||||
public String getUsername() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_profile.password</code>.
|
||||
* Setter for <code>public.v_profile.password</code>.
|
||||
*/
|
||||
public VProfileRecord setPassword(String value) {
|
||||
set(4, value);
|
||||
@ -87,14 +87,14 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.password</code>.
|
||||
* Getter for <code>public.v_profile.password</code>.
|
||||
*/
|
||||
public String getPassword() {
|
||||
return (String) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_profile.uuid</code>.
|
||||
* Setter for <code>public.v_profile.uuid</code>.
|
||||
*/
|
||||
public VProfileRecord setUuid(String value) {
|
||||
set(5, value);
|
||||
@ -102,14 +102,14 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.uuid</code>.
|
||||
* Getter for <code>public.v_profile.uuid</code>.
|
||||
*/
|
||||
public String getUuid() {
|
||||
return (String) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_profile.roles</code>.
|
||||
* Setter for <code>public.v_profile.roles</code>.
|
||||
*/
|
||||
public VProfileRecord setRoles(EnumRole[] value) {
|
||||
set(6, value);
|
||||
@ -117,7 +117,7 @@ public class VProfileRecord extends TableRecordImpl<VProfileRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_profile.roles</code>.
|
||||
* Getter for <code>public.v_profile.roles</code>.
|
||||
*/
|
||||
public EnumRole[] getRoles() {
|
||||
return (EnumRole[]) get(6);
|
||||
|
@ -21,7 +21,7 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.pk</code>.
|
||||
* Setter for <code>public.v_registration.pk</code>.
|
||||
*/
|
||||
public VRegistrationRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -29,14 +29,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.pk</code>.
|
||||
* Getter for <code>public.v_registration.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.forename</code>.
|
||||
* Setter for <code>public.v_registration.forename</code>.
|
||||
*/
|
||||
public VRegistrationRecord setForename(String value) {
|
||||
set(1, value);
|
||||
@ -44,14 +44,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.forename</code>.
|
||||
* Getter for <code>public.v_registration.forename</code>.
|
||||
*/
|
||||
public String getForename() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.surname</code>.
|
||||
* Setter for <code>public.v_registration.surname</code>.
|
||||
*/
|
||||
public VRegistrationRecord setSurname(String value) {
|
||||
set(2, value);
|
||||
@ -59,14 +59,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.surname</code>.
|
||||
* Getter for <code>public.v_registration.surname</code>.
|
||||
*/
|
||||
public String getSurname() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.street</code>.
|
||||
* Setter for <code>public.v_registration.street</code>.
|
||||
*/
|
||||
public VRegistrationRecord setStreet(String value) {
|
||||
set(3, value);
|
||||
@ -74,14 +74,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.street</code>.
|
||||
* Getter for <code>public.v_registration.street</code>.
|
||||
*/
|
||||
public String getStreet() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.zip</code>.
|
||||
* Setter for <code>public.v_registration.zip</code>.
|
||||
*/
|
||||
public VRegistrationRecord setZip(String value) {
|
||||
set(4, value);
|
||||
@ -89,14 +89,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.zip</code>.
|
||||
* Getter for <code>public.v_registration.zip</code>.
|
||||
*/
|
||||
public String getZip() {
|
||||
return (String) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.city</code>.
|
||||
* Setter for <code>public.v_registration.city</code>.
|
||||
*/
|
||||
public VRegistrationRecord setCity(String value) {
|
||||
set(5, value);
|
||||
@ -104,14 +104,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.city</code>.
|
||||
* Getter for <code>public.v_registration.city</code>.
|
||||
*/
|
||||
public String getCity() {
|
||||
return (String) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.phone</code>.
|
||||
* Setter for <code>public.v_registration.phone</code>.
|
||||
*/
|
||||
public VRegistrationRecord setPhone(String value) {
|
||||
set(6, value);
|
||||
@ -119,14 +119,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.phone</code>.
|
||||
* Getter for <code>public.v_registration.phone</code>.
|
||||
*/
|
||||
public String getPhone() {
|
||||
return (String) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.birthdate</code>.
|
||||
* Setter for <code>public.v_registration.birthdate</code>.
|
||||
*/
|
||||
public VRegistrationRecord setBirthdate(LocalDate value) {
|
||||
set(7, value);
|
||||
@ -134,14 +134,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.birthdate</code>.
|
||||
* Getter for <code>public.v_registration.birthdate</code>.
|
||||
*/
|
||||
public LocalDate getBirthdate() {
|
||||
return (LocalDate) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.camprole</code>.
|
||||
* Setter for <code>public.v_registration.camprole</code>.
|
||||
*/
|
||||
public VRegistrationRecord setCamprole(EnumCamprole value) {
|
||||
set(8, value);
|
||||
@ -149,14 +149,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.camprole</code>.
|
||||
* Getter for <code>public.v_registration.camprole</code>.
|
||||
*/
|
||||
public EnumCamprole getCamprole() {
|
||||
return (EnumCamprole) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.email</code>.
|
||||
* Setter for <code>public.v_registration.email</code>.
|
||||
*/
|
||||
public VRegistrationRecord setEmail(String value) {
|
||||
set(9, value);
|
||||
@ -164,14 +164,14 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.email</code>.
|
||||
* Getter for <code>public.v_registration.email</code>.
|
||||
*/
|
||||
public String getEmail() {
|
||||
return (String) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_registration.campname</code>.
|
||||
* Setter for <code>public.v_registration.campname</code>.
|
||||
*/
|
||||
public VRegistrationRecord setCampname(String value) {
|
||||
set(10, value);
|
||||
@ -179,7 +179,7 @@ public class VRegistrationRecord extends TableRecordImpl<VRegistrationRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_registration.campname</code>.
|
||||
* Getter for <code>public.v_registration.campname</code>.
|
||||
*/
|
||||
public String getCampname() {
|
||||
return (String) get(10);
|
||||
|
@ -19,7 +19,7 @@ public class VRoleRecord extends TableRecordImpl<VRoleRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_role.unnest</code>.
|
||||
* Setter for <code>public.v_role.unnest</code>.
|
||||
*/
|
||||
public VRoleRecord setUnnest(EnumRole value) {
|
||||
set(0, value);
|
||||
@ -27,7 +27,7 @@ public class VRoleRecord extends TableRecordImpl<VRoleRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_role.unnest</code>.
|
||||
* Getter for <code>public.v_role.unnest</code>.
|
||||
*/
|
||||
public EnumRole getUnnest() {
|
||||
return (EnumRole) get(0);
|
||||
|
@ -21,7 +21,7 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.pk</code>.
|
||||
* Setter for <code>public.v_sales.pk</code>.
|
||||
*/
|
||||
public VSalesRecord setPk(Integer value) {
|
||||
set(0, value);
|
||||
@ -29,14 +29,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.pk</code>.
|
||||
* Getter for <code>public.v_sales.pk</code>.
|
||||
*/
|
||||
public Integer getPk() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.trader</code>.
|
||||
* Setter for <code>public.v_sales.trader</code>.
|
||||
*/
|
||||
public VSalesRecord setTrader(String value) {
|
||||
set(1, value);
|
||||
@ -44,14 +44,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.trader</code>.
|
||||
* Getter for <code>public.v_sales.trader</code>.
|
||||
*/
|
||||
public String getTrader() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.fk_camp</code>.
|
||||
* Setter for <code>public.v_sales.fk_camp</code>.
|
||||
*/
|
||||
public VSalesRecord setFkCamp(Integer value) {
|
||||
set(2, value);
|
||||
@ -59,14 +59,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.fk_camp</code>.
|
||||
* Getter for <code>public.v_sales.fk_camp</code>.
|
||||
*/
|
||||
public Integer getFkCamp() {
|
||||
return (Integer) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.name</code>.
|
||||
* Setter for <code>public.v_sales.name</code>.
|
||||
*/
|
||||
public VSalesRecord setName(String value) {
|
||||
set(3, value);
|
||||
@ -74,14 +74,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.name</code>.
|
||||
* Getter for <code>public.v_sales.name</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return (String) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.fk_location</code>.
|
||||
* Setter for <code>public.v_sales.fk_location</code>.
|
||||
*/
|
||||
public VSalesRecord setFkLocation(Integer value) {
|
||||
set(4, value);
|
||||
@ -89,14 +89,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.fk_location</code>.
|
||||
* Getter for <code>public.v_sales.fk_location</code>.
|
||||
*/
|
||||
public Integer getFkLocation() {
|
||||
return (Integer) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.location</code>.
|
||||
* Setter for <code>public.v_sales.location</code>.
|
||||
*/
|
||||
public VSalesRecord setLocation(String value) {
|
||||
set(5, value);
|
||||
@ -104,14 +104,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.location</code>.
|
||||
* Getter for <code>public.v_sales.location</code>.
|
||||
*/
|
||||
public String getLocation() {
|
||||
return (String) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.incredients</code>.
|
||||
* Setter for <code>public.v_sales.incredients</code>.
|
||||
*/
|
||||
public VSalesRecord setIncredients(String value) {
|
||||
set(6, value);
|
||||
@ -119,14 +119,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.incredients</code>.
|
||||
* Getter for <code>public.v_sales.incredients</code>.
|
||||
*/
|
||||
public String getIncredients() {
|
||||
return (String) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.year</code>.
|
||||
* Setter for <code>public.v_sales.year</code>.
|
||||
*/
|
||||
public VSalesRecord setYear(Double value) {
|
||||
set(7, value);
|
||||
@ -134,14 +134,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.year</code>.
|
||||
* Getter for <code>public.v_sales.year</code>.
|
||||
*/
|
||||
public Double getYear() {
|
||||
return (Double) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.fk_sales</code>.
|
||||
* Setter for <code>public.v_sales.fk_sales</code>.
|
||||
*/
|
||||
public VSalesRecord setFkSales(Integer value) {
|
||||
set(8, value);
|
||||
@ -149,14 +149,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.fk_sales</code>.
|
||||
* Getter for <code>public.v_sales.fk_sales</code>.
|
||||
*/
|
||||
public Integer getFkSales() {
|
||||
return (Integer) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.provider</code>.
|
||||
* Setter for <code>public.v_sales.provider</code>.
|
||||
*/
|
||||
public VSalesRecord setProvider(String value) {
|
||||
set(9, value);
|
||||
@ -164,14 +164,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.provider</code>.
|
||||
* Getter for <code>public.v_sales.provider</code>.
|
||||
*/
|
||||
public String getProvider() {
|
||||
return (String) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.cash</code>.
|
||||
* Setter for <code>public.v_sales.cash</code>.
|
||||
*/
|
||||
public VSalesRecord setCash(BigDecimal value) {
|
||||
set(10, value);
|
||||
@ -179,14 +179,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.cash</code>.
|
||||
* Getter for <code>public.v_sales.cash</code>.
|
||||
*/
|
||||
public BigDecimal getCash() {
|
||||
return (BigDecimal) get(10);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.buydate</code>.
|
||||
* Setter for <code>public.v_sales.buydate</code>.
|
||||
*/
|
||||
public VSalesRecord setBuydate(LocalDateTime value) {
|
||||
set(11, value);
|
||||
@ -194,14 +194,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.buydate</code>.
|
||||
* Getter for <code>public.v_sales.buydate</code>.
|
||||
*/
|
||||
public LocalDateTime getBuydate() {
|
||||
return (LocalDateTime) get(11);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.recipenumber</code>.
|
||||
* Setter for <code>public.v_sales.recipenumber</code>.
|
||||
*/
|
||||
public VSalesRecord setRecipenumber(String value) {
|
||||
set(12, value);
|
||||
@ -209,14 +209,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.recipenumber</code>.
|
||||
* Getter for <code>public.v_sales.recipenumber</code>.
|
||||
*/
|
||||
public String getRecipenumber() {
|
||||
return (String) get(12);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.recipeshot</code>.
|
||||
* Setter for <code>public.v_sales.recipeshot</code>.
|
||||
*/
|
||||
public VSalesRecord setRecipeshot(byte[] value) {
|
||||
set(13, value);
|
||||
@ -224,14 +224,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.recipeshot</code>.
|
||||
* Getter for <code>public.v_sales.recipeshot</code>.
|
||||
*/
|
||||
public byte[] getRecipeshot() {
|
||||
return (byte[]) get(13);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.recipenote</code>.
|
||||
* Setter for <code>public.v_sales.recipenote</code>.
|
||||
*/
|
||||
public VSalesRecord setRecipenote(String value) {
|
||||
set(14, value);
|
||||
@ -239,14 +239,14 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.recipenote</code>.
|
||||
* Getter for <code>public.v_sales.recipenote</code>.
|
||||
*/
|
||||
public String getRecipenote() {
|
||||
return (String) get(14);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>camp.v_sales.content</code>.
|
||||
* Setter for <code>public.v_sales.content</code>.
|
||||
*/
|
||||
public VSalesRecord setContent(String[] value) {
|
||||
set(15, value);
|
||||
@ -254,7 +254,7 @@ public class VSalesRecord extends TableRecordImpl<VSalesRecord> {
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>camp.v_sales.content</code>.
|
||||
* Getter for <code>public.v_sales.content</code>.
|
||||
*/
|
||||
public String[] getContent() {
|
||||
return (String[]) get(15);
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user