Обновление бд
This commit is contained in:
parent
8e3119b4eb
commit
0309cd900f
23 changed files with 1491 additions and 726 deletions
|
|
@ -11,9 +11,9 @@ import org.jooq.Constants;
|
|||
import org.jooq.Schema;
|
||||
import org.jooq.impl.CatalogImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.ErvuBusinessMetrics;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.InitRegistrationInfo;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.Metrics;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.Public;
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -29,11 +29,6 @@ public class DefaultCatalog extends CatalogImpl {
|
|||
*/
|
||||
public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();
|
||||
|
||||
/**
|
||||
* The schema <code>ervu_business_metrics</code>.
|
||||
*/
|
||||
public final ErvuBusinessMetrics ERVU_BUSINESS_METRICS = ErvuBusinessMetrics.ERVU_BUSINESS_METRICS;
|
||||
|
||||
/**
|
||||
* The schema <code>init_registration_info</code>.
|
||||
*/
|
||||
|
|
@ -44,6 +39,11 @@ public class DefaultCatalog extends CatalogImpl {
|
|||
*/
|
||||
public final Metrics METRICS = Metrics.METRICS;
|
||||
|
||||
/**
|
||||
* The schema <code>public</code>.
|
||||
*/
|
||||
public final Public PUBLIC = Public.PUBLIC;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
|
|
@ -54,9 +54,9 @@ public class DefaultCatalog extends CatalogImpl {
|
|||
@Override
|
||||
public final List<Schema> getSchemas() {
|
||||
return Arrays.asList(
|
||||
ErvuBusinessMetrics.ERVU_BUSINESS_METRICS,
|
||||
InitRegistrationInfo.INIT_REGISTRATION_INFO,
|
||||
Metrics.METRICS
|
||||
Metrics.METRICS,
|
||||
Public.PUBLIC
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,62 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.impl.SchemaImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.DefaultCatalog;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.Databasechangelog;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.Databasechangeloglock;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ErvuBusinessMetrics extends SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>ervu_business_metrics</code>
|
||||
*/
|
||||
public static final ErvuBusinessMetrics ERVU_BUSINESS_METRICS = new ErvuBusinessMetrics();
|
||||
|
||||
/**
|
||||
* The table <code>ervu_business_metrics.databasechangelog</code>.
|
||||
*/
|
||||
public final Databasechangelog DATABASECHANGELOG = Databasechangelog.DATABASECHANGELOG;
|
||||
|
||||
/**
|
||||
* The table <code>ervu_business_metrics.databasechangeloglock</code>.
|
||||
*/
|
||||
public final Databasechangeloglock DATABASECHANGELOGLOCK = Databasechangeloglock.DATABASECHANGELOGLOCK;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private ErvuBusinessMetrics() {
|
||||
super("ervu_business_metrics", null);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Catalog getCatalog() {
|
||||
return DefaultCatalog.DEFAULT_CATALOG;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final List<Table<?>> getTables() {
|
||||
return Arrays.asList(
|
||||
Databasechangelog.DATABASECHANGELOG,
|
||||
Databasechangeloglock.DATABASECHANGELOGLOCK
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,28 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics;
|
||||
|
||||
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.Internal;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.Databasechangeloglock;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.records.DatabasechangeloglockRecord;
|
||||
|
||||
|
||||
/**
|
||||
* A class modelling foreign key relationships and constraints of tables in
|
||||
* ervu_business_metrics.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Keys {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// UNIQUE and PRIMARY KEY definitions
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final UniqueKey<DatabasechangeloglockRecord> DATABASECHANGELOGLOCK_PKEY = Internal.createUniqueKey(Databasechangeloglock.DATABASECHANGELOGLOCK, DSL.name("databasechangeloglock_pkey"), new TableField[] { Databasechangeloglock.DATABASECHANGELOGLOCK.ID }, true);
|
||||
}
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics;
|
||||
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.Databasechangelog;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.Databasechangeloglock;
|
||||
|
||||
|
||||
/**
|
||||
* Convenience access to all tables in ervu_business_metrics.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Tables {
|
||||
|
||||
/**
|
||||
* The table <code>ervu_business_metrics.databasechangelog</code>.
|
||||
*/
|
||||
public static final Databasechangelog DATABASECHANGELOG = Databasechangelog.DATABASECHANGELOG;
|
||||
|
||||
/**
|
||||
* The table <code>ervu_business_metrics.databasechangeloglock</code>.
|
||||
*/
|
||||
public static final Databasechangeloglock DATABASECHANGELOGLOCK = Databasechangeloglock.DATABASECHANGELOGLOCK;
|
||||
}
|
||||
|
|
@ -1,286 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables;
|
||||
|
||||
|
||||
import java.sql.Timestamp;
|
||||
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 ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.ErvuBusinessMetrics;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.records.DatabasechangelogRecord;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Databasechangelog extends TableImpl<DatabasechangelogRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of
|
||||
* <code>ervu_business_metrics.databasechangelog</code>
|
||||
*/
|
||||
public static final Databasechangelog DATABASECHANGELOG = new Databasechangelog();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<DatabasechangelogRecord> getRecordType() {
|
||||
return DatabasechangelogRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.id</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.author</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> AUTHOR = createField(DSL.name("author"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.filename</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> FILENAME = createField(DSL.name("filename"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangelog.dateexecuted</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, Timestamp> DATEEXECUTED = createField(DSL.name("dateexecuted"), SQLDataType.TIMESTAMP(0).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangelog.orderexecuted</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, Integer> ORDEREXECUTED = createField(DSL.name("orderexecuted"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.exectype</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> EXECTYPE = createField(DSL.name("exectype"), SQLDataType.VARCHAR(10).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.md5sum</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> MD5SUM = createField(DSL.name("md5sum"), SQLDataType.VARCHAR(35), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangelog.description</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.comments</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> COMMENTS = createField(DSL.name("comments"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.tag</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> TAG = createField(DSL.name("tag"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangelog.liquibase</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> LIQUIBASE = createField(DSL.name("liquibase"), SQLDataType.VARCHAR(20), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.contexts</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> CONTEXTS = createField(DSL.name("contexts"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangelog.labels</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> LABELS = createField(DSL.name("labels"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangelog.deployment_id</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangelogRecord, String> DEPLOYMENT_ID = createField(DSL.name("deployment_id"), SQLDataType.VARCHAR(10), this, "");
|
||||
|
||||
private Databasechangelog(Name alias, Table<DatabasechangelogRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private Databasechangelog(Name alias, Table<DatabasechangelogRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>ervu_business_metrics.databasechangelog</code>
|
||||
* table reference
|
||||
*/
|
||||
public Databasechangelog(String alias) {
|
||||
this(DSL.name(alias), DATABASECHANGELOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>ervu_business_metrics.databasechangelog</code>
|
||||
* table reference
|
||||
*/
|
||||
public Databasechangelog(Name alias) {
|
||||
this(alias, DATABASECHANGELOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>ervu_business_metrics.databasechangelog</code> table
|
||||
* reference
|
||||
*/
|
||||
public Databasechangelog() {
|
||||
this(DSL.name("databasechangelog"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : ErvuBusinessMetrics.ERVU_BUSINESS_METRICS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Databasechangelog as(String alias) {
|
||||
return new Databasechangelog(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Databasechangelog as(Name alias) {
|
||||
return new Databasechangelog(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Databasechangelog as(Table<?> alias) {
|
||||
return new Databasechangelog(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog rename(String name) {
|
||||
return new Databasechangelog(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog rename(Name name) {
|
||||
return new Databasechangelog(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog rename(Table<?> name) {
|
||||
return new Databasechangelog(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog where(Condition condition) {
|
||||
return new Databasechangelog(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangelog where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangelog where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangelog where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangelog where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangelog whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,241 +0,0 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables;
|
||||
|
||||
|
||||
import java.sql.Timestamp;
|
||||
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.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.ErvuBusinessMetrics;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.Keys;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.records.DatabasechangeloglockRecord;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Databasechangeloglock extends TableImpl<DatabasechangeloglockRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of
|
||||
* <code>ervu_business_metrics.databasechangeloglock</code>
|
||||
*/
|
||||
public static final Databasechangeloglock DATABASECHANGELOGLOCK = new Databasechangeloglock();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<DatabasechangeloglockRecord> getRecordType() {
|
||||
return DatabasechangeloglockRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>ervu_business_metrics.databasechangeloglock.id</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangeloglockRecord, Integer> ID = createField(DSL.name("id"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangeloglock.locked</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangeloglockRecord, Boolean> LOCKED = createField(DSL.name("locked"), SQLDataType.BOOLEAN.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangeloglock.lockgranted</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangeloglockRecord, Timestamp> LOCKGRANTED = createField(DSL.name("lockgranted"), SQLDataType.TIMESTAMP(0), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>ervu_business_metrics.databasechangeloglock.lockedby</code>.
|
||||
*/
|
||||
public final TableField<DatabasechangeloglockRecord, String> LOCKEDBY = createField(DSL.name("lockedby"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
private Databasechangeloglock(Name alias, Table<DatabasechangeloglockRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private Databasechangeloglock(Name alias, Table<DatabasechangeloglockRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased
|
||||
* <code>ervu_business_metrics.databasechangeloglock</code> table reference
|
||||
*/
|
||||
public Databasechangeloglock(String alias) {
|
||||
this(DSL.name(alias), DATABASECHANGELOGLOCK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased
|
||||
* <code>ervu_business_metrics.databasechangeloglock</code> table reference
|
||||
*/
|
||||
public Databasechangeloglock(Name alias) {
|
||||
this(alias, DATABASECHANGELOGLOCK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>ervu_business_metrics.databasechangeloglock</code> table
|
||||
* reference
|
||||
*/
|
||||
public Databasechangeloglock() {
|
||||
this(DSL.name("databasechangeloglock"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : ErvuBusinessMetrics.ERVU_BUSINESS_METRICS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<DatabasechangeloglockRecord> getPrimaryKey() {
|
||||
return Keys.DATABASECHANGELOGLOCK_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Databasechangeloglock as(String alias) {
|
||||
return new Databasechangeloglock(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Databasechangeloglock as(Name alias) {
|
||||
return new Databasechangeloglock(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Databasechangeloglock as(Table<?> alias) {
|
||||
return new Databasechangeloglock(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock rename(String name) {
|
||||
return new Databasechangeloglock(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock rename(Name name) {
|
||||
return new Databasechangeloglock(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock rename(Table<?> name) {
|
||||
return new Databasechangeloglock(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock where(Condition condition) {
|
||||
return new Databasechangeloglock(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangeloglock where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangeloglock where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangeloglock where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Databasechangeloglock where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Databasechangeloglock whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -16,6 +16,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInf
|
|||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoNotIdentifitedRecords;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoRecordsFromEasu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoSentToLkEpgu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.CriminalAdministrativeLiability;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Recruitment;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Region;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.ConvertInfoCommonResultsRecord;
|
||||
|
|
@ -24,6 +25,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.Co
|
|||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.ConvertInfoNotIdentifitedRecordsRecord;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.ConvertInfoRecordsFromEasuRecord;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.ConvertInfoSentToLkEpguRecord;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.CriminalAdministrativeLiabilityRecord;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.RecruitmentRecord;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.RegionRecord;
|
||||
|
||||
|
|
@ -45,6 +47,7 @@ public class Keys {
|
|||
public static final UniqueKey<ConvertInfoNotIdentifitedRecordsRecord> CONVERT_INFO_NOT_IDENTIFITED_RECORDS_PKEY = Internal.createUniqueKey(ConvertInfoNotIdentifitedRecords.CONVERT_INFO_NOT_IDENTIFITED_RECORDS, DSL.name("convert_info_not_identifited_records_pkey"), new TableField[] { ConvertInfoNotIdentifitedRecords.CONVERT_INFO_NOT_IDENTIFITED_RECORDS.CONVERT_INFO_NOT_IDENTIFITED_RECORDS_ID }, true);
|
||||
public static final UniqueKey<ConvertInfoRecordsFromEasuRecord> CONVERT_INFO_RECORDS_FROM_EASU_PKEY = Internal.createUniqueKey(ConvertInfoRecordsFromEasu.CONVERT_INFO_RECORDS_FROM_EASU, DSL.name("convert_info_records_from_easu_pkey"), new TableField[] { ConvertInfoRecordsFromEasu.CONVERT_INFO_RECORDS_FROM_EASU.CONVERT_INFO_RECORDS_FROM_EASU_ID }, true);
|
||||
public static final UniqueKey<ConvertInfoSentToLkEpguRecord> CONVERT_INFO_SENT_TO_LK_EPGU_PKEY = Internal.createUniqueKey(ConvertInfoSentToLkEpgu.CONVERT_INFO_SENT_TO_LK_EPGU, DSL.name("convert_info_sent_to_lk_epgu_pkey"), new TableField[] { ConvertInfoSentToLkEpgu.CONVERT_INFO_SENT_TO_LK_EPGU.CONVERT_INFO_SENT_TO_LK_EPGU_ID }, true);
|
||||
public static final UniqueKey<CriminalAdministrativeLiabilityRecord> CRIMINAL_ADMINISTRATIVE_LIABILITY_PKEY = Internal.createUniqueKey(CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY, DSL.name("criminal_administrative_liability_pkey"), new TableField[] { CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY.CRIMINAL_ADMINISTRATIVE_LIABILITY_ID }, true);
|
||||
public static final UniqueKey<RecruitmentRecord> RECRUITMENT_IDM_ID_KEY = Internal.createUniqueKey(Recruitment.RECRUITMENT, DSL.name("recruitment_idm_id_key"), new TableField[] { Recruitment.RECRUITMENT.IDM_ID }, true);
|
||||
public static final UniqueKey<RecruitmentRecord> RECRUITMENT_PKEY = Internal.createUniqueKey(Recruitment.RECRUITMENT, DSL.name("recruitment_pkey"), new TableField[] { Recruitment.RECRUITMENT.ID }, true);
|
||||
public static final UniqueKey<RegionRecord> REGION_PKEY = Internal.createUniqueKey(Region.REGION, DSL.name("region_pkey"), new TableField[] { Region.REGION.REGION_ID }, true);
|
||||
|
|
@ -60,5 +63,6 @@ public class Keys {
|
|||
public static final ForeignKey<ConvertInfoNotIdentifitedRecordsRecord, RecruitmentRecord> CONVERT_INFO_NOT_IDENTIFITED_RECORDS__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(ConvertInfoNotIdentifitedRecords.CONVERT_INFO_NOT_IDENTIFITED_RECORDS, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { ConvertInfoNotIdentifitedRecords.CONVERT_INFO_NOT_IDENTIFITED_RECORDS.RECRUITMENT_ID }, Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);
|
||||
public static final ForeignKey<ConvertInfoRecordsFromEasuRecord, RecruitmentRecord> CONVERT_INFO_RECORDS_FROM_EASU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(ConvertInfoRecordsFromEasu.CONVERT_INFO_RECORDS_FROM_EASU, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { ConvertInfoRecordsFromEasu.CONVERT_INFO_RECORDS_FROM_EASU.RECRUITMENT_ID }, Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);
|
||||
public static final ForeignKey<ConvertInfoSentToLkEpguRecord, RecruitmentRecord> CONVERT_INFO_SENT_TO_LK_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(ConvertInfoSentToLkEpgu.CONVERT_INFO_SENT_TO_LK_EPGU, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { ConvertInfoSentToLkEpgu.CONVERT_INFO_SENT_TO_LK_EPGU.RECRUITMENT_ID }, Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);
|
||||
public static final ForeignKey<CriminalAdministrativeLiabilityRecord, RecruitmentRecord> CRIMINAL_ADMINISTRATIVE_LIABILITY__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID = Internal.createForeignKey(CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY, DSL.name("fk_criminal_administrative_liability_recruitment_id"), new TableField[] { CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY.RECRUITMENT_ID }, Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);
|
||||
public static final ForeignKey<RecruitmentRecord, RegionRecord> RECRUITMENT__FK_RECRUITMENT_REGION_ID = Internal.createForeignKey(Recruitment.RECRUITMENT, DSL.name("fk_recruitment_region_id"), new TableField[] { Recruitment.RECRUITMENT.REGION_ID }, Keys.REGION_PKEY, new TableField[] { Region.REGION.REGION_ID }, true);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -19,8 +19,10 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInf
|
|||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoNotIdentifitedRecords;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoRecordsFromEasu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoSentToLkEpgu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.CriminalAdministrativeLiability;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Recruitment;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Region;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ViewCriminalAdministrativeLiability;
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -66,6 +68,11 @@ public class Metrics extends SchemaImpl {
|
|||
*/
|
||||
public final ConvertInfoSentToLkEpgu CONVERT_INFO_SENT_TO_LK_EPGU = ConvertInfoSentToLkEpgu.CONVERT_INFO_SENT_TO_LK_EPGU;
|
||||
|
||||
/**
|
||||
* Учет уголовной, административной ответственности
|
||||
*/
|
||||
public final CriminalAdministrativeLiability CRIMINAL_ADMINISTRATIVE_LIABILITY = CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY;
|
||||
|
||||
/**
|
||||
* Военный комиссариат
|
||||
*/
|
||||
|
|
@ -76,6 +83,11 @@ public class Metrics extends SchemaImpl {
|
|||
*/
|
||||
public final Region REGION = Region.REGION;
|
||||
|
||||
/**
|
||||
* The table <code>metrics.view_criminal_administrative_liability</code>.
|
||||
*/
|
||||
public final ViewCriminalAdministrativeLiability VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY = ViewCriminalAdministrativeLiability.VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
|
|
@ -95,7 +107,8 @@ public class Metrics extends SchemaImpl {
|
|||
Sequences.CONVERT_INFO_COMPARISON_CSV_X_CONVERT_INFO_COMPARISON_CSV_X_SEQ,
|
||||
Sequences.CONVERT_INFO_NOT_IDENTIFITED__CONVERT_INFO_NOT_IDENTIFITED__SEQ,
|
||||
Sequences.CONVERT_INFO_RECORDS_FROM_EAS_CONVERT_INFO_RECORDS_FROM_EAS_SEQ,
|
||||
Sequences.CONVERT_INFO_SENT_TO_LK_EPGU_CONVERT_INFO_SENT_TO_LK_EPGU_I_SEQ
|
||||
Sequences.CONVERT_INFO_SENT_TO_LK_EPGU_CONVERT_INFO_SENT_TO_LK_EPGU_I_SEQ,
|
||||
Sequences.CRIMINAL_ADMINISTRATIVE_LIABI_CRIMINAL_ADMINISTRATIVE_LIABI_SEQ
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -108,8 +121,10 @@ public class Metrics extends SchemaImpl {
|
|||
ConvertInfoNotIdentifitedRecords.CONVERT_INFO_NOT_IDENTIFITED_RECORDS,
|
||||
ConvertInfoRecordsFromEasu.CONVERT_INFO_RECORDS_FROM_EASU,
|
||||
ConvertInfoSentToLkEpgu.CONVERT_INFO_SENT_TO_LK_EPGU,
|
||||
CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY,
|
||||
Recruitment.RECRUITMENT,
|
||||
Region.REGION
|
||||
Region.REGION,
|
||||
ViewCriminalAdministrativeLiability.VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -38,4 +38,10 @@ public class Sequences {
|
|||
* <code>metrics.convert_info_sent_to_lk_epgu_convert_info_sent_to_lk_epgu_i_seq</code>
|
||||
*/
|
||||
public static final Sequence<Long> CONVERT_INFO_SENT_TO_LK_EPGU_CONVERT_INFO_SENT_TO_LK_EPGU_I_SEQ = Internal.createSequence("convert_info_sent_to_lk_epgu_convert_info_sent_to_lk_epgu_i_seq", Metrics.METRICS, SQLDataType.BIGINT.nullable(false), null, null, null, null, false, null);
|
||||
|
||||
/**
|
||||
* The sequence
|
||||
* <code>metrics.criminal_administrative_liabi_criminal_administrative_liabi_seq</code>
|
||||
*/
|
||||
public static final Sequence<Long> CRIMINAL_ADMINISTRATIVE_LIABI_CRIMINAL_ADMINISTRATIVE_LIABI_SEQ = Internal.createSequence("criminal_administrative_liabi_criminal_administrative_liabi_seq", Metrics.METRICS, SQLDataType.BIGINT.nullable(false), null, null, null, null, false, null);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,8 +10,10 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInf
|
|||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoNotIdentifitedRecords;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoRecordsFromEasu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoSentToLkEpgu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.CriminalAdministrativeLiability;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Recruitment;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Region;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ViewCriminalAdministrativeLiability;
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -50,6 +52,11 @@ public class Tables {
|
|||
*/
|
||||
public static final ConvertInfoSentToLkEpgu CONVERT_INFO_SENT_TO_LK_EPGU = ConvertInfoSentToLkEpgu.CONVERT_INFO_SENT_TO_LK_EPGU;
|
||||
|
||||
/**
|
||||
* Учет уголовной, административной ответственности
|
||||
*/
|
||||
public static final CriminalAdministrativeLiability CRIMINAL_ADMINISTRATIVE_LIABILITY = CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY;
|
||||
|
||||
/**
|
||||
* Военный комиссариат
|
||||
*/
|
||||
|
|
@ -59,4 +66,9 @@ public class Tables {
|
|||
* The table <code>metrics.region</code>.
|
||||
*/
|
||||
public static final Region REGION = Region.REGION;
|
||||
|
||||
/**
|
||||
* The table <code>metrics.view_criminal_administrative_liability</code>.
|
||||
*/
|
||||
public static final ViewCriminalAdministrativeLiability VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY = ViewCriminalAdministrativeLiability.VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,316 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables;
|
||||
|
||||
|
||||
import java.sql.Date;
|
||||
import java.sql.Timestamp;
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.ForeignKey;
|
||||
import org.jooq.Identity;
|
||||
import org.jooq.InverseForeignKey;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.Path;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.Record;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.Keys;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.Metrics;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Recruitment.RecruitmentPath;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.CriminalAdministrativeLiabilityRecord;
|
||||
|
||||
|
||||
/**
|
||||
* Учет уголовной, административной ответственности
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CriminalAdministrativeLiability extends TableImpl<CriminalAdministrativeLiabilityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of
|
||||
* <code>metrics.criminal_administrative_liability</code>
|
||||
*/
|
||||
public static final CriminalAdministrativeLiability CRIMINAL_ADMINISTRATIVE_LIABILITY = new CriminalAdministrativeLiability();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<CriminalAdministrativeLiabilityRecord> getRecordType() {
|
||||
return CriminalAdministrativeLiabilityRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.criminal_administrative_liability.criminal_administrative_liability_id</code>.
|
||||
*/
|
||||
public final TableField<CriminalAdministrativeLiabilityRecord, Long> CRIMINAL_ADMINISTRATIVE_LIABILITY_ID = createField(DSL.name("criminal_administrative_liability_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.criminal_administrative_liability.recruitment_id</code>.
|
||||
*/
|
||||
public final TableField<CriminalAdministrativeLiabilityRecord, String> RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.criminal_administrative_liability.update_date</code>.
|
||||
*/
|
||||
public final TableField<CriminalAdministrativeLiabilityRecord, Timestamp> UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.criminal_administrative_liability.info_date</code>.
|
||||
*/
|
||||
public final TableField<CriminalAdministrativeLiabilityRecord, Date> INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.criminal_administrative_liability.count_administrative</code>.
|
||||
*/
|
||||
public final TableField<CriminalAdministrativeLiabilityRecord, Long> COUNT_ADMINISTRATIVE = createField(DSL.name("count_administrative"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.criminal_administrative_liability.count_criminal</code>.
|
||||
*/
|
||||
public final TableField<CriminalAdministrativeLiabilityRecord, Long> COUNT_CRIMINAL = createField(DSL.name("count_criminal"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
private CriminalAdministrativeLiability(Name alias, Table<CriminalAdministrativeLiabilityRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private CriminalAdministrativeLiability(Name alias, Table<CriminalAdministrativeLiabilityRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment("Учет уголовной, административной ответственности"), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>metrics.criminal_administrative_liability</code>
|
||||
* table reference
|
||||
*/
|
||||
public CriminalAdministrativeLiability(String alias) {
|
||||
this(DSL.name(alias), CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>metrics.criminal_administrative_liability</code>
|
||||
* table reference
|
||||
*/
|
||||
public CriminalAdministrativeLiability(Name alias) {
|
||||
this(alias, CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>metrics.criminal_administrative_liability</code> table
|
||||
* reference
|
||||
*/
|
||||
public CriminalAdministrativeLiability() {
|
||||
this(DSL.name("criminal_administrative_liability"), null);
|
||||
}
|
||||
|
||||
public <O extends Record> CriminalAdministrativeLiability(Table<O> path, ForeignKey<O, CriminalAdministrativeLiabilityRecord> childPath, InverseForeignKey<O, CriminalAdministrativeLiabilityRecord> parentPath) {
|
||||
super(path, childPath, parentPath, CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* A subtype implementing {@link Path} for simplified path-based joins.
|
||||
*/
|
||||
public static class CriminalAdministrativeLiabilityPath extends CriminalAdministrativeLiability implements Path<CriminalAdministrativeLiabilityRecord> {
|
||||
public <O extends Record> CriminalAdministrativeLiabilityPath(Table<O> path, ForeignKey<O, CriminalAdministrativeLiabilityRecord> childPath, InverseForeignKey<O, CriminalAdministrativeLiabilityRecord> parentPath) {
|
||||
super(path, childPath, parentPath);
|
||||
}
|
||||
private CriminalAdministrativeLiabilityPath(Name alias, Table<CriminalAdministrativeLiabilityRecord> aliased) {
|
||||
super(alias, aliased);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CriminalAdministrativeLiabilityPath as(String alias) {
|
||||
return new CriminalAdministrativeLiabilityPath(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CriminalAdministrativeLiabilityPath as(Name alias) {
|
||||
return new CriminalAdministrativeLiabilityPath(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CriminalAdministrativeLiabilityPath as(Table<?> alias) {
|
||||
return new CriminalAdministrativeLiabilityPath(alias.getQualifiedName(), this);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Metrics.METRICS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Identity<CriminalAdministrativeLiabilityRecord, Long> getIdentity() {
|
||||
return (Identity<CriminalAdministrativeLiabilityRecord, Long>) super.getIdentity();
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<CriminalAdministrativeLiabilityRecord> getPrimaryKey() {
|
||||
return Keys.CRIMINAL_ADMINISTRATIVE_LIABILITY_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ForeignKey<CriminalAdministrativeLiabilityRecord, ?>> getReferences() {
|
||||
return Arrays.asList(Keys.CRIMINAL_ADMINISTRATIVE_LIABILITY__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID);
|
||||
}
|
||||
|
||||
private transient RecruitmentPath _recruitment;
|
||||
|
||||
/**
|
||||
* Get the implicit join path to the <code>metrics.recruitment</code> table.
|
||||
*/
|
||||
public RecruitmentPath recruitment() {
|
||||
if (_recruitment == null)
|
||||
_recruitment = new RecruitmentPath(this, Keys.CRIMINAL_ADMINISTRATIVE_LIABILITY__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID, null);
|
||||
|
||||
return _recruitment;
|
||||
}
|
||||
|
||||
@Override
|
||||
public CriminalAdministrativeLiability as(String alias) {
|
||||
return new CriminalAdministrativeLiability(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CriminalAdministrativeLiability as(Name alias) {
|
||||
return new CriminalAdministrativeLiability(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public CriminalAdministrativeLiability as(Table<?> alias) {
|
||||
return new CriminalAdministrativeLiability(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability rename(String name) {
|
||||
return new CriminalAdministrativeLiability(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability rename(Name name) {
|
||||
return new CriminalAdministrativeLiability(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability rename(Table<?> name) {
|
||||
return new CriminalAdministrativeLiability(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability where(Condition condition) {
|
||||
return new CriminalAdministrativeLiability(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public CriminalAdministrativeLiability where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public CriminalAdministrativeLiability where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public CriminalAdministrativeLiability where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public CriminalAdministrativeLiability where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public CriminalAdministrativeLiability whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -46,6 +46,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInf
|
|||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoNotIdentifitedRecords.ConvertInfoNotIdentifitedRecordsPath;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoRecordsFromEasu.ConvertInfoRecordsFromEasuPath;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ConvertInfoSentToLkEpgu.ConvertInfoSentToLkEpguPath;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.CriminalAdministrativeLiability.CriminalAdministrativeLiabilityPath;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.Region.RegionPath;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.RecruitmentRecord;
|
||||
|
||||
|
|
@ -533,6 +534,19 @@ public class Recruitment extends TableImpl<RecruitmentRecord> {
|
|||
return _convertInfoSentToLkEpgu;
|
||||
}
|
||||
|
||||
private transient CriminalAdministrativeLiabilityPath _criminalAdministrativeLiability;
|
||||
|
||||
/**
|
||||
* Get the implicit to-many join path to the
|
||||
* <code>metrics.criminal_administrative_liability</code> table
|
||||
*/
|
||||
public CriminalAdministrativeLiabilityPath criminalAdministrativeLiability() {
|
||||
if (_criminalAdministrativeLiability == null)
|
||||
_criminalAdministrativeLiability = new CriminalAdministrativeLiabilityPath(this, null, Keys.CRIMINAL_ADMINISTRATIVE_LIABILITY__FK_CRIMINAL_ADMINISTRATIVE_LIABILITY_RECRUITMENT_ID.getInverseKey());
|
||||
|
||||
return _criminalAdministrativeLiability;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Recruitment as(String alias) {
|
||||
return new Recruitment(DSL.name(alias), this);
|
||||
|
|
|
|||
|
|
@ -0,0 +1,221 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables;
|
||||
|
||||
|
||||
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 ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.Metrics;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records.ViewCriminalAdministrativeLiabilityRecord;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ViewCriminalAdministrativeLiability extends TableImpl<ViewCriminalAdministrativeLiabilityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of
|
||||
* <code>metrics.view_criminal_administrative_liability</code>
|
||||
*/
|
||||
public static final ViewCriminalAdministrativeLiability VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY = new ViewCriminalAdministrativeLiability();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<ViewCriminalAdministrativeLiabilityRecord> getRecordType() {
|
||||
return ViewCriminalAdministrativeLiabilityRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>metrics.view_criminal_administrative_liability.?column?</code>.
|
||||
*/
|
||||
public final TableField<ViewCriminalAdministrativeLiabilityRecord, Long> _3fCOLUMN_3f = createField(DSL.name("?column?"), SQLDataType.BIGINT, this, "");
|
||||
|
||||
private ViewCriminalAdministrativeLiability(Name alias, Table<ViewCriminalAdministrativeLiabilityRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private ViewCriminalAdministrativeLiability(Name alias, Table<ViewCriminalAdministrativeLiabilityRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
|
||||
create view "view_criminal_administrative_liability" as SELECT (criminal_administrative_liability.count_administrative + criminal_administrative_liability.count_criminal) AS "?column?"
|
||||
FROM metrics.criminal_administrative_liability;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased
|
||||
* <code>metrics.view_criminal_administrative_liability</code> table
|
||||
* reference
|
||||
*/
|
||||
public ViewCriminalAdministrativeLiability(String alias) {
|
||||
this(DSL.name(alias), VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased
|
||||
* <code>metrics.view_criminal_administrative_liability</code> table
|
||||
* reference
|
||||
*/
|
||||
public ViewCriminalAdministrativeLiability(Name alias) {
|
||||
this(alias, VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>metrics.view_criminal_administrative_liability</code>
|
||||
* table reference
|
||||
*/
|
||||
public ViewCriminalAdministrativeLiability() {
|
||||
this(DSL.name("view_criminal_administrative_liability"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Metrics.METRICS;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability as(String alias) {
|
||||
return new ViewCriminalAdministrativeLiability(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability as(Name alias) {
|
||||
return new ViewCriminalAdministrativeLiability(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability as(Table<?> alias) {
|
||||
return new ViewCriminalAdministrativeLiability(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability rename(String name) {
|
||||
return new ViewCriminalAdministrativeLiability(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability rename(Name name) {
|
||||
return new ViewCriminalAdministrativeLiability(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability rename(Table<?> name) {
|
||||
return new ViewCriminalAdministrativeLiability(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability where(Condition condition) {
|
||||
return new ViewCriminalAdministrativeLiability(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewCriminalAdministrativeLiability where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewCriminalAdministrativeLiability where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewCriminalAdministrativeLiability where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewCriminalAdministrativeLiability where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewCriminalAdministrativeLiability whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,154 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records;
|
||||
|
||||
|
||||
import java.sql.Date;
|
||||
import java.sql.Timestamp;
|
||||
|
||||
import org.jooq.Record1;
|
||||
import org.jooq.impl.UpdatableRecordImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.CriminalAdministrativeLiability;
|
||||
|
||||
|
||||
/**
|
||||
* Учет уголовной, административной ответственности
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class CriminalAdministrativeLiabilityRecord extends UpdatableRecordImpl<CriminalAdministrativeLiabilityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.criminal_administrative_liability.criminal_administrative_liability_id</code>.
|
||||
*/
|
||||
public void setCriminalAdministrativeLiabilityId(Long value) {
|
||||
set(0, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.criminal_administrative_liability.criminal_administrative_liability_id</code>.
|
||||
*/
|
||||
public Long getCriminalAdministrativeLiabilityId() {
|
||||
return (Long) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.criminal_administrative_liability.recruitment_id</code>.
|
||||
*/
|
||||
public void setRecruitmentId(String value) {
|
||||
set(1, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.criminal_administrative_liability.recruitment_id</code>.
|
||||
*/
|
||||
public String getRecruitmentId() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.criminal_administrative_liability.update_date</code>.
|
||||
*/
|
||||
public void setUpdateDate(Timestamp value) {
|
||||
set(2, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.criminal_administrative_liability.update_date</code>.
|
||||
*/
|
||||
public Timestamp getUpdateDate() {
|
||||
return (Timestamp) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.criminal_administrative_liability.info_date</code>.
|
||||
*/
|
||||
public void setInfoDate(Date value) {
|
||||
set(3, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.criminal_administrative_liability.info_date</code>.
|
||||
*/
|
||||
public Date getInfoDate() {
|
||||
return (Date) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.criminal_administrative_liability.count_administrative</code>.
|
||||
*/
|
||||
public void setCountAdministrative(Long value) {
|
||||
set(4, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.criminal_administrative_liability.count_administrative</code>.
|
||||
*/
|
||||
public Long getCountAdministrative() {
|
||||
return (Long) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.criminal_administrative_liability.count_criminal</code>.
|
||||
*/
|
||||
public void setCountCriminal(Long value) {
|
||||
set(5, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.criminal_administrative_liability.count_criminal</code>.
|
||||
*/
|
||||
public Long getCountCriminal() {
|
||||
return (Long) get(5);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Primary key information
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
@Override
|
||||
public Record1<Long> key() {
|
||||
return (Record1) super.key();
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached CriminalAdministrativeLiabilityRecord
|
||||
*/
|
||||
public CriminalAdministrativeLiabilityRecord() {
|
||||
super(CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised CriminalAdministrativeLiabilityRecord
|
||||
*/
|
||||
public CriminalAdministrativeLiabilityRecord(Long criminalAdministrativeLiabilityId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countAdministrative, Long countCriminal) {
|
||||
super(CriminalAdministrativeLiability.CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
|
||||
setCriminalAdministrativeLiabilityId(criminalAdministrativeLiabilityId);
|
||||
setRecruitmentId(recruitmentId);
|
||||
setUpdateDate(updateDate);
|
||||
setInfoDate(infoDate);
|
||||
setCountAdministrative(countAdministrative);
|
||||
setCountCriminal(countCriminal);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,56 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.records;
|
||||
|
||||
|
||||
import org.jooq.impl.TableRecordImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.metrics.tables.ViewCriminalAdministrativeLiability;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ViewCriminalAdministrativeLiabilityRecord extends TableRecordImpl<ViewCriminalAdministrativeLiabilityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>metrics.view_criminal_administrative_liability.?column?</code>.
|
||||
*/
|
||||
public void set_3fcolumn_3f(Long value) {
|
||||
set(0, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>metrics.view_criminal_administrative_liability.?column?</code>.
|
||||
*/
|
||||
public Long get_3fcolumn_3f() {
|
||||
return (Long) get(0);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached ViewCriminalAdministrativeLiabilityRecord
|
||||
*/
|
||||
public ViewCriminalAdministrativeLiabilityRecord() {
|
||||
super(ViewCriminalAdministrativeLiability.VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised ViewCriminalAdministrativeLiabilityRecord
|
||||
*/
|
||||
public ViewCriminalAdministrativeLiabilityRecord(Long _3fcolumn_3f) {
|
||||
super(ViewCriminalAdministrativeLiability.VIEW_CRIMINAL_ADMINISTRATIVE_LIABILITY);
|
||||
|
||||
set_3fcolumn_3f(_3fcolumn_3f);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.public_;
|
||||
|
||||
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.Internal;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.Metricsdbchangelock;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.records.MetricsdbchangelockRecord;
|
||||
|
||||
|
||||
/**
|
||||
* A class modelling foreign key relationships and constraints of tables in
|
||||
* public.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Keys {
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// UNIQUE and PRIMARY KEY definitions
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
public static final UniqueKey<MetricsdbchangelockRecord> METRICSDBCHANGELOCK_PKEY = Internal.createUniqueKey(Metricsdbchangelock.METRICSDBCHANGELOCK, DSL.name("metricsdbchangelock_pkey"), new TableField[] { Metricsdbchangelock.METRICSDBCHANGELOCK.ID }, true);
|
||||
}
|
||||
|
|
@ -0,0 +1,62 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.public_;
|
||||
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
import org.jooq.Catalog;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.impl.SchemaImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.DefaultCatalog;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.Metricsdbchangelock;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.Metricsdbchangelog;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Public extends SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public</code>
|
||||
*/
|
||||
public static final Public PUBLIC = new Public();
|
||||
|
||||
/**
|
||||
* The table <code>public.metricsdbchangelock</code>.
|
||||
*/
|
||||
public final Metricsdbchangelock METRICSDBCHANGELOCK = Metricsdbchangelock.METRICSDBCHANGELOCK;
|
||||
|
||||
/**
|
||||
* The table <code>public.metricsdbchangelog</code>.
|
||||
*/
|
||||
public final Metricsdbchangelog METRICSDBCHANGELOG = Metricsdbchangelog.METRICSDBCHANGELOG;
|
||||
|
||||
/**
|
||||
* No further instances allowed
|
||||
*/
|
||||
private Public() {
|
||||
super("public", null);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Catalog getCatalog() {
|
||||
return DefaultCatalog.DEFAULT_CATALOG;
|
||||
}
|
||||
|
||||
@Override
|
||||
public final List<Table<?>> getTables() {
|
||||
return Arrays.asList(
|
||||
Metricsdbchangelock.METRICSDBCHANGELOCK,
|
||||
Metricsdbchangelog.METRICSDBCHANGELOG
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.public_;
|
||||
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.Metricsdbchangelock;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.Metricsdbchangelog;
|
||||
|
||||
|
||||
/**
|
||||
* Convenience access to all tables in public.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Tables {
|
||||
|
||||
/**
|
||||
* The table <code>public.metricsdbchangelock</code>.
|
||||
*/
|
||||
public static final Metricsdbchangelock METRICSDBCHANGELOCK = Metricsdbchangelock.METRICSDBCHANGELOCK;
|
||||
|
||||
/**
|
||||
* The table <code>public.metricsdbchangelog</code>.
|
||||
*/
|
||||
public static final Metricsdbchangelog METRICSDBCHANGELOG = Metricsdbchangelog.METRICSDBCHANGELOG;
|
||||
}
|
||||
|
|
@ -0,0 +1,234 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables;
|
||||
|
||||
|
||||
import java.sql.Timestamp;
|
||||
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.UniqueKey;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.Keys;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.Public;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.records.MetricsdbchangelockRecord;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Metricsdbchangelock extends TableImpl<MetricsdbchangelockRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.metricsdbchangelock</code>
|
||||
*/
|
||||
public static final Metricsdbchangelock METRICSDBCHANGELOCK = new Metricsdbchangelock();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<MetricsdbchangelockRecord> getRecordType() {
|
||||
return MetricsdbchangelockRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelock.id</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelockRecord, Integer> ID = createField(DSL.name("id"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelock.locked</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelockRecord, Boolean> LOCKED = createField(DSL.name("locked"), SQLDataType.BOOLEAN.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelock.lockgranted</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelockRecord, Timestamp> LOCKGRANTED = createField(DSL.name("lockgranted"), SQLDataType.TIMESTAMP(0), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelock.lockedby</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelockRecord, String> LOCKEDBY = createField(DSL.name("lockedby"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
private Metricsdbchangelock(Name alias, Table<MetricsdbchangelockRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private Metricsdbchangelock(Name alias, Table<MetricsdbchangelockRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.metricsdbchangelock</code> table reference
|
||||
*/
|
||||
public Metricsdbchangelock(String alias) {
|
||||
this(DSL.name(alias), METRICSDBCHANGELOCK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.metricsdbchangelock</code> table reference
|
||||
*/
|
||||
public Metricsdbchangelock(Name alias) {
|
||||
this(alias, METRICSDBCHANGELOCK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.metricsdbchangelock</code> table reference
|
||||
*/
|
||||
public Metricsdbchangelock() {
|
||||
this(DSL.name("metricsdbchangelock"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UniqueKey<MetricsdbchangelockRecord> getPrimaryKey() {
|
||||
return Keys.METRICSDBCHANGELOCK_PKEY;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Metricsdbchangelock as(String alias) {
|
||||
return new Metricsdbchangelock(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Metricsdbchangelock as(Name alias) {
|
||||
return new Metricsdbchangelock(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Metricsdbchangelock as(Table<?> alias) {
|
||||
return new Metricsdbchangelock(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock rename(String name) {
|
||||
return new Metricsdbchangelock(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock rename(Name name) {
|
||||
return new Metricsdbchangelock(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock rename(Table<?> name) {
|
||||
return new Metricsdbchangelock(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock where(Condition condition) {
|
||||
return new Metricsdbchangelock(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelock where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelock where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelock where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelock where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelock whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,277 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables;
|
||||
|
||||
|
||||
import java.sql.Timestamp;
|
||||
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 ru.micord.webbpm.ervu.business_metrics.db_beans.public_.Public;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.records.MetricsdbchangelogRecord;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Metricsdbchangelog extends TableImpl<MetricsdbchangelogRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of <code>public.metricsdbchangelog</code>
|
||||
*/
|
||||
public static final Metricsdbchangelog METRICSDBCHANGELOG = new Metricsdbchangelog();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<MetricsdbchangelogRecord> getRecordType() {
|
||||
return MetricsdbchangelogRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.id</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.author</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> AUTHOR = createField(DSL.name("author"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.filename</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> FILENAME = createField(DSL.name("filename"), SQLDataType.VARCHAR(255).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.dateexecuted</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, Timestamp> DATEEXECUTED = createField(DSL.name("dateexecuted"), SQLDataType.TIMESTAMP(0).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.orderexecuted</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, Integer> ORDEREXECUTED = createField(DSL.name("orderexecuted"), SQLDataType.INTEGER.nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.exectype</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> EXECTYPE = createField(DSL.name("exectype"), SQLDataType.VARCHAR(10).nullable(false), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.md5sum</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> MD5SUM = createField(DSL.name("md5sum"), SQLDataType.VARCHAR(35), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.description</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.comments</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> COMMENTS = createField(DSL.name("comments"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.tag</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> TAG = createField(DSL.name("tag"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.liquibase</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> LIQUIBASE = createField(DSL.name("liquibase"), SQLDataType.VARCHAR(20), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.contexts</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> CONTEXTS = createField(DSL.name("contexts"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.labels</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> LABELS = createField(DSL.name("labels"), SQLDataType.VARCHAR(255), this, "");
|
||||
|
||||
/**
|
||||
* The column <code>public.metricsdbchangelog.deployment_id</code>.
|
||||
*/
|
||||
public final TableField<MetricsdbchangelogRecord, String> DEPLOYMENT_ID = createField(DSL.name("deployment_id"), SQLDataType.VARCHAR(10), this, "");
|
||||
|
||||
private Metricsdbchangelog(Name alias, Table<MetricsdbchangelogRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
private Metricsdbchangelog(Name alias, Table<MetricsdbchangelogRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.metricsdbchangelog</code> table reference
|
||||
*/
|
||||
public Metricsdbchangelog(String alias) {
|
||||
this(DSL.name(alias), METRICSDBCHANGELOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased <code>public.metricsdbchangelog</code> table reference
|
||||
*/
|
||||
public Metricsdbchangelog(Name alias) {
|
||||
this(alias, METRICSDBCHANGELOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>public.metricsdbchangelog</code> table reference
|
||||
*/
|
||||
public Metricsdbchangelog() {
|
||||
this(DSL.name("metricsdbchangelog"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : Public.PUBLIC;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Metricsdbchangelog as(String alias) {
|
||||
return new Metricsdbchangelog(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Metricsdbchangelog as(Name alias) {
|
||||
return new Metricsdbchangelog(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Metricsdbchangelog as(Table<?> alias) {
|
||||
return new Metricsdbchangelog(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog rename(String name) {
|
||||
return new Metricsdbchangelog(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog rename(Name name) {
|
||||
return new Metricsdbchangelog(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog rename(Table<?> name) {
|
||||
return new Metricsdbchangelog(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog where(Condition condition) {
|
||||
return new Metricsdbchangelog(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelog where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelog where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelog where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public Metricsdbchangelog where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public Metricsdbchangelog whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.records;
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.records;
|
||||
|
||||
|
||||
import java.sql.Timestamp;
|
||||
|
|
@ -9,74 +9,68 @@ import java.sql.Timestamp;
|
|||
import org.jooq.Record1;
|
||||
import org.jooq.impl.UpdatableRecordImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.Databasechangeloglock;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.Metricsdbchangelock;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class DatabasechangeloglockRecord extends UpdatableRecordImpl<DatabasechangeloglockRecord> {
|
||||
public class MetricsdbchangelockRecord extends UpdatableRecordImpl<MetricsdbchangelockRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangeloglock.id</code>.
|
||||
* Setter for <code>public.metricsdbchangelock.id</code>.
|
||||
*/
|
||||
public void setId(Integer value) {
|
||||
set(0, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangeloglock.id</code>.
|
||||
* Getter for <code>public.metricsdbchangelock.id</code>.
|
||||
*/
|
||||
public Integer getId() {
|
||||
return (Integer) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangeloglock.locked</code>.
|
||||
* Setter for <code>public.metricsdbchangelock.locked</code>.
|
||||
*/
|
||||
public void setLocked(Boolean value) {
|
||||
set(1, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangeloglock.locked</code>.
|
||||
* Getter for <code>public.metricsdbchangelock.locked</code>.
|
||||
*/
|
||||
public Boolean getLocked() {
|
||||
return (Boolean) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangeloglock.lockgranted</code>.
|
||||
* Setter for <code>public.metricsdbchangelock.lockgranted</code>.
|
||||
*/
|
||||
public void setLockgranted(Timestamp value) {
|
||||
set(2, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangeloglock.lockgranted</code>.
|
||||
* Getter for <code>public.metricsdbchangelock.lockgranted</code>.
|
||||
*/
|
||||
public Timestamp getLockgranted() {
|
||||
return (Timestamp) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangeloglock.lockedby</code>.
|
||||
* Setter for <code>public.metricsdbchangelock.lockedby</code>.
|
||||
*/
|
||||
public void setLockedby(String value) {
|
||||
set(3, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangeloglock.lockedby</code>.
|
||||
* Getter for <code>public.metricsdbchangelock.lockedby</code>.
|
||||
*/
|
||||
public String getLockedby() {
|
||||
return (String) get(3);
|
||||
|
|
@ -96,17 +90,17 @@ public class DatabasechangeloglockRecord extends UpdatableRecordImpl<Databasecha
|
|||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached DatabasechangeloglockRecord
|
||||
* Create a detached MetricsdbchangelockRecord
|
||||
*/
|
||||
public DatabasechangeloglockRecord() {
|
||||
super(Databasechangeloglock.DATABASECHANGELOGLOCK);
|
||||
public MetricsdbchangelockRecord() {
|
||||
super(Metricsdbchangelock.METRICSDBCHANGELOCK);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised DatabasechangeloglockRecord
|
||||
* Create a detached, initialised MetricsdbchangelockRecord
|
||||
*/
|
||||
public DatabasechangeloglockRecord(Integer id, Boolean locked, Timestamp lockgranted, String lockedby) {
|
||||
super(Databasechangeloglock.DATABASECHANGELOGLOCK);
|
||||
public MetricsdbchangelockRecord(Integer id, Boolean locked, Timestamp lockgranted, String lockedby) {
|
||||
super(Metricsdbchangelock.METRICSDBCHANGELOCK);
|
||||
|
||||
setId(id);
|
||||
setLocked(locked);
|
||||
|
|
@ -1,225 +1,215 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.records;
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.records;
|
||||
|
||||
|
||||
import java.sql.Timestamp;
|
||||
|
||||
import org.jooq.impl.TableRecordImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.tables.Databasechangelog;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.public_.tables.Metricsdbchangelog;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class DatabasechangelogRecord extends TableRecordImpl<DatabasechangelogRecord> {
|
||||
public class MetricsdbchangelogRecord extends TableRecordImpl<MetricsdbchangelogRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.id</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.id</code>.
|
||||
*/
|
||||
public void setId(String value) {
|
||||
set(0, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.id</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.id</code>.
|
||||
*/
|
||||
public String getId() {
|
||||
return (String) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.author</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.author</code>.
|
||||
*/
|
||||
public void setAuthor(String value) {
|
||||
set(1, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.author</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.author</code>.
|
||||
*/
|
||||
public String getAuthor() {
|
||||
return (String) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.filename</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.filename</code>.
|
||||
*/
|
||||
public void setFilename(String value) {
|
||||
set(2, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.filename</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.filename</code>.
|
||||
*/
|
||||
public String getFilename() {
|
||||
return (String) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangelog.dateexecuted</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.dateexecuted</code>.
|
||||
*/
|
||||
public void setDateexecuted(Timestamp value) {
|
||||
set(3, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangelog.dateexecuted</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.dateexecuted</code>.
|
||||
*/
|
||||
public Timestamp getDateexecuted() {
|
||||
return (Timestamp) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangelog.orderexecuted</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.orderexecuted</code>.
|
||||
*/
|
||||
public void setOrderexecuted(Integer value) {
|
||||
set(4, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangelog.orderexecuted</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.orderexecuted</code>.
|
||||
*/
|
||||
public Integer getOrderexecuted() {
|
||||
return (Integer) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.exectype</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.exectype</code>.
|
||||
*/
|
||||
public void setExectype(String value) {
|
||||
set(5, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.exectype</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.exectype</code>.
|
||||
*/
|
||||
public String getExectype() {
|
||||
return (String) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.md5sum</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.md5sum</code>.
|
||||
*/
|
||||
public void setMd5sum(String value) {
|
||||
set(6, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.md5sum</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.md5sum</code>.
|
||||
*/
|
||||
public String getMd5sum() {
|
||||
return (String) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangelog.description</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.description</code>.
|
||||
*/
|
||||
public void setDescription(String value) {
|
||||
set(7, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangelog.description</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.description</code>.
|
||||
*/
|
||||
public String getDescription() {
|
||||
return (String) get(7);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.comments</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.comments</code>.
|
||||
*/
|
||||
public void setComments(String value) {
|
||||
set(8, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.comments</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.comments</code>.
|
||||
*/
|
||||
public String getComments() {
|
||||
return (String) get(8);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.tag</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.tag</code>.
|
||||
*/
|
||||
public void setTag(String value) {
|
||||
set(9, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.tag</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.tag</code>.
|
||||
*/
|
||||
public String getTag() {
|
||||
return (String) get(9);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangelog.liquibase</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.liquibase</code>.
|
||||
*/
|
||||
public void setLiquibase(String value) {
|
||||
set(10, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangelog.liquibase</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.liquibase</code>.
|
||||
*/
|
||||
public String getLiquibase() {
|
||||
return (String) get(10);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.contexts</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.contexts</code>.
|
||||
*/
|
||||
public void setContexts(String value) {
|
||||
set(11, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.contexts</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.contexts</code>.
|
||||
*/
|
||||
public String getContexts() {
|
||||
return (String) get(11);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>ervu_business_metrics.databasechangelog.labels</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.labels</code>.
|
||||
*/
|
||||
public void setLabels(String value) {
|
||||
set(12, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>ervu_business_metrics.databasechangelog.labels</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.labels</code>.
|
||||
*/
|
||||
public String getLabels() {
|
||||
return (String) get(12);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>ervu_business_metrics.databasechangelog.deployment_id</code>.
|
||||
* Setter for <code>public.metricsdbchangelog.deployment_id</code>.
|
||||
*/
|
||||
public void setDeploymentId(String value) {
|
||||
set(13, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>ervu_business_metrics.databasechangelog.deployment_id</code>.
|
||||
* Getter for <code>public.metricsdbchangelog.deployment_id</code>.
|
||||
*/
|
||||
public String getDeploymentId() {
|
||||
return (String) get(13);
|
||||
|
|
@ -230,17 +220,17 @@ public class DatabasechangelogRecord extends TableRecordImpl<DatabasechangelogRe
|
|||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached DatabasechangelogRecord
|
||||
* Create a detached MetricsdbchangelogRecord
|
||||
*/
|
||||
public DatabasechangelogRecord() {
|
||||
super(Databasechangelog.DATABASECHANGELOG);
|
||||
public MetricsdbchangelogRecord() {
|
||||
super(Metricsdbchangelog.METRICSDBCHANGELOG);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised DatabasechangelogRecord
|
||||
* Create a detached, initialised MetricsdbchangelogRecord
|
||||
*/
|
||||
public DatabasechangelogRecord(String id, String author, String filename, Timestamp dateexecuted, Integer orderexecuted, String exectype, String md5sum, String description, String comments, String tag, String liquibase, String contexts, String labels, String deploymentId) {
|
||||
super(Databasechangelog.DATABASECHANGELOG);
|
||||
public MetricsdbchangelogRecord(String id, String author, String filename, Timestamp dateexecuted, Integer orderexecuted, String exectype, String md5sum, String description, String comments, String tag, String liquibase, String contexts, String labels, String deploymentId) {
|
||||
super(Metricsdbchangelog.METRICSDBCHANGELOG);
|
||||
|
||||
setId(id);
|
||||
setAuthor(author);
|
||||
|
|
@ -1,18 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<datasource>
|
||||
<dbBeanPackage>ru.micord.webbpm.ervu.business_metrics.db_beans</dbBeanPackage>
|
||||
<dbName>ervu_bm_empty</dbName>
|
||||
<dbName>ervu_business_metrics</dbName>
|
||||
<driverClassName>org.postgresql.Driver</driverClassName>
|
||||
<host>10.10.31.119</host>
|
||||
<manually>false</manually>
|
||||
<password>ervu_business_metrics</password>
|
||||
<port>5432</port>
|
||||
<schemas>ervu_business_metrics</schemas>
|
||||
<schemas>init_registration_info</schemas>
|
||||
<schemas>metrics</schemas>
|
||||
<schemas>public</schemas>
|
||||
<sqlDialect>POSTGRES</sqlDialect>
|
||||
<url>jdbc:postgresql://10.10.31.119:5432/ervu_bm_empty</url>
|
||||
<url>jdbc:postgresql://10.10.31.119:5432/ervu_business_metrics</url>
|
||||
<urlPrefix>jdbc:postgresql:</urlPrefix>
|
||||
<user>ervu_business_metrics</user>
|
||||
</datasource>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue