This commit is contained in:
Булат Хайруллин 2024-12-15 20:03:17 +03:00
parent 324311bf0e
commit beb04850e6
76 changed files with 2975 additions and 8158 deletions

View file

@ -17,7 +17,6 @@ import ru.micord.ervu_dashboard.db_beans.main_dashboard.MainDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
import ru.micord.ervu_dashboard.db_beans.ratings.Ratings;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.RecruitmentCampaign;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.space.Space;
import ru.micord.ervu_dashboard.db_beans.total_registered.TotalRegistered;
@ -65,11 +64,6 @@ public class DefaultCatalog extends CatalogImpl {
*/
public final RecruitmentCampaign RECRUITMENT_CAMPAIGN = RecruitmentCampaign.RECRUITMENT_CAMPAIGN;
/**
* The schema <code>security</code>.
*/
public final Security SECURITY = Security.SECURITY;
/**
* The schema <code>space</code>.
*/
@ -96,7 +90,6 @@ public class DefaultCatalog extends CatalogImpl {
Public.PUBLIC,
Ratings.RATINGS,
RecruitmentCampaign.RECRUITMENT_CAMPAIGN,
Security.SECURITY,
Space.SPACE,
TotalRegistered.TOTAL_REGISTERED
);

View file

@ -12,6 +12,7 @@ import org.jooq.Table;
import org.jooq.impl.SchemaImpl;
import ru.micord.ervu_dashboard.db_beans.DefaultCatalog;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.AppealsList;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.MainProfile;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.ReasonsAppeal;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.ReviewRating;
@ -31,6 +32,11 @@ public class Appeals extends SchemaImpl {
*/
public static final Appeals APPEALS = new Appeals();
/**
* The table <code>appeals.appeals_list</code>.
*/
public final AppealsList APPEALS_LIST = AppealsList.APPEALS_LIST;
/**
* Основной профиль уровень РФ
*/
@ -67,6 +73,7 @@ public class Appeals extends SchemaImpl {
@Override
public final List<Table<?>> getTables() {
return Arrays.asList(
AppealsList.APPEALS_LIST,
MainProfile.MAIN_PROFILE,
ReasonsAppeal.REASONS_APPEAL,
ReviewRating.REVIEW_RATING,

View file

@ -4,6 +4,7 @@
package ru.micord.ervu_dashboard.db_beans.appeals;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.AppealsList;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.MainProfile;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.ReasonsAppeal;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.ReviewRating;
@ -16,6 +17,11 @@ import ru.micord.ervu_dashboard.db_beans.appeals.tables.TopicAppeal;
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables {
/**
* The table <code>appeals.appeals_list</code>.
*/
public static final AppealsList APPEALS_LIST = AppealsList.APPEALS_LIST;
/**
* Основной профиль уровень РФ
*/

View file

@ -0,0 +1,366 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.appeals.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.ervu_dashboard.db_beans.appeals.Appeals;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.records.AppealsListRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class AppealsList extends TableImpl<AppealsListRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>appeals.appeals_list</code>
*/
public static final AppealsList APPEALS_LIST = new AppealsList();
/**
* The class holding records for this type
*/
@Override
public Class<AppealsListRecord> getRecordType() {
return AppealsListRecord.class;
}
/**
* The column <code>appeals.appeals_list.number</code>. Номер
*/
public final TableField<AppealsListRecord, Integer> NUMBER = createField(DSL.name("number"), SQLDataType.INTEGER, this, "Номер");
/**
* The column <code>appeals.appeals_list.epgu_num</code>. Номер ЕПГУ
*/
public final TableField<AppealsListRecord, String> EPGU_NUM = createField(DSL.name("epgu_num"), SQLDataType.CLOB, this, "Номер ЕПГУ");
/**
* The column <code>appeals.appeals_list.source</code>. Источник
*/
public final TableField<AppealsListRecord, String> SOURCE = createField(DSL.name("source"), SQLDataType.CLOB, this, "Источник");
/**
* The column <code>appeals.appeals_list.region</code>. Верхнеуровневый ЛКО
*/
public final TableField<AppealsListRecord, String> REGION = createField(DSL.name("region"), SQLDataType.CLOB, this, "Верхнеуровневый ЛКО");
/**
* The column <code>appeals.appeals_list.category</code>. Категория
*/
public final TableField<AppealsListRecord, String> CATEGORY = createField(DSL.name("category"), SQLDataType.CLOB, this, "Категория");
/**
* The column <code>appeals.appeals_list.subcategory</code>. Подкатегория
*/
public final TableField<AppealsListRecord, String> SUBCATEGORY = createField(DSL.name("subcategory"), SQLDataType.CLOB, this, "Подкатегория");
/**
* The column <code>appeals.appeals_list.fact</code>. Факт
*/
public final TableField<AppealsListRecord, String> FACT = createField(DSL.name("fact"), SQLDataType.CLOB, this, "Факт");
/**
* The column <code>appeals.appeals_list.incoming_org</code>. Организация, в
* которую поступило сообщение
*/
public final TableField<AppealsListRecord, String> INCOMING_ORG = createField(DSL.name("incoming_org"), SQLDataType.CLOB, this, "Организация, в которую поступило сообщение");
/**
* The column <code>appeals.appeals_list.current_org</code>. Организация, в
* которой находится сообщение
*/
public final TableField<AppealsListRecord, String> CURRENT_ORG = createField(DSL.name("current_org"), SQLDataType.CLOB, this, "Организация, в которой находится сообщение");
/**
* The column <code>appeals.appeals_list.incoming_date</code>. Дата
* поступления
*/
public final TableField<AppealsListRecord, String> INCOMING_DATE = createField(DSL.name("incoming_date"), SQLDataType.CLOB, this, "Дата поступления");
/**
* The column <code>appeals.appeals_list.plan_end_date</code>. Дата
* планируемого завершения работ
*/
public final TableField<AppealsListRecord, String> PLAN_END_DATE = createField(DSL.name("plan_end_date"), SQLDataType.CLOB, this, "Дата планируемого завершения работ");
/**
* The column <code>appeals.appeals_list.fact_end_date</code>. Дата
* фактического завершения работ
*/
public final TableField<AppealsListRecord, String> FACT_END_DATE = createField(DSL.name("fact_end_date"), SQLDataType.CLOB, this, "Дата фактического завершения работ");
/**
* The column <code>appeals.appeals_list.stage</code>. Стадия
*/
public final TableField<AppealsListRecord, String> STAGE = createField(DSL.name("stage"), SQLDataType.CLOB, this, "Стадия");
/**
* The column <code>appeals.appeals_list.status</code>. Статус
*/
public final TableField<AppealsListRecord, String> STATUS = createField(DSL.name("status"), SQLDataType.CLOB, this, "Статус");
/**
* The column <code>appeals.appeals_list.overdue</code>. Просрочено
*/
public final TableField<AppealsListRecord, String> OVERDUE = createField(DSL.name("overdue"), SQLDataType.CLOB, this, "Просрочено");
/**
* The column <code>appeals.appeals_list.fast_track</code>. Фаст-трек
*/
public final TableField<AppealsListRecord, String> FAST_TRACK = createField(DSL.name("fast_track"), SQLDataType.CLOB, this, "Фаст-трек");
/**
* The column <code>appeals.appeals_list.fz</code>. ФЗ
*/
public final TableField<AppealsListRecord, String> FZ = createField(DSL.name("fz"), SQLDataType.CLOB, this, "ФЗ");
/**
* The column <code>appeals.appeals_list.solution_type</code>. Тип решения
*/
public final TableField<AppealsListRecord, String> SOLUTION_TYPE = createField(DSL.name("solution_type"), SQLDataType.CLOB, this, "Тип решения");
/**
* The column
* <code>appeals.appeals_list.sent_by_email_to_not_connected_foiv</code>.
* Направлено по email в ФОИВ, не подключенный к ПОС
*/
public final TableField<AppealsListRecord, String> SENT_BY_EMAIL_TO_NOT_CONNECTED_FOIV = createField(DSL.name("sent_by_email_to_not_connected_foiv"), SQLDataType.CLOB, this, "Направлено по email в ФОИВ, не подключенный к ПОС");
/**
* The column <code>appeals.appeals_list.response_evalution</code>. Оценка
* ответа заявителем
*/
public final TableField<AppealsListRecord, String> RESPONSE_EVALUTION = createField(DSL.name("response_evalution"), SQLDataType.CLOB, this, "Оценка ответа заявителем");
/**
* The column <code>appeals.appeals_list.reconsideration</code>. Повторное
* рассмотрение
*/
public final TableField<AppealsListRecord, String> RECONSIDERATION = createField(DSL.name("reconsideration"), SQLDataType.CLOB, this, "Повторное рассмотрение");
/**
* The column <code>appeals.appeals_list.coordinator_org</code>. Организация
* координатора
*/
public final TableField<AppealsListRecord, String> COORDINATOR_ORG = createField(DSL.name("coordinator_org"), SQLDataType.CLOB, this, "Организация координатора");
/**
* The column <code>appeals.appeals_list.coordinator_fio</code>. ФИО
* координатора
*/
public final TableField<AppealsListRecord, String> COORDINATOR_FIO = createField(DSL.name("coordinator_fio"), SQLDataType.CLOB, this, "ФИО координатора");
/**
* The column <code>appeals.appeals_list.contractor_org</code>. Организация
* исполнителя
*/
public final TableField<AppealsListRecord, String> CONTRACTOR_ORG = createField(DSL.name("contractor_org"), SQLDataType.CLOB, this, "Организация исполнителя");
/**
* The column <code>appeals.appeals_list.contractor_fio</code>. ФИО
* исполнителя
*/
public final TableField<AppealsListRecord, String> CONTRACTOR_FIO = createField(DSL.name("contractor_fio"), SQLDataType.CLOB, this, "ФИО исполнителя");
/**
* The column <code>appeals.appeals_list.head_org</code>. Организация
* руководителя
*/
public final TableField<AppealsListRecord, String> HEAD_ORG = createField(DSL.name("head_org"), SQLDataType.CLOB, this, "Организация руководителя");
/**
* The column <code>appeals.appeals_list.head_fio</code>. ФИО руководителя
*/
public final TableField<AppealsListRecord, String> HEAD_FIO = createField(DSL.name("head_fio"), SQLDataType.CLOB, this, "ФИО руководителя");
/**
* The column <code>appeals.appeals_list.issue_date</code>. Дата вынесения
*/
public final TableField<AppealsListRecord, String> ISSUE_DATE = createField(DSL.name("issue_date"), SQLDataType.CLOB, this, "Дата вынесения");
/**
* The column <code>appeals.appeals_list.upload_date</code>. Дата загрузки
*/
public final TableField<AppealsListRecord, Timestamp> UPLOAD_DATE = createField(DSL.name("upload_date"), SQLDataType.TIMESTAMP(0), this, "Дата загрузки");
private AppealsList(Name alias, Table<AppealsListRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private AppealsList(Name alias, Table<AppealsListRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>appeals.appeals_list</code> table reference
*/
public AppealsList(String alias) {
this(DSL.name(alias), APPEALS_LIST);
}
/**
* Create an aliased <code>appeals.appeals_list</code> table reference
*/
public AppealsList(Name alias) {
this(alias, APPEALS_LIST);
}
/**
* Create a <code>appeals.appeals_list</code> table reference
*/
public AppealsList() {
this(DSL.name("appeals_list"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : Appeals.APPEALS;
}
@Override
public AppealsList as(String alias) {
return new AppealsList(DSL.name(alias), this);
}
@Override
public AppealsList as(Name alias) {
return new AppealsList(alias, this);
}
@Override
public AppealsList as(Table<?> alias) {
return new AppealsList(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public AppealsList rename(String name) {
return new AppealsList(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public AppealsList rename(Name name) {
return new AppealsList(name, null);
}
/**
* Rename this table
*/
@Override
public AppealsList rename(Table<?> name) {
return new AppealsList(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public AppealsList where(Condition condition) {
return new AppealsList(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public AppealsList where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public AppealsList where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public AppealsList where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AppealsList where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AppealsList where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AppealsList where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AppealsList where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public AppealsList whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public AppealsList whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -0,0 +1,504 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.appeals.tables.records;
import java.sql.Timestamp;
import org.jooq.impl.TableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.appeals.tables.AppealsList;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class AppealsListRecord extends TableRecordImpl<AppealsListRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>appeals.appeals_list.number</code>. Номер
*/
public void setNumber(Integer value) {
set(0, value);
}
/**
* Getter for <code>appeals.appeals_list.number</code>. Номер
*/
public Integer getNumber() {
return (Integer) get(0);
}
/**
* Setter for <code>appeals.appeals_list.epgu_num</code>. Номер ЕПГУ
*/
public void setEpguNum(String value) {
set(1, value);
}
/**
* Getter for <code>appeals.appeals_list.epgu_num</code>. Номер ЕПГУ
*/
public String getEpguNum() {
return (String) get(1);
}
/**
* Setter for <code>appeals.appeals_list.source</code>. Источник
*/
public void setSource(String value) {
set(2, value);
}
/**
* Getter for <code>appeals.appeals_list.source</code>. Источник
*/
public String getSource() {
return (String) get(2);
}
/**
* Setter for <code>appeals.appeals_list.region</code>. Верхнеуровневый ЛКО
*/
public void setRegion(String value) {
set(3, value);
}
/**
* Getter for <code>appeals.appeals_list.region</code>. Верхнеуровневый ЛКО
*/
public String getRegion() {
return (String) get(3);
}
/**
* Setter for <code>appeals.appeals_list.category</code>. Категория
*/
public void setCategory(String value) {
set(4, value);
}
/**
* Getter for <code>appeals.appeals_list.category</code>. Категория
*/
public String getCategory() {
return (String) get(4);
}
/**
* Setter for <code>appeals.appeals_list.subcategory</code>. Подкатегория
*/
public void setSubcategory(String value) {
set(5, value);
}
/**
* Getter for <code>appeals.appeals_list.subcategory</code>. Подкатегория
*/
public String getSubcategory() {
return (String) get(5);
}
/**
* Setter for <code>appeals.appeals_list.fact</code>. Факт
*/
public void setFact(String value) {
set(6, value);
}
/**
* Getter for <code>appeals.appeals_list.fact</code>. Факт
*/
public String getFact() {
return (String) get(6);
}
/**
* Setter for <code>appeals.appeals_list.incoming_org</code>. Организация, в
* которую поступило сообщение
*/
public void setIncomingOrg(String value) {
set(7, value);
}
/**
* Getter for <code>appeals.appeals_list.incoming_org</code>. Организация, в
* которую поступило сообщение
*/
public String getIncomingOrg() {
return (String) get(7);
}
/**
* Setter for <code>appeals.appeals_list.current_org</code>. Организация, в
* которой находится сообщение
*/
public void setCurrentOrg(String value) {
set(8, value);
}
/**
* Getter for <code>appeals.appeals_list.current_org</code>. Организация, в
* которой находится сообщение
*/
public String getCurrentOrg() {
return (String) get(8);
}
/**
* Setter for <code>appeals.appeals_list.incoming_date</code>. Дата
* поступления
*/
public void setIncomingDate(String value) {
set(9, value);
}
/**
* Getter for <code>appeals.appeals_list.incoming_date</code>. Дата
* поступления
*/
public String getIncomingDate() {
return (String) get(9);
}
/**
* Setter for <code>appeals.appeals_list.plan_end_date</code>. Дата
* планируемого завершения работ
*/
public void setPlanEndDate(String value) {
set(10, value);
}
/**
* Getter for <code>appeals.appeals_list.plan_end_date</code>. Дата
* планируемого завершения работ
*/
public String getPlanEndDate() {
return (String) get(10);
}
/**
* Setter for <code>appeals.appeals_list.fact_end_date</code>. Дата
* фактического завершения работ
*/
public void setFactEndDate(String value) {
set(11, value);
}
/**
* Getter for <code>appeals.appeals_list.fact_end_date</code>. Дата
* фактического завершения работ
*/
public String getFactEndDate() {
return (String) get(11);
}
/**
* Setter for <code>appeals.appeals_list.stage</code>. Стадия
*/
public void setStage(String value) {
set(12, value);
}
/**
* Getter for <code>appeals.appeals_list.stage</code>. Стадия
*/
public String getStage() {
return (String) get(12);
}
/**
* Setter for <code>appeals.appeals_list.status</code>. Статус
*/
public void setStatus(String value) {
set(13, value);
}
/**
* Getter for <code>appeals.appeals_list.status</code>. Статус
*/
public String getStatus() {
return (String) get(13);
}
/**
* Setter for <code>appeals.appeals_list.overdue</code>. Просрочено
*/
public void setOverdue(String value) {
set(14, value);
}
/**
* Getter for <code>appeals.appeals_list.overdue</code>. Просрочено
*/
public String getOverdue() {
return (String) get(14);
}
/**
* Setter for <code>appeals.appeals_list.fast_track</code>. Фаст-трек
*/
public void setFastTrack(String value) {
set(15, value);
}
/**
* Getter for <code>appeals.appeals_list.fast_track</code>. Фаст-трек
*/
public String getFastTrack() {
return (String) get(15);
}
/**
* Setter for <code>appeals.appeals_list.fz</code>. ФЗ
*/
public void setFz(String value) {
set(16, value);
}
/**
* Getter for <code>appeals.appeals_list.fz</code>. ФЗ
*/
public String getFz() {
return (String) get(16);
}
/**
* Setter for <code>appeals.appeals_list.solution_type</code>. Тип решения
*/
public void setSolutionType(String value) {
set(17, value);
}
/**
* Getter for <code>appeals.appeals_list.solution_type</code>. Тип решения
*/
public String getSolutionType() {
return (String) get(17);
}
/**
* Setter for
* <code>appeals.appeals_list.sent_by_email_to_not_connected_foiv</code>.
* Направлено по email в ФОИВ, не подключенный к ПОС
*/
public void setSentByEmailToNotConnectedFoiv(String value) {
set(18, value);
}
/**
* Getter for
* <code>appeals.appeals_list.sent_by_email_to_not_connected_foiv</code>.
* Направлено по email в ФОИВ, не подключенный к ПОС
*/
public String getSentByEmailToNotConnectedFoiv() {
return (String) get(18);
}
/**
* Setter for <code>appeals.appeals_list.response_evalution</code>. Оценка
* ответа заявителем
*/
public void setResponseEvalution(String value) {
set(19, value);
}
/**
* Getter for <code>appeals.appeals_list.response_evalution</code>. Оценка
* ответа заявителем
*/
public String getResponseEvalution() {
return (String) get(19);
}
/**
* Setter for <code>appeals.appeals_list.reconsideration</code>. Повторное
* рассмотрение
*/
public void setReconsideration(String value) {
set(20, value);
}
/**
* Getter for <code>appeals.appeals_list.reconsideration</code>. Повторное
* рассмотрение
*/
public String getReconsideration() {
return (String) get(20);
}
/**
* Setter for <code>appeals.appeals_list.coordinator_org</code>. Организация
* координатора
*/
public void setCoordinatorOrg(String value) {
set(21, value);
}
/**
* Getter for <code>appeals.appeals_list.coordinator_org</code>. Организация
* координатора
*/
public String getCoordinatorOrg() {
return (String) get(21);
}
/**
* Setter for <code>appeals.appeals_list.coordinator_fio</code>. ФИО
* координатора
*/
public void setCoordinatorFio(String value) {
set(22, value);
}
/**
* Getter for <code>appeals.appeals_list.coordinator_fio</code>. ФИО
* координатора
*/
public String getCoordinatorFio() {
return (String) get(22);
}
/**
* Setter for <code>appeals.appeals_list.contractor_org</code>. Организация
* исполнителя
*/
public void setContractorOrg(String value) {
set(23, value);
}
/**
* Getter for <code>appeals.appeals_list.contractor_org</code>. Организация
* исполнителя
*/
public String getContractorOrg() {
return (String) get(23);
}
/**
* Setter for <code>appeals.appeals_list.contractor_fio</code>. ФИО
* исполнителя
*/
public void setContractorFio(String value) {
set(24, value);
}
/**
* Getter for <code>appeals.appeals_list.contractor_fio</code>. ФИО
* исполнителя
*/
public String getContractorFio() {
return (String) get(24);
}
/**
* Setter for <code>appeals.appeals_list.head_org</code>. Организация
* руководителя
*/
public void setHeadOrg(String value) {
set(25, value);
}
/**
* Getter for <code>appeals.appeals_list.head_org</code>. Организация
* руководителя
*/
public String getHeadOrg() {
return (String) get(25);
}
/**
* Setter for <code>appeals.appeals_list.head_fio</code>. ФИО руководителя
*/
public void setHeadFio(String value) {
set(26, value);
}
/**
* Getter for <code>appeals.appeals_list.head_fio</code>. ФИО руководителя
*/
public String getHeadFio() {
return (String) get(26);
}
/**
* Setter for <code>appeals.appeals_list.issue_date</code>. Дата вынесения
*/
public void setIssueDate(String value) {
set(27, value);
}
/**
* Getter for <code>appeals.appeals_list.issue_date</code>. Дата вынесения
*/
public String getIssueDate() {
return (String) get(27);
}
/**
* Setter for <code>appeals.appeals_list.upload_date</code>. Дата загрузки
*/
public void setUploadDate(Timestamp value) {
set(28, value);
}
/**
* Getter for <code>appeals.appeals_list.upload_date</code>. Дата загрузки
*/
public Timestamp getUploadDate() {
return (Timestamp) get(28);
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached AppealsListRecord
*/
public AppealsListRecord() {
super(AppealsList.APPEALS_LIST);
}
/**
* Create a detached, initialised AppealsListRecord
*/
public AppealsListRecord(Integer number, String epguNum, String source, String region, String category, String subcategory, String fact, String incomingOrg, String currentOrg, String incomingDate, String planEndDate, String factEndDate, String stage, String status, String overdue, String fastTrack, String fz, String solutionType, String sentByEmailToNotConnectedFoiv, String responseEvalution, String reconsideration, String coordinatorOrg, String coordinatorFio, String contractorOrg, String contractorFio, String headOrg, String headFio, String issueDate, Timestamp uploadDate) {
super(AppealsList.APPEALS_LIST);
setNumber(number);
setEpguNum(epguNum);
setSource(source);
setRegion(region);
setCategory(category);
setSubcategory(subcategory);
setFact(fact);
setIncomingOrg(incomingOrg);
setCurrentOrg(currentOrg);
setIncomingDate(incomingDate);
setPlanEndDate(planEndDate);
setFactEndDate(factEndDate);
setStage(stage);
setStatus(status);
setOverdue(overdue);
setFastTrack(fastTrack);
setFz(fz);
setSolutionType(solutionType);
setSentByEmailToNotConnectedFoiv(sentByEmailToNotConnectedFoiv);
setResponseEvalution(responseEvalution);
setReconsideration(reconsideration);
setCoordinatorOrg(coordinatorOrg);
setCoordinatorFio(coordinatorFio);
setContractorOrg(contractorOrg);
setContractorFio(contractorFio);
setHeadOrg(headOrg);
setHeadFio(headFio);
setIssueDate(issueDate);
setUploadDate(uploadDate);
resetChangedOnNotNull();
}
}

View file

@ -21,19 +21,18 @@ import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.CitizenshipForeig
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Databasechangelog;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Databasechangeloglock;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Decision;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Delta;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Deputy;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Disability;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Disease;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.DriversLicence;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.MedicalAuthorities;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.OkopfRecords;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Passport;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Property;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Prosecution;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.PubRecruitment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Punishment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Recruitment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Shedlock;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Subpoena;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.TemporaryMeasures;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Work;
@ -97,6 +96,11 @@ public class ErvuDashboard extends SchemaImpl {
*/
public final Decision DECISION = Decision.DECISION;
/**
* таблица с параметром, на основе которого загружается дельта по гражданам
*/
public final Delta DELTA = Delta.DELTA;
/**
* сведения о гражданах, избранных депутатами/зарегистрированных кандидатами
* на участие в выборах
@ -123,11 +127,6 @@ public class ErvuDashboard extends SchemaImpl {
*/
public final MedicalAuthorities MEDICAL_AUTHORITIES = MedicalAuthorities.MEDICAL_AUTHORITIES;
/**
* The table <code>ervu_dashboard.okopf_records</code>.
*/
public final OkopfRecords OKOPF_RECORDS = OkopfRecords.OKOPF_RECORDS;
/**
* сведения о паспорте
*/
@ -158,11 +157,6 @@ public class ErvuDashboard extends SchemaImpl {
*/
public final Recruitment RECRUITMENT = Recruitment.RECRUITMENT;
/**
* The table <code>ervu_dashboard.shedlock</code>.
*/
public final Shedlock SHEDLOCK = Shedlock.SHEDLOCK;
/**
* сведения о направлении повестки военного комиссариата
*/
@ -203,19 +197,18 @@ public class ErvuDashboard extends SchemaImpl {
Databasechangelog.DATABASECHANGELOG,
Databasechangeloglock.DATABASECHANGELOGLOCK,
Decision.DECISION,
Delta.DELTA,
Deputy.DEPUTY,
Disability.DISABILITY,
Disease.DISEASE,
DriversLicence.DRIVERS_LICENCE,
MedicalAuthorities.MEDICAL_AUTHORITIES,
OkopfRecords.OKOPF_RECORDS,
Passport.PASSPORT,
Property.PROPERTY,
Prosecution.PROSECUTION,
PubRecruitment.PUB_RECRUITMENT,
Punishment.PUNISHMENT,
Recruitment.RECRUITMENT,
Shedlock.SHEDLOCK,
Subpoena.SUBPOENA,
TemporaryMeasures.TEMPORARY_MEASURES,
Work.WORK

View file

@ -17,19 +17,18 @@ import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Citizenship;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.CitizenshipForeign;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Databasechangeloglock;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Decision;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Delta;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Deputy;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Disability;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Disease;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.DriversLicence;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.MedicalAuthorities;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.OkopfRecords;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Passport;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Property;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Prosecution;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.PubRecruitment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Punishment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Recruitment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Shedlock;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Subpoena;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.TemporaryMeasures;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Work;
@ -41,19 +40,18 @@ import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.Citizensh
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.CitizenshipRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DatabasechangeloglockRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DecisionRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DeltaRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DeputyRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DisabilityRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DiseaseRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DriversLicenceRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.MedicalAuthoritiesRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.OkopfRecordsRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.PassportRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.PropertyRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.ProsecutionRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.PubRecruitmentRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.PunishmentRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.RecruitmentRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.ShedlockRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.SubpoenaRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.TemporaryMeasuresRecord;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.WorkRecord;
@ -78,13 +76,12 @@ public class Keys {
public static final UniqueKey<CitizenshipForeignRecord> PK_CITIZENSHIP_FOREIGN = Internal.createUniqueKey(CitizenshipForeign.CITIZENSHIP_FOREIGN, DSL.name("pk_citizenship_foreign"), new TableField[] { CitizenshipForeign.CITIZENSHIP_FOREIGN.CITIZENSHIP_FOREIGN_ID }, true);
public static final UniqueKey<DatabasechangeloglockRecord> DATABASECHANGELOGLOCK_PKEY = Internal.createUniqueKey(Databasechangeloglock.DATABASECHANGELOGLOCK, DSL.name("databasechangeloglock_pkey"), new TableField[] { Databasechangeloglock.DATABASECHANGELOGLOCK.ID }, true);
public static final UniqueKey<DecisionRecord> DECISION_PKEY = Internal.createUniqueKey(Decision.DECISION, DSL.name("decision_pkey"), new TableField[] { Decision.DECISION.DECISION_ID }, true);
public static final UniqueKey<DeltaRecord> PK_DELTA = Internal.createUniqueKey(Delta.DELTA, DSL.name("pk_delta"), new TableField[] { Delta.DELTA.DELTA_ID }, true);
public static final UniqueKey<DeputyRecord> PK_DEPUTY = Internal.createUniqueKey(Deputy.DEPUTY, DSL.name("pk_deputy"), new TableField[] { Deputy.DEPUTY.DEPUTY_ID }, true);
public static final UniqueKey<DisabilityRecord> PK_DISABILITY = Internal.createUniqueKey(Disability.DISABILITY, DSL.name("pk_disability"), new TableField[] { Disability.DISABILITY.DISABILITY_ID }, true);
public static final UniqueKey<DiseaseRecord> PK_DISEASE = Internal.createUniqueKey(Disease.DISEASE, DSL.name("pk_disease"), new TableField[] { Disease.DISEASE.DISEASE_ID }, true);
public static final UniqueKey<DriversLicenceRecord> PK_DRIVERS_LICENCE = Internal.createUniqueKey(DriversLicence.DRIVERS_LICENCE, DSL.name("pk_drivers_licence"), new TableField[] { DriversLicence.DRIVERS_LICENCE.DRIVERS_LICENCE_ID }, true);
public static final UniqueKey<MedicalAuthoritiesRecord> PK_MEDICAL_AUTHORITIES = Internal.createUniqueKey(MedicalAuthorities.MEDICAL_AUTHORITIES, DSL.name("pk_medical_authorities"), new TableField[] { MedicalAuthorities.MEDICAL_AUTHORITIES.MEDICAL_AUTHORITIES_ID }, true);
public static final UniqueKey<OkopfRecordsRecord> OKOPF_RECORDS_NAME_KEY = Internal.createUniqueKey(OkopfRecords.OKOPF_RECORDS, DSL.name("okopf_records_name_key"), new TableField[] { OkopfRecords.OKOPF_RECORDS.NAME }, true);
public static final UniqueKey<OkopfRecordsRecord> OKOPF_RECORDS_PKEY = Internal.createUniqueKey(OkopfRecords.OKOPF_RECORDS, DSL.name("okopf_records_pkey"), new TableField[] { OkopfRecords.OKOPF_RECORDS.OKOPF_RECORDS_ID }, true);
public static final UniqueKey<PassportRecord> PK_PASSPORT = Internal.createUniqueKey(Passport.PASSPORT, DSL.name("pk_passport"), new TableField[] { Passport.PASSPORT.PASSPORT_ID }, true);
public static final UniqueKey<PropertyRecord> PK_PROPERTY = Internal.createUniqueKey(Property.PROPERTY, DSL.name("pk_property"), new TableField[] { Property.PROPERTY.PROPERTY_ID }, true);
public static final UniqueKey<ProsecutionRecord> PK_PROSECUTION = Internal.createUniqueKey(Prosecution.PROSECUTION, DSL.name("pk_prosecution"), new TableField[] { Prosecution.PROSECUTION.PROSECUTION_ID }, true);
@ -92,7 +89,6 @@ public class Keys {
public static final UniqueKey<PubRecruitmentRecord> RECRUITMENT_IDM_ID_KEY = Internal.createUniqueKey(PubRecruitment.PUB_RECRUITMENT, DSL.name("recruitment_idm_id_key"), new TableField[] { PubRecruitment.PUB_RECRUITMENT.IDM_ID }, true);
public static final UniqueKey<PunishmentRecord> PK_PUNISHMENT = Internal.createUniqueKey(Punishment.PUNISHMENT, DSL.name("pk_punishment"), new TableField[] { Punishment.PUNISHMENT.PUNISHMENT_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<ShedlockRecord> SHEDLOCK_PK = Internal.createUniqueKey(Shedlock.SHEDLOCK, DSL.name("shedlock_pk"), new TableField[] { Shedlock.SHEDLOCK.NAME }, true);
public static final UniqueKey<SubpoenaRecord> SUBPOENA_PKEY = Internal.createUniqueKey(Subpoena.SUBPOENA, DSL.name("subpoena_pkey"), new TableField[] { Subpoena.SUBPOENA.SUB_ID }, true);
public static final UniqueKey<TemporaryMeasuresRecord> TEMPORARY_MEASURES_PKEY = Internal.createUniqueKey(TemporaryMeasures.TEMPORARY_MEASURES, DSL.name("temporary_measures_pkey"), new TableField[] { TemporaryMeasures.TEMPORARY_MEASURES.TEMPORARY_MEASURES_ID }, true);
public static final UniqueKey<WorkRecord> PK_WORK = Internal.createUniqueKey(Work.WORK, DSL.name("pk_work"), new TableField[] { Work.WORK.WORK_ID }, true);

View file

@ -1,285 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard;
import java.util.UUID;
import org.jooq.Configuration;
import org.jooq.Field;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidGenerateV1;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidGenerateV1mc;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidGenerateV3;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidGenerateV4;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidGenerateV5;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidNil;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidNsDns;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidNsOid;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidNsUrl;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines.UuidNsX500;
/**
* Convenience access to all stored procedures and functions in ervu_dashboard.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Routines {
/**
* Call <code>ervu_dashboard.uuid_generate_v1</code>
*/
public static UUID uuidGenerateV1(
Configuration configuration
) {
UuidGenerateV1 f = new UuidGenerateV1();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_generate_v1</code> as a field.
*/
public static Field<UUID> uuidGenerateV1() {
UuidGenerateV1 f = new UuidGenerateV1();
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_generate_v1mc</code>
*/
public static UUID uuidGenerateV1mc(
Configuration configuration
) {
UuidGenerateV1mc f = new UuidGenerateV1mc();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_generate_v1mc</code> as a field.
*/
public static Field<UUID> uuidGenerateV1mc() {
UuidGenerateV1mc f = new UuidGenerateV1mc();
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_generate_v3</code>
*/
public static UUID uuidGenerateV3(
Configuration configuration
, UUID namespace
, String name
) {
UuidGenerateV3 f = new UuidGenerateV3();
f.setNamespace(namespace);
f.setName_(name);
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_generate_v3</code> as a field.
*/
public static Field<UUID> uuidGenerateV3(
UUID namespace
, String name
) {
UuidGenerateV3 f = new UuidGenerateV3();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Get <code>ervu_dashboard.uuid_generate_v3</code> as a field.
*/
public static Field<UUID> uuidGenerateV3(
Field<UUID> namespace
, Field<String> name
) {
UuidGenerateV3 f = new UuidGenerateV3();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_generate_v4</code>
*/
public static UUID uuidGenerateV4(
Configuration configuration
) {
UuidGenerateV4 f = new UuidGenerateV4();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_generate_v4</code> as a field.
*/
public static Field<UUID> uuidGenerateV4() {
UuidGenerateV4 f = new UuidGenerateV4();
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_generate_v5</code>
*/
public static UUID uuidGenerateV5(
Configuration configuration
, UUID namespace
, String name
) {
UuidGenerateV5 f = new UuidGenerateV5();
f.setNamespace(namespace);
f.setName_(name);
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_generate_v5</code> as a field.
*/
public static Field<UUID> uuidGenerateV5(
UUID namespace
, String name
) {
UuidGenerateV5 f = new UuidGenerateV5();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Get <code>ervu_dashboard.uuid_generate_v5</code> as a field.
*/
public static Field<UUID> uuidGenerateV5(
Field<UUID> namespace
, Field<String> name
) {
UuidGenerateV5 f = new UuidGenerateV5();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_nil</code>
*/
public static UUID uuidNil(
Configuration configuration
) {
UuidNil f = new UuidNil();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_nil</code> as a field.
*/
public static Field<UUID> uuidNil() {
UuidNil f = new UuidNil();
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_ns_dns</code>
*/
public static UUID uuidNsDns(
Configuration configuration
) {
UuidNsDns f = new UuidNsDns();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_ns_dns</code> as a field.
*/
public static Field<UUID> uuidNsDns() {
UuidNsDns f = new UuidNsDns();
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_ns_oid</code>
*/
public static UUID uuidNsOid(
Configuration configuration
) {
UuidNsOid f = new UuidNsOid();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_ns_oid</code> as a field.
*/
public static Field<UUID> uuidNsOid() {
UuidNsOid f = new UuidNsOid();
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_ns_url</code>
*/
public static UUID uuidNsUrl(
Configuration configuration
) {
UuidNsUrl f = new UuidNsUrl();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_ns_url</code> as a field.
*/
public static Field<UUID> uuidNsUrl() {
UuidNsUrl f = new UuidNsUrl();
return f.asField();
}
/**
* Call <code>ervu_dashboard.uuid_ns_x500</code>
*/
public static UUID uuidNsX500(
Configuration configuration
) {
UuidNsX500 f = new UuidNsX500();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>ervu_dashboard.uuid_ns_x500</code> as a field.
*/
public static Field<UUID> uuidNsX500() {
UuidNsX500 f = new UuidNsX500();
return f.asField();
}
}

View file

@ -13,19 +13,18 @@ import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.CitizenshipForeig
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Databasechangelog;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Databasechangeloglock;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Decision;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Delta;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Deputy;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Disability;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Disease;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.DriversLicence;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.MedicalAuthorities;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.OkopfRecords;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Passport;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Property;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Prosecution;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.PubRecruitment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Punishment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Recruitment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Shedlock;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Subpoena;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.TemporaryMeasures;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Work;
@ -82,6 +81,11 @@ public class Tables {
*/
public static final Decision DECISION = Decision.DECISION;
/**
* таблица с параметром, на основе которого загружается дельта по гражданам
*/
public static final Delta DELTA = Delta.DELTA;
/**
* сведения о гражданах, избранных депутатами/зарегистрированных кандидатами
* на участие в выборах
@ -108,11 +112,6 @@ public class Tables {
*/
public static final MedicalAuthorities MEDICAL_AUTHORITIES = MedicalAuthorities.MEDICAL_AUTHORITIES;
/**
* The table <code>ervu_dashboard.okopf_records</code>.
*/
public static final OkopfRecords OKOPF_RECORDS = OkopfRecords.OKOPF_RECORDS;
/**
* сведения о паспорте
*/
@ -143,11 +142,6 @@ public class Tables {
*/
public static final Recruitment RECRUITMENT = Recruitment.RECRUITMENT;
/**
* The table <code>ervu_dashboard.shedlock</code>.
*/
public static final Shedlock SHEDLOCK = Shedlock.SHEDLOCK;
/**
* сведения о направлении повестки военного комиссариата
*/

View file

@ -1,38 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
import java.util.UUID;
import org.jooq.Parameter;
import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UuidGenerateV4 extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_generate_v4.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
/**
* Create a new routine call instance
*/
public UuidGenerateV4() {
super("uuid_generate_v4", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}
}

View file

@ -6,6 +6,7 @@ package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables;
import java.math.BigDecimal;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Collection;
import java.util.UUID;
@ -277,6 +278,12 @@ public class Citizen extends TableImpl<CitizenRecord> {
*/
public final TableField<CitizenRecord, BigDecimal> NUMBER_CHILDREN_18_OLD = createField(DSL.name("number_children_18_old"), SQLDataType.NUMERIC, this, "");
/**
* The column <code>ervu_dashboard.citizen.update_date</code>. Дата
* обновления
*/
public final TableField<CitizenRecord, Timestamp> UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0), this, "Дата обновления");
private Citizen(Name alias, Table<CitizenRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}

View file

@ -0,0 +1,231 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables;
import java.sql.Timestamp;
import java.util.Collection;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Identity;
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.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.Keys;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.DeltaRecord;
/**
* таблица с параметром, на основе которого загружается дельта по гражданам
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Delta extends TableImpl<DeltaRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>ervu_dashboard.delta</code>
*/
public static final Delta DELTA = new Delta();
/**
* The class holding records for this type
*/
@Override
public Class<DeltaRecord> getRecordType() {
return DeltaRecord.class;
}
/**
* The column <code>ervu_dashboard.delta.delta_id</code>.
*/
public final TableField<DeltaRecord, Long> DELTA_ID = createField(DSL.name("delta_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column <code>ervu_dashboard.delta.value</code>. дата, от которой
* необходимо грузить данные
*/
public final TableField<DeltaRecord, Timestamp> VALUE = createField(DSL.name("value"), SQLDataType.TIMESTAMP(0), this, "дата, от которой необходимо грузить данные");
private Delta(Name alias, Table<DeltaRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private Delta(Name alias, Table<DeltaRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment("таблица с параметром, на основе которого загружается дельта по гражданам"), TableOptions.table(), where);
}
/**
* Create an aliased <code>ervu_dashboard.delta</code> table reference
*/
public Delta(String alias) {
this(DSL.name(alias), DELTA);
}
/**
* Create an aliased <code>ervu_dashboard.delta</code> table reference
*/
public Delta(Name alias) {
this(alias, DELTA);
}
/**
* Create a <code>ervu_dashboard.delta</code> table reference
*/
public Delta() {
this(DSL.name("delta"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : ErvuDashboard.ERVU_DASHBOARD;
}
@Override
public Identity<DeltaRecord, Long> getIdentity() {
return (Identity<DeltaRecord, Long>) super.getIdentity();
}
@Override
public UniqueKey<DeltaRecord> getPrimaryKey() {
return Keys.PK_DELTA;
}
@Override
public Delta as(String alias) {
return new Delta(DSL.name(alias), this);
}
@Override
public Delta as(Name alias) {
return new Delta(alias, this);
}
@Override
public Delta as(Table<?> alias) {
return new Delta(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public Delta rename(String name) {
return new Delta(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public Delta rename(Name name) {
return new Delta(name, null);
}
/**
* Rename this table
*/
@Override
public Delta rename(Table<?> name) {
return new Delta(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public Delta where(Condition condition) {
return new Delta(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public Delta where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public Delta where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public Delta where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Delta where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Delta where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Delta where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Delta where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public Delta whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public Delta whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,237 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
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.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.Keys;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.OkopfRecordsRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class OkopfRecords extends TableImpl<OkopfRecordsRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>ervu_dashboard.okopf_records</code>
*/
public static final OkopfRecords OKOPF_RECORDS = new OkopfRecords();
/**
* The class holding records for this type
*/
@Override
public Class<OkopfRecordsRecord> getRecordType() {
return OkopfRecordsRecord.class;
}
/**
* The column <code>ervu_dashboard.okopf_records.okopf_records_id</code>.
*/
public final TableField<OkopfRecordsRecord, String> OKOPF_RECORDS_ID = createField(DSL.name("okopf_records_id"), SQLDataType.VARCHAR.nullable(false), this, "");
/**
* The column <code>ervu_dashboard.okopf_records.name</code>.
*/
public final TableField<OkopfRecordsRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR.nullable(false), this, "");
/**
* The column <code>ervu_dashboard.okopf_records.version</code>.
*/
public final TableField<OkopfRecordsRecord, Integer> VERSION = createField(DSL.name("version"), SQLDataType.INTEGER.nullable(false), this, "");
private OkopfRecords(Name alias, Table<OkopfRecordsRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private OkopfRecords(Name alias, Table<OkopfRecordsRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>ervu_dashboard.okopf_records</code> table
* reference
*/
public OkopfRecords(String alias) {
this(DSL.name(alias), OKOPF_RECORDS);
}
/**
* Create an aliased <code>ervu_dashboard.okopf_records</code> table
* reference
*/
public OkopfRecords(Name alias) {
this(alias, OKOPF_RECORDS);
}
/**
* Create a <code>ervu_dashboard.okopf_records</code> table reference
*/
public OkopfRecords() {
this(DSL.name("okopf_records"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : ErvuDashboard.ERVU_DASHBOARD;
}
@Override
public UniqueKey<OkopfRecordsRecord> getPrimaryKey() {
return Keys.OKOPF_RECORDS_PKEY;
}
@Override
public List<UniqueKey<OkopfRecordsRecord>> getUniqueKeys() {
return Arrays.asList(Keys.OKOPF_RECORDS_NAME_KEY);
}
@Override
public OkopfRecords as(String alias) {
return new OkopfRecords(DSL.name(alias), this);
}
@Override
public OkopfRecords as(Name alias) {
return new OkopfRecords(alias, this);
}
@Override
public OkopfRecords as(Table<?> alias) {
return new OkopfRecords(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public OkopfRecords rename(String name) {
return new OkopfRecords(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public OkopfRecords rename(Name name) {
return new OkopfRecords(name, null);
}
/**
* Rename this table
*/
@Override
public OkopfRecords rename(Table<?> name) {
return new OkopfRecords(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public OkopfRecords where(Condition condition) {
return new OkopfRecords(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public OkopfRecords where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public OkopfRecords where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public OkopfRecords where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OkopfRecords where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OkopfRecords where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OkopfRecords where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OkopfRecords where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public OkopfRecords whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public OkopfRecords whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -34,7 +34,6 @@ import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.Keys;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.RecruitmentRecord;
import ru.micord.ervu_dashboard.db_beans.ratings.tables.AppearSubppoena.AppearSubppoenaPath;
import ru.micord.ervu_dashboard.db_beans.ratings.tables.ConscriptionInfo.ConscriptionInfoPath;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.tables.PostponementInfo.PostponementInfoPath;
/**
@ -189,19 +188,6 @@ public class Recruitment extends TableImpl<RecruitmentRecord> {
return _conscriptionInfo;
}
private transient PostponementInfoPath _postponementInfo;
/**
* Get the implicit to-many join path to the
* <code>recruitment_campaign.postponement_info</code> table
*/
public PostponementInfoPath postponementInfo() {
if (_postponementInfo == null)
_postponementInfo = new PostponementInfoPath(this, null, ru.micord.ervu_dashboard.db_beans.recruitment_campaign.Keys.POSTPONEMENT_INFO__POSTPONEMENT_INFO_FK1.getInverseKey());
return _postponementInfo;
}
@Override
public Recruitment as(String alias) {
return new Recruitment(DSL.name(alias), this);

View file

@ -1,234 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.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.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.Keys;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.ShedlockRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Shedlock extends TableImpl<ShedlockRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>ervu_dashboard.shedlock</code>
*/
public static final Shedlock SHEDLOCK = new Shedlock();
/**
* The class holding records for this type
*/
@Override
public Class<ShedlockRecord> getRecordType() {
return ShedlockRecord.class;
}
/**
* The column <code>ervu_dashboard.shedlock.name</code>.
*/
public final TableField<ShedlockRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column <code>ervu_dashboard.shedlock.lock_until</code>.
*/
public final TableField<ShedlockRecord, Timestamp> LOCK_UNTIL = createField(DSL.name("lock_until"), SQLDataType.TIMESTAMP(0), this, "");
/**
* The column <code>ervu_dashboard.shedlock.locked_at</code>.
*/
public final TableField<ShedlockRecord, Timestamp> LOCKED_AT = createField(DSL.name("locked_at"), SQLDataType.TIMESTAMP(0), this, "");
/**
* The column <code>ervu_dashboard.shedlock.locked_by</code>.
*/
public final TableField<ShedlockRecord, String> LOCKED_BY = createField(DSL.name("locked_by"), SQLDataType.VARCHAR(255), this, "");
private Shedlock(Name alias, Table<ShedlockRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private Shedlock(Name alias, Table<ShedlockRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>ervu_dashboard.shedlock</code> table reference
*/
public Shedlock(String alias) {
this(DSL.name(alias), SHEDLOCK);
}
/**
* Create an aliased <code>ervu_dashboard.shedlock</code> table reference
*/
public Shedlock(Name alias) {
this(alias, SHEDLOCK);
}
/**
* Create a <code>ervu_dashboard.shedlock</code> table reference
*/
public Shedlock() {
this(DSL.name("shedlock"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : ErvuDashboard.ERVU_DASHBOARD;
}
@Override
public UniqueKey<ShedlockRecord> getPrimaryKey() {
return Keys.SHEDLOCK_PK;
}
@Override
public Shedlock as(String alias) {
return new Shedlock(DSL.name(alias), this);
}
@Override
public Shedlock as(Name alias) {
return new Shedlock(alias, this);
}
@Override
public Shedlock as(Table<?> alias) {
return new Shedlock(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public Shedlock rename(String name) {
return new Shedlock(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public Shedlock rename(Name name) {
return new Shedlock(name, null);
}
/**
* Rename this table
*/
@Override
public Shedlock rename(Table<?> name) {
return new Shedlock(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public Shedlock where(Condition condition) {
return new Shedlock(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public Shedlock where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public Shedlock where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public Shedlock where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Shedlock where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Shedlock where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Shedlock where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Shedlock where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public Shedlock whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public Shedlock whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -6,6 +6,7 @@ package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records;
import java.math.BigDecimal;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.UUID;
import org.jooq.Record1;
@ -632,6 +633,22 @@ public class CitizenRecord extends UpdatableRecordImpl<CitizenRecord> {
return (BigDecimal) get(39);
}
/**
* Setter for <code>ervu_dashboard.citizen.update_date</code>. Дата
* обновления
*/
public void setUpdateDate(Timestamp value) {
set(40, value);
}
/**
* Getter for <code>ervu_dashboard.citizen.update_date</code>. Дата
* обновления
*/
public Timestamp getUpdateDate() {
return (Timestamp) get(40);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@ -655,7 +672,7 @@ public class CitizenRecord extends UpdatableRecordImpl<CitizenRecord> {
/**
* Create a detached, initialised CitizenRecord
*/
public CitizenRecord(String residence, String isRegistered, String passportSeries, String passportNumber, String phone, String medicalRequirements, String defermentLiberation, String gender, String maritalStatus, String education, String employment, String reasonRegistration, String driverLicense, String disabilityGroup, String dispensaryRegistrationCode, String regionBirth, String cityBirth, Boolean rightDeferment, Boolean tookBreak, Boolean medic, Boolean sportsCategory, Boolean tractorLicense, Boolean isWanted, Boolean isInPrison, Boolean acquiredCitizenship, Boolean urgentService, Boolean contractService, Boolean mobilization, String fullName, String lastName, String firstName, String middleName, BigDecimal age, String birthPlace, BigDecimal numberChildren, Date birthDate, UUID recruitId, UUID recruitmentId, Date issueDate, BigDecimal numberChildren_18Old) {
public CitizenRecord(String residence, String isRegistered, String passportSeries, String passportNumber, String phone, String medicalRequirements, String defermentLiberation, String gender, String maritalStatus, String education, String employment, String reasonRegistration, String driverLicense, String disabilityGroup, String dispensaryRegistrationCode, String regionBirth, String cityBirth, Boolean rightDeferment, Boolean tookBreak, Boolean medic, Boolean sportsCategory, Boolean tractorLicense, Boolean isWanted, Boolean isInPrison, Boolean acquiredCitizenship, Boolean urgentService, Boolean contractService, Boolean mobilization, String fullName, String lastName, String firstName, String middleName, BigDecimal age, String birthPlace, BigDecimal numberChildren, Date birthDate, UUID recruitId, UUID recruitmentId, Date issueDate, BigDecimal numberChildren_18Old, Timestamp updateDate) {
super(Citizen.CITIZEN);
setResidence(residence);
@ -698,6 +715,7 @@ public class CitizenRecord extends UpdatableRecordImpl<CitizenRecord> {
setRecruitmentId(recruitmentId);
setIssueDate(issueDate);
setNumberChildren_18Old(numberChildren_18Old);
setUpdateDate(updateDate);
resetChangedOnNotNull();
}
}

View file

@ -0,0 +1,83 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Delta;
/**
* таблица с параметром, на основе которого загружается дельта по гражданам
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DeltaRecord extends UpdatableRecordImpl<DeltaRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>ervu_dashboard.delta.delta_id</code>.
*/
public void setDeltaId(Long value) {
set(0, value);
}
/**
* Getter for <code>ervu_dashboard.delta.delta_id</code>.
*/
public Long getDeltaId() {
return (Long) get(0);
}
/**
* Setter for <code>ervu_dashboard.delta.value</code>. дата, от которой
* необходимо грузить данные
*/
public void setValue(Timestamp value) {
set(1, value);
}
/**
* Getter for <code>ervu_dashboard.delta.value</code>. дата, от которой
* необходимо грузить данные
*/
public Timestamp getValue() {
return (Timestamp) get(1);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Long> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached DeltaRecord
*/
public DeltaRecord() {
super(Delta.DELTA);
}
/**
* Create a detached, initialised DeltaRecord
*/
public DeltaRecord(Long deltaId, Timestamp value) {
super(Delta.DELTA);
setDeltaId(deltaId);
setValue(value);
resetChangedOnNotNull();
}
}

View file

@ -1,94 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.OkopfRecords;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class OkopfRecordsRecord extends UpdatableRecordImpl<OkopfRecordsRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>ervu_dashboard.okopf_records.okopf_records_id</code>.
*/
public void setOkopfRecordsId(String value) {
set(0, value);
}
/**
* Getter for <code>ervu_dashboard.okopf_records.okopf_records_id</code>.
*/
public String getOkopfRecordsId() {
return (String) get(0);
}
/**
* Setter for <code>ervu_dashboard.okopf_records.name</code>.
*/
public void setName(String value) {
set(1, value);
}
/**
* Getter for <code>ervu_dashboard.okopf_records.name</code>.
*/
public String getName() {
return (String) get(1);
}
/**
* Setter for <code>ervu_dashboard.okopf_records.version</code>.
*/
public void setVersion(Integer value) {
set(2, value);
}
/**
* Getter for <code>ervu_dashboard.okopf_records.version</code>.
*/
public Integer getVersion() {
return (Integer) get(2);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached OkopfRecordsRecord
*/
public OkopfRecordsRecord() {
super(OkopfRecords.OKOPF_RECORDS);
}
/**
* Create a detached, initialised OkopfRecordsRecord
*/
public OkopfRecordsRecord(String okopfRecordsId, String name, Integer version) {
super(OkopfRecords.OKOPF_RECORDS);
setOkopfRecordsId(okopfRecordsId);
setName(name);
setVersion(version);
resetChangedOnNotNull();
}
}

View file

@ -1,111 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Shedlock;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class ShedlockRecord extends UpdatableRecordImpl<ShedlockRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>ervu_dashboard.shedlock.name</code>.
*/
public void setName(String value) {
set(0, value);
}
/**
* Getter for <code>ervu_dashboard.shedlock.name</code>.
*/
public String getName() {
return (String) get(0);
}
/**
* Setter for <code>ervu_dashboard.shedlock.lock_until</code>.
*/
public void setLockUntil(Timestamp value) {
set(1, value);
}
/**
* Getter for <code>ervu_dashboard.shedlock.lock_until</code>.
*/
public Timestamp getLockUntil() {
return (Timestamp) get(1);
}
/**
* Setter for <code>ervu_dashboard.shedlock.locked_at</code>.
*/
public void setLockedAt(Timestamp value) {
set(2, value);
}
/**
* Getter for <code>ervu_dashboard.shedlock.locked_at</code>.
*/
public Timestamp getLockedAt() {
return (Timestamp) get(2);
}
/**
* Setter for <code>ervu_dashboard.shedlock.locked_by</code>.
*/
public void setLockedBy(String value) {
set(3, value);
}
/**
* Getter for <code>ervu_dashboard.shedlock.locked_by</code>.
*/
public String getLockedBy() {
return (String) get(3);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached ShedlockRecord
*/
public ShedlockRecord() {
super(Shedlock.SHEDLOCK);
}
/**
* Create a detached, initialised ShedlockRecord
*/
public ShedlockRecord(String name, Timestamp lockUntil, Timestamp lockedAt, String lockedBy) {
super(Shedlock.SHEDLOCK);
setName(name);
setLockUntil(lockUntil);
setLockedAt(lockedAt);
setLockedBy(lockedBy);
resetChangedOnNotNull();
}
}

View file

@ -10,11 +10,9 @@ import org.jooq.impl.DSL;
import org.jooq.impl.Internal;
import ru.micord.ervu_dashboard.db_beans.public_.tables.ActionLogs;
import ru.micord.ervu_dashboard.db_beans.public_.tables.Databasechangeloglock;
import ru.micord.ervu_dashboard.db_beans.public_.tables.JobLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.WorkflowLogs;
import ru.micord.ervu_dashboard.db_beans.public_.tables.records.ActionLogsRecord;
import ru.micord.ervu_dashboard.db_beans.public_.tables.records.DatabasechangeloglockRecord;
import ru.micord.ervu_dashboard.db_beans.public_.tables.records.JobLogRecord;
import ru.micord.ervu_dashboard.db_beans.public_.tables.records.WorkflowLogsRecord;
@ -31,7 +29,6 @@ public class Keys {
// -------------------------------------------------------------------------
public static final UniqueKey<ActionLogsRecord> ACTION_LOGS_PKEY = Internal.createUniqueKey(ActionLogs.ACTION_LOGS, DSL.name("action_logs_pkey"), new TableField[] { ActionLogs.ACTION_LOGS.ACTION_LOG_ID }, true);
public static final UniqueKey<DatabasechangeloglockRecord> DATABASECHANGELOGLOCK_PKEY = Internal.createUniqueKey(Databasechangeloglock.DATABASECHANGELOGLOCK, DSL.name("databasechangeloglock_pkey"), new TableField[] { Databasechangeloglock.DATABASECHANGELOGLOCK.ID }, true);
public static final UniqueKey<JobLogRecord> JOB_LOG_PKEY = Internal.createUniqueKey(JobLog.JOB_LOG, DSL.name("job_log_pkey"), new TableField[] { JobLog.JOB_LOG.ID_JOB }, true);
public static final UniqueKey<WorkflowLogsRecord> WORKFLOW_LOGS_PKEY = Internal.createUniqueKey(WorkflowLogs.WORKFLOW_LOGS, DSL.name("workflow_logs_pkey"), new TableField[] { WorkflowLogs.WORKFLOW_LOGS.LOGGING_ID }, true);
}

View file

@ -14,9 +14,6 @@ import org.jooq.impl.SchemaImpl;
import ru.micord.ervu_dashboard.db_beans.DefaultCatalog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.ActionLogs;
import ru.micord.ervu_dashboard.db_beans.public_.tables.ChannelLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.Databasechangelog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.Databasechangeloglock;
import ru.micord.ervu_dashboard.db_beans.public_.tables.InteractionLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.JobEntryLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.JobLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.LastRecordingDate;
@ -46,21 +43,6 @@ public class Public extends SchemaImpl {
*/
public final ChannelLog CHANNEL_LOG = ChannelLog.CHANNEL_LOG;
/**
* The table <code>public.databasechangelog</code>.
*/
public final Databasechangelog DATABASECHANGELOG = Databasechangelog.DATABASECHANGELOG;
/**
* The table <code>public.databasechangeloglock</code>.
*/
public final Databasechangeloglock DATABASECHANGELOGLOCK = Databasechangeloglock.DATABASECHANGELOGLOCK;
/**
* The table <code>public.interaction_log</code>.
*/
public final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
/**
* The table <code>public.job_entry_log</code>.
*/
@ -99,9 +81,6 @@ public class Public extends SchemaImpl {
return Arrays.asList(
ActionLogs.ACTION_LOGS,
ChannelLog.CHANNEL_LOG,
Databasechangelog.DATABASECHANGELOG,
Databasechangeloglock.DATABASECHANGELOGLOCK,
InteractionLog.INTERACTION_LOG,
JobEntryLog.JOB_ENTRY_LOG,
JobLog.JOB_LOG,
LastRecordingDate.LAST_RECORDING_DATE,

View file

@ -9,7 +9,16 @@ import java.util.UUID;
import org.jooq.Configuration;
import org.jooq.Field;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidGenerateV1;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidGenerateV1mc;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidGenerateV3;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidGenerateV4;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidGenerateV5;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidNil;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidNsDns;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidNsOid;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidNsUrl;
import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidNsX500;
/**
@ -18,6 +27,92 @@ import ru.micord.ervu_dashboard.db_beans.public_.routines.UuidGenerateV4;
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Routines {
/**
* Call <code>public.uuid_generate_v1</code>
*/
public static UUID uuidGenerateV1(
Configuration configuration
) {
UuidGenerateV1 f = new UuidGenerateV1();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_generate_v1</code> as a field.
*/
public static Field<UUID> uuidGenerateV1() {
UuidGenerateV1 f = new UuidGenerateV1();
return f.asField();
}
/**
* Call <code>public.uuid_generate_v1mc</code>
*/
public static UUID uuidGenerateV1mc(
Configuration configuration
) {
UuidGenerateV1mc f = new UuidGenerateV1mc();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_generate_v1mc</code> as a field.
*/
public static Field<UUID> uuidGenerateV1mc() {
UuidGenerateV1mc f = new UuidGenerateV1mc();
return f.asField();
}
/**
* Call <code>public.uuid_generate_v3</code>
*/
public static UUID uuidGenerateV3(
Configuration configuration
, UUID namespace
, String name
) {
UuidGenerateV3 f = new UuidGenerateV3();
f.setNamespace(namespace);
f.setName_(name);
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_generate_v3</code> as a field.
*/
public static Field<UUID> uuidGenerateV3(
UUID namespace
, String name
) {
UuidGenerateV3 f = new UuidGenerateV3();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Get <code>public.uuid_generate_v3</code> as a field.
*/
public static Field<UUID> uuidGenerateV3(
Field<UUID> namespace
, Field<String> name
) {
UuidGenerateV3 f = new UuidGenerateV3();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Call <code>public.uuid_generate_v4</code>
*/
@ -38,4 +133,153 @@ public class Routines {
return f.asField();
}
/**
* Call <code>public.uuid_generate_v5</code>
*/
public static UUID uuidGenerateV5(
Configuration configuration
, UUID namespace
, String name
) {
UuidGenerateV5 f = new UuidGenerateV5();
f.setNamespace(namespace);
f.setName_(name);
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_generate_v5</code> as a field.
*/
public static Field<UUID> uuidGenerateV5(
UUID namespace
, String name
) {
UuidGenerateV5 f = new UuidGenerateV5();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Get <code>public.uuid_generate_v5</code> as a field.
*/
public static Field<UUID> uuidGenerateV5(
Field<UUID> namespace
, Field<String> name
) {
UuidGenerateV5 f = new UuidGenerateV5();
f.setNamespace(namespace);
f.setName_(name);
return f.asField();
}
/**
* Call <code>public.uuid_nil</code>
*/
public static UUID uuidNil(
Configuration configuration
) {
UuidNil f = new UuidNil();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_nil</code> as a field.
*/
public static Field<UUID> uuidNil() {
UuidNil f = new UuidNil();
return f.asField();
}
/**
* Call <code>public.uuid_ns_dns</code>
*/
public static UUID uuidNsDns(
Configuration configuration
) {
UuidNsDns f = new UuidNsDns();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_ns_dns</code> as a field.
*/
public static Field<UUID> uuidNsDns() {
UuidNsDns f = new UuidNsDns();
return f.asField();
}
/**
* Call <code>public.uuid_ns_oid</code>
*/
public static UUID uuidNsOid(
Configuration configuration
) {
UuidNsOid f = new UuidNsOid();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_ns_oid</code> as a field.
*/
public static Field<UUID> uuidNsOid() {
UuidNsOid f = new UuidNsOid();
return f.asField();
}
/**
* Call <code>public.uuid_ns_url</code>
*/
public static UUID uuidNsUrl(
Configuration configuration
) {
UuidNsUrl f = new UuidNsUrl();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_ns_url</code> as a field.
*/
public static Field<UUID> uuidNsUrl() {
UuidNsUrl f = new UuidNsUrl();
return f.asField();
}
/**
* Call <code>public.uuid_ns_x500</code>
*/
public static UUID uuidNsX500(
Configuration configuration
) {
UuidNsX500 f = new UuidNsX500();
f.execute(configuration);
return f.getReturnValue();
}
/**
* Get <code>public.uuid_ns_x500</code> as a field.
*/
public static Field<UUID> uuidNsX500() {
UuidNsX500 f = new UuidNsX500();
return f.asField();
}
}

View file

@ -6,9 +6,6 @@ package ru.micord.ervu_dashboard.db_beans.public_;
import ru.micord.ervu_dashboard.db_beans.public_.tables.ActionLogs;
import ru.micord.ervu_dashboard.db_beans.public_.tables.ChannelLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.Databasechangelog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.Databasechangeloglock;
import ru.micord.ervu_dashboard.db_beans.public_.tables.InteractionLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.JobEntryLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.JobLog;
import ru.micord.ervu_dashboard.db_beans.public_.tables.LastRecordingDate;
@ -31,21 +28,6 @@ public class Tables {
*/
public static final ChannelLog CHANNEL_LOG = ChannelLog.CHANNEL_LOG;
/**
* The table <code>public.databasechangelog</code>.
*/
public static final Databasechangelog DATABASECHANGELOG = Databasechangelog.DATABASECHANGELOG;
/**
* The table <code>public.databasechangeloglock</code>.
*/
public static final Databasechangeloglock DATABASECHANGELOGLOCK = Databasechangeloglock.DATABASECHANGELOGLOCK;
/**
* The table <code>public.interaction_log</code>.
*/
public static final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
/**
* The table <code>public.job_entry_log</code>.
*/

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -11,7 +11,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -23,7 +23,7 @@ public class UuidGenerateV1 extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_generate_v1.RETURN_VALUE</code>.
* The parameter <code>public.uuid_generate_v1.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
@ -31,7 +31,7 @@ public class UuidGenerateV1 extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidGenerateV1() {
super("uuid_generate_v1", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_generate_v1", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -11,7 +11,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -23,8 +23,7 @@ public class UuidGenerateV1mc extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter
* <code>ervu_dashboard.uuid_generate_v1mc.RETURN_VALUE</code>.
* The parameter <code>public.uuid_generate_v1mc.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
@ -32,7 +31,7 @@ public class UuidGenerateV1mc extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidGenerateV1mc() {
super("uuid_generate_v1mc", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_generate_v1mc", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -12,7 +12,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -24,17 +24,17 @@ public class UuidGenerateV3 extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_generate_v3.RETURN_VALUE</code>.
* The parameter <code>public.uuid_generate_v3.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
/**
* The parameter <code>ervu_dashboard.uuid_generate_v3.namespace</code>.
* The parameter <code>public.uuid_generate_v3.namespace</code>.
*/
public static final Parameter<UUID> NAMESPACE = Internal.createParameter("namespace", SQLDataType.UUID, false, false);
/**
* The parameter <code>ervu_dashboard.uuid_generate_v3.name</code>.
* The parameter <code>public.uuid_generate_v3.name</code>.
*/
public static final Parameter<String> NAME = Internal.createParameter("name", SQLDataType.CLOB, false, false);
@ -42,7 +42,7 @@ public class UuidGenerateV3 extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidGenerateV3() {
super("uuid_generate_v3", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_generate_v3", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
addInParameter(NAMESPACE);

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -12,7 +12,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -24,17 +24,17 @@ public class UuidGenerateV5 extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_generate_v5.RETURN_VALUE</code>.
* The parameter <code>public.uuid_generate_v5.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
/**
* The parameter <code>ervu_dashboard.uuid_generate_v5.namespace</code>.
* The parameter <code>public.uuid_generate_v5.namespace</code>.
*/
public static final Parameter<UUID> NAMESPACE = Internal.createParameter("namespace", SQLDataType.UUID, false, false);
/**
* The parameter <code>ervu_dashboard.uuid_generate_v5.name</code>.
* The parameter <code>public.uuid_generate_v5.name</code>.
*/
public static final Parameter<String> NAME = Internal.createParameter("name", SQLDataType.CLOB, false, false);
@ -42,7 +42,7 @@ public class UuidGenerateV5 extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidGenerateV5() {
super("uuid_generate_v5", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_generate_v5", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
addInParameter(NAMESPACE);

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -11,7 +11,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -23,7 +23,7 @@ public class UuidNil extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_nil.RETURN_VALUE</code>.
* The parameter <code>public.uuid_nil.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
@ -31,7 +31,7 @@ public class UuidNil extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidNil() {
super("uuid_nil", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_nil", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -11,7 +11,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -23,7 +23,7 @@ public class UuidNsDns extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_ns_dns.RETURN_VALUE</code>.
* The parameter <code>public.uuid_ns_dns.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
@ -31,7 +31,7 @@ public class UuidNsDns extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidNsDns() {
super("uuid_ns_dns", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_ns_dns", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -11,7 +11,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -23,7 +23,7 @@ public class UuidNsOid extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_ns_oid.RETURN_VALUE</code>.
* The parameter <code>public.uuid_ns_oid.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
@ -31,7 +31,7 @@ public class UuidNsOid extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidNsOid() {
super("uuid_ns_oid", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_ns_oid", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -11,7 +11,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -23,7 +23,7 @@ public class UuidNsUrl extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_ns_url.RETURN_VALUE</code>.
* The parameter <code>public.uuid_ns_url.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
@ -31,7 +31,7 @@ public class UuidNsUrl extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidNsUrl() {
super("uuid_ns_url", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_ns_url", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}

View file

@ -1,7 +1,7 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.ervu_dashboard.routines;
package ru.micord.ervu_dashboard.db_beans.public_.routines;
import java.util.UUID;
@ -11,7 +11,7 @@ import org.jooq.impl.AbstractRoutine;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.ErvuDashboard;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
/**
@ -23,7 +23,7 @@ public class UuidNsX500 extends AbstractRoutine<UUID> {
private static final long serialVersionUID = 1L;
/**
* The parameter <code>ervu_dashboard.uuid_ns_x500.RETURN_VALUE</code>.
* The parameter <code>public.uuid_ns_x500.RETURN_VALUE</code>.
*/
public static final Parameter<UUID> RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.UUID, false, false);
@ -31,7 +31,7 @@ public class UuidNsX500 extends AbstractRoutine<UUID> {
* Create a new routine call instance
*/
public UuidNsX500() {
super("uuid_ns_x500", ErvuDashboard.ERVU_DASHBOARD, SQLDataType.UUID);
super("uuid_ns_x500", Public.PUBLIC, SQLDataType.UUID);
setReturnParameter(RETURN_VALUE);
}

View file

@ -1,277 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.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.ervu_dashboard.db_beans.public_.Public;
import ru.micord.ervu_dashboard.db_beans.public_.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>public.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>public.databasechangelog.id</code>.
*/
public final TableField<DatabasechangelogRecord, String> ID = createField(DSL.name("id"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column <code>public.databasechangelog.author</code>.
*/
public final TableField<DatabasechangelogRecord, String> AUTHOR = createField(DSL.name("author"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column <code>public.databasechangelog.filename</code>.
*/
public final TableField<DatabasechangelogRecord, String> FILENAME = createField(DSL.name("filename"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column <code>public.databasechangelog.dateexecuted</code>.
*/
public final TableField<DatabasechangelogRecord, Timestamp> DATEEXECUTED = createField(DSL.name("dateexecuted"), SQLDataType.TIMESTAMP(0).nullable(false), this, "");
/**
* The column <code>public.databasechangelog.orderexecuted</code>.
*/
public final TableField<DatabasechangelogRecord, Integer> ORDEREXECUTED = createField(DSL.name("orderexecuted"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>public.databasechangelog.exectype</code>.
*/
public final TableField<DatabasechangelogRecord, String> EXECTYPE = createField(DSL.name("exectype"), SQLDataType.VARCHAR(10).nullable(false), this, "");
/**
* The column <code>public.databasechangelog.md5sum</code>.
*/
public final TableField<DatabasechangelogRecord, String> MD5SUM = createField(DSL.name("md5sum"), SQLDataType.VARCHAR(35), this, "");
/**
* The column <code>public.databasechangelog.description</code>.
*/
public final TableField<DatabasechangelogRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(255), this, "");
/**
* The column <code>public.databasechangelog.comments</code>.
*/
public final TableField<DatabasechangelogRecord, String> COMMENTS = createField(DSL.name("comments"), SQLDataType.VARCHAR(255), this, "");
/**
* The column <code>public.databasechangelog.tag</code>.
*/
public final TableField<DatabasechangelogRecord, String> TAG = createField(DSL.name("tag"), SQLDataType.VARCHAR(255), this, "");
/**
* The column <code>public.databasechangelog.liquibase</code>.
*/
public final TableField<DatabasechangelogRecord, String> LIQUIBASE = createField(DSL.name("liquibase"), SQLDataType.VARCHAR(20), this, "");
/**
* The column <code>public.databasechangelog.contexts</code>.
*/
public final TableField<DatabasechangelogRecord, String> CONTEXTS = createField(DSL.name("contexts"), SQLDataType.VARCHAR(255), this, "");
/**
* The column <code>public.databasechangelog.labels</code>.
*/
public final TableField<DatabasechangelogRecord, String> LABELS = createField(DSL.name("labels"), SQLDataType.VARCHAR(255), this, "");
/**
* The column <code>public.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>public.databasechangelog</code> table reference
*/
public Databasechangelog(String alias) {
this(DSL.name(alias), DATABASECHANGELOG);
}
/**
* Create an aliased <code>public.databasechangelog</code> table reference
*/
public Databasechangelog(Name alias) {
this(alias, DATABASECHANGELOG);
}
/**
* Create a <code>public.databasechangelog</code> table reference
*/
public Databasechangelog() {
this(DSL.name("databasechangelog"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
}
@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));
}
}

View file

@ -1,236 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.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.ervu_dashboard.db_beans.public_.Keys;
import ru.micord.ervu_dashboard.db_beans.public_.Public;
import ru.micord.ervu_dashboard.db_beans.public_.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>public.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>public.databasechangeloglock.id</code>.
*/
public final TableField<DatabasechangeloglockRecord, Integer> ID = createField(DSL.name("id"), SQLDataType.INTEGER.nullable(false), this, "");
/**
* The column <code>public.databasechangeloglock.locked</code>.
*/
public final TableField<DatabasechangeloglockRecord, Boolean> LOCKED = createField(DSL.name("locked"), SQLDataType.BOOLEAN.nullable(false), this, "");
/**
* The column <code>public.databasechangeloglock.lockgranted</code>.
*/
public final TableField<DatabasechangeloglockRecord, Timestamp> LOCKGRANTED = createField(DSL.name("lockgranted"), SQLDataType.TIMESTAMP(0), this, "");
/**
* The column <code>public.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>public.databasechangeloglock</code> table
* reference
*/
public Databasechangeloglock(String alias) {
this(DSL.name(alias), DATABASECHANGELOGLOCK);
}
/**
* Create an aliased <code>public.databasechangeloglock</code> table
* reference
*/
public Databasechangeloglock(Name alias) {
this(alias, DATABASECHANGELOGLOCK);
}
/**
* Create a <code>public.databasechangeloglock</code> table reference
*/
public Databasechangeloglock() {
this(DSL.name("databasechangeloglock"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
}
@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));
}
}

View file

@ -1,263 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.public_.tables;
import java.sql.Timestamp;
import java.util.Collection;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Identity;
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.ervu_dashboard.db_beans.public_.Public;
import ru.micord.ervu_dashboard.db_beans.public_.tables.records.InteractionLogRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class InteractionLog extends TableImpl<InteractionLogRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>public.interaction_log</code>
*/
public static final InteractionLog INTERACTION_LOG = new InteractionLog();
/**
* The class holding records for this type
*/
@Override
public Class<InteractionLogRecord> getRecordType() {
return InteractionLogRecord.class;
}
/**
* The column <code>public.interaction_log.id</code>.
*/
public final TableField<InteractionLogRecord, Long> ID = createField(DSL.name("id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column <code>public.interaction_log.sent_date</code>.
*/
public final TableField<InteractionLogRecord, Timestamp> SENT_DATE = createField(DSL.name("sent_date"), SQLDataType.TIMESTAMP(0), this, "");
/**
* The column <code>public.interaction_log.form</code>.
*/
public final TableField<InteractionLogRecord, String> FORM = createField(DSL.name("form"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.sender</code>.
*/
public final TableField<InteractionLogRecord, String> SENDER = createField(DSL.name("sender"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.status</code>.
*/
public final TableField<InteractionLogRecord, String> STATUS = createField(DSL.name("status"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.file_name</code>.
*/
public final TableField<InteractionLogRecord, String> FILE_NAME = createField(DSL.name("file_name"), SQLDataType.CLOB, this, "");
/**
* The column <code>public.interaction_log.records_sent</code>.
*/
public final TableField<InteractionLogRecord, Integer> RECORDS_SENT = createField(DSL.name("records_sent"), SQLDataType.INTEGER, this, "");
/**
* The column <code>public.interaction_log.records_accepted</code>.
*/
public final TableField<InteractionLogRecord, Integer> RECORDS_ACCEPTED = createField(DSL.name("records_accepted"), SQLDataType.INTEGER, this, "");
/**
* The column <code>public.interaction_log.file_id</code>.
*/
public final TableField<InteractionLogRecord, String> FILE_ID = createField(DSL.name("file_id"), SQLDataType.VARCHAR(36), this, "");
/**
* The column <code>public.interaction_log.ervu_id</code>.
*/
public final TableField<InteractionLogRecord, String> ERVU_ID = createField(DSL.name("ervu_id"), SQLDataType.VARCHAR(36), this, "");
private InteractionLog(Name alias, Table<InteractionLogRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private InteractionLog(Name alias, Table<InteractionLogRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>public.interaction_log</code> table reference
*/
public InteractionLog(String alias) {
this(DSL.name(alias), INTERACTION_LOG);
}
/**
* Create an aliased <code>public.interaction_log</code> table reference
*/
public InteractionLog(Name alias) {
this(alias, INTERACTION_LOG);
}
/**
* Create a <code>public.interaction_log</code> table reference
*/
public InteractionLog() {
this(DSL.name("interaction_log"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : Public.PUBLIC;
}
@Override
public Identity<InteractionLogRecord, Long> getIdentity() {
return (Identity<InteractionLogRecord, Long>) super.getIdentity();
}
@Override
public InteractionLog as(String alias) {
return new InteractionLog(DSL.name(alias), this);
}
@Override
public InteractionLog as(Name alias) {
return new InteractionLog(alias, this);
}
@Override
public InteractionLog as(Table<?> alias) {
return new InteractionLog(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public InteractionLog rename(String name) {
return new InteractionLog(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public InteractionLog rename(Name name) {
return new InteractionLog(name, null);
}
/**
* Rename this table
*/
@Override
public InteractionLog rename(Table<?> name) {
return new InteractionLog(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Condition condition) {
return new InteractionLog(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InteractionLog where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public InteractionLog whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,251 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.public_.tables.records;
import java.sql.Timestamp;
import org.jooq.impl.TableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.public_.tables.Databasechangelog;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DatabasechangelogRecord extends TableRecordImpl<DatabasechangelogRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>public.databasechangelog.id</code>.
*/
public void setId(String value) {
set(0, value);
}
/**
* Getter for <code>public.databasechangelog.id</code>.
*/
public String getId() {
return (String) get(0);
}
/**
* Setter for <code>public.databasechangelog.author</code>.
*/
public void setAuthor(String value) {
set(1, value);
}
/**
* Getter for <code>public.databasechangelog.author</code>.
*/
public String getAuthor() {
return (String) get(1);
}
/**
* Setter for <code>public.databasechangelog.filename</code>.
*/
public void setFilename(String value) {
set(2, value);
}
/**
* Getter for <code>public.databasechangelog.filename</code>.
*/
public String getFilename() {
return (String) get(2);
}
/**
* Setter for <code>public.databasechangelog.dateexecuted</code>.
*/
public void setDateexecuted(Timestamp value) {
set(3, value);
}
/**
* Getter for <code>public.databasechangelog.dateexecuted</code>.
*/
public Timestamp getDateexecuted() {
return (Timestamp) get(3);
}
/**
* Setter for <code>public.databasechangelog.orderexecuted</code>.
*/
public void setOrderexecuted(Integer value) {
set(4, value);
}
/**
* Getter for <code>public.databasechangelog.orderexecuted</code>.
*/
public Integer getOrderexecuted() {
return (Integer) get(4);
}
/**
* Setter for <code>public.databasechangelog.exectype</code>.
*/
public void setExectype(String value) {
set(5, value);
}
/**
* Getter for <code>public.databasechangelog.exectype</code>.
*/
public String getExectype() {
return (String) get(5);
}
/**
* Setter for <code>public.databasechangelog.md5sum</code>.
*/
public void setMd5sum(String value) {
set(6, value);
}
/**
* Getter for <code>public.databasechangelog.md5sum</code>.
*/
public String getMd5sum() {
return (String) get(6);
}
/**
* Setter for <code>public.databasechangelog.description</code>.
*/
public void setDescription(String value) {
set(7, value);
}
/**
* Getter for <code>public.databasechangelog.description</code>.
*/
public String getDescription() {
return (String) get(7);
}
/**
* Setter for <code>public.databasechangelog.comments</code>.
*/
public void setComments(String value) {
set(8, value);
}
/**
* Getter for <code>public.databasechangelog.comments</code>.
*/
public String getComments() {
return (String) get(8);
}
/**
* Setter for <code>public.databasechangelog.tag</code>.
*/
public void setTag(String value) {
set(9, value);
}
/**
* Getter for <code>public.databasechangelog.tag</code>.
*/
public String getTag() {
return (String) get(9);
}
/**
* Setter for <code>public.databasechangelog.liquibase</code>.
*/
public void setLiquibase(String value) {
set(10, value);
}
/**
* Getter for <code>public.databasechangelog.liquibase</code>.
*/
public String getLiquibase() {
return (String) get(10);
}
/**
* Setter for <code>public.databasechangelog.contexts</code>.
*/
public void setContexts(String value) {
set(11, value);
}
/**
* Getter for <code>public.databasechangelog.contexts</code>.
*/
public String getContexts() {
return (String) get(11);
}
/**
* Setter for <code>public.databasechangelog.labels</code>.
*/
public void setLabels(String value) {
set(12, value);
}
/**
* Getter for <code>public.databasechangelog.labels</code>.
*/
public String getLabels() {
return (String) get(12);
}
/**
* Setter for <code>public.databasechangelog.deployment_id</code>.
*/
public void setDeploymentId(String value) {
set(13, value);
}
/**
* Getter for <code>public.databasechangelog.deployment_id</code>.
*/
public String getDeploymentId() {
return (String) get(13);
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached DatabasechangelogRecord
*/
public DatabasechangelogRecord() {
super(Databasechangelog.DATABASECHANGELOG);
}
/**
* Create a detached, initialised DatabasechangelogRecord
*/
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);
setId(id);
setAuthor(author);
setFilename(filename);
setDateexecuted(dateexecuted);
setOrderexecuted(orderexecuted);
setExectype(exectype);
setMd5sum(md5sum);
setDescription(description);
setComments(comments);
setTag(tag);
setLiquibase(liquibase);
setContexts(contexts);
setLabels(labels);
setDeploymentId(deploymentId);
resetChangedOnNotNull();
}
}

View file

@ -1,111 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.public_.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.public_.tables.Databasechangeloglock;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class DatabasechangeloglockRecord extends UpdatableRecordImpl<DatabasechangeloglockRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>public.databasechangeloglock.id</code>.
*/
public void setId(Integer value) {
set(0, value);
}
/**
* Getter for <code>public.databasechangeloglock.id</code>.
*/
public Integer getId() {
return (Integer) get(0);
}
/**
* Setter for <code>public.databasechangeloglock.locked</code>.
*/
public void setLocked(Boolean value) {
set(1, value);
}
/**
* Getter for <code>public.databasechangeloglock.locked</code>.
*/
public Boolean getLocked() {
return (Boolean) get(1);
}
/**
* Setter for <code>public.databasechangeloglock.lockgranted</code>.
*/
public void setLockgranted(Timestamp value) {
set(2, value);
}
/**
* Getter for <code>public.databasechangeloglock.lockgranted</code>.
*/
public Timestamp getLockgranted() {
return (Timestamp) get(2);
}
/**
* Setter for <code>public.databasechangeloglock.lockedby</code>.
*/
public void setLockedby(String value) {
set(3, value);
}
/**
* Getter for <code>public.databasechangeloglock.lockedby</code>.
*/
public String getLockedby() {
return (String) get(3);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Integer> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached DatabasechangeloglockRecord
*/
public DatabasechangeloglockRecord() {
super(Databasechangeloglock.DATABASECHANGELOGLOCK);
}
/**
* Create a detached, initialised DatabasechangeloglockRecord
*/
public DatabasechangeloglockRecord(Integer id, Boolean locked, Timestamp lockgranted, String lockedby) {
super(Databasechangeloglock.DATABASECHANGELOGLOCK);
setId(id);
setLocked(locked);
setLockgranted(lockgranted);
setLockedby(lockedby);
resetChangedOnNotNull();
}
}

View file

@ -1,191 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.public_.tables.records;
import java.sql.Timestamp;
import org.jooq.impl.TableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.public_.tables.InteractionLog;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class InteractionLogRecord extends TableRecordImpl<InteractionLogRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>public.interaction_log.id</code>.
*/
public void setId(Long value) {
set(0, value);
}
/**
* Getter for <code>public.interaction_log.id</code>.
*/
public Long getId() {
return (Long) get(0);
}
/**
* Setter for <code>public.interaction_log.sent_date</code>.
*/
public void setSentDate(Timestamp value) {
set(1, value);
}
/**
* Getter for <code>public.interaction_log.sent_date</code>.
*/
public Timestamp getSentDate() {
return (Timestamp) get(1);
}
/**
* Setter for <code>public.interaction_log.form</code>.
*/
public void setForm(String value) {
set(2, value);
}
/**
* Getter for <code>public.interaction_log.form</code>.
*/
public String getForm() {
return (String) get(2);
}
/**
* Setter for <code>public.interaction_log.sender</code>.
*/
public void setSender(String value) {
set(3, value);
}
/**
* Getter for <code>public.interaction_log.sender</code>.
*/
public String getSender() {
return (String) get(3);
}
/**
* Setter for <code>public.interaction_log.status</code>.
*/
public void setStatus(String value) {
set(4, value);
}
/**
* Getter for <code>public.interaction_log.status</code>.
*/
public String getStatus() {
return (String) get(4);
}
/**
* Setter for <code>public.interaction_log.file_name</code>.
*/
public void setFileName(String value) {
set(5, value);
}
/**
* Getter for <code>public.interaction_log.file_name</code>.
*/
public String getFileName() {
return (String) get(5);
}
/**
* Setter for <code>public.interaction_log.records_sent</code>.
*/
public void setRecordsSent(Integer value) {
set(6, value);
}
/**
* Getter for <code>public.interaction_log.records_sent</code>.
*/
public Integer getRecordsSent() {
return (Integer) get(6);
}
/**
* Setter for <code>public.interaction_log.records_accepted</code>.
*/
public void setRecordsAccepted(Integer value) {
set(7, value);
}
/**
* Getter for <code>public.interaction_log.records_accepted</code>.
*/
public Integer getRecordsAccepted() {
return (Integer) get(7);
}
/**
* Setter for <code>public.interaction_log.file_id</code>.
*/
public void setFileId(String value) {
set(8, value);
}
/**
* Getter for <code>public.interaction_log.file_id</code>.
*/
public String getFileId() {
return (String) get(8);
}
/**
* Setter for <code>public.interaction_log.ervu_id</code>.
*/
public void setErvuId(String value) {
set(9, value);
}
/**
* Getter for <code>public.interaction_log.ervu_id</code>.
*/
public String getErvuId() {
return (String) get(9);
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached InteractionLogRecord
*/
public InteractionLogRecord() {
super(InteractionLog.INTERACTION_LOG);
}
/**
* Create a detached, initialised InteractionLogRecord
*/
public InteractionLogRecord(Long id, Timestamp sentDate, String form, String sender, String status, String fileName, Integer recordsSent, Integer recordsAccepted, String fileId, String ervuId) {
super(InteractionLog.INTERACTION_LOG);
setId(id);
setSentDate(sentDate);
setForm(form);
setSender(sender);
setStatus(status);
setFileName(fileName);
setRecordsSent(recordsSent);
setRecordsAccepted(recordsAccepted);
setFileId(fileId);
setErvuId(ervuId);
resetChangedOnNotNull();
}
}

View file

@ -4,14 +4,11 @@
package ru.micord.ervu_dashboard.db_beans.recruitment_campaign;
import org.jooq.ForeignKey;
import org.jooq.TableField;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.Internal;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Recruitment;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.records.RecruitmentRecord;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.tables.Appeals;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.tables.PostponementInfo;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.tables.Subpoenas;
@ -34,10 +31,4 @@ public class Keys {
public static final UniqueKey<AppealsRecord> APPEALS_PKEY = Internal.createUniqueKey(Appeals.APPEALS, DSL.name("appeals_pkey"), new TableField[] { Appeals.APPEALS.RECORDING_DATE, Appeals.APPEALS.SPRING_AUTUMN, Appeals.APPEALS.RECRUITMENT_ID }, true);
public static final UniqueKey<PostponementInfoRecord> PK_POSTPONEMENT_INFO = Internal.createUniqueKey(PostponementInfo.POSTPONEMENT_INFO, DSL.name("pk_postponement_info"), new TableField[] { PostponementInfo.POSTPONEMENT_INFO.POSTPONEMENT_INFO_ID }, true);
public static final UniqueKey<SubpoenasRecord> SUBPOENAS_PKEY = Internal.createUniqueKey(Subpoenas.SUBPOENAS, DSL.name("subpoenas_pkey"), new TableField[] { Subpoenas.SUBPOENAS.SPRING_AUTUMN, Subpoenas.SUBPOENAS.RECRUITMENT_ID, Subpoenas.SUBPOENAS.RECORDING_DATE }, true);
// -------------------------------------------------------------------------
// FOREIGN KEY definitions
// -------------------------------------------------------------------------
public static final ForeignKey<PostponementInfoRecord, RecruitmentRecord> POSTPONEMENT_INFO__POSTPONEMENT_INFO_FK1 = Internal.createForeignKey(PostponementInfo.POSTPONEMENT_INFO, DSL.name("postponement_info_fk1"), new TableField[] { PostponementInfo.POSTPONEMENT_INFO.RECRUITMENT_ID }, ru.micord.ervu_dashboard.db_beans.ervu_dashboard.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true);
}

View file

@ -6,20 +6,14 @@ package ru.micord.ervu_dashboard.db_beans.recruitment_campaign.tables;
import java.math.BigDecimal;
import java.sql.Date;
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;
@ -32,7 +26,6 @@ import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
import ru.micord.ervu_dashboard.db_beans.ervu_dashboard.tables.Recruitment.RecruitmentPath;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.Keys;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.RecruitmentCampaign;
import ru.micord.ervu_dashboard.db_beans.recruitment_campaign.tables.records.PostponementInfoRecord;
@ -152,37 +145,6 @@ public class PostponementInfo extends TableImpl<PostponementInfoRecord> {
this(DSL.name("postponement_info"), null);
}
public <O extends Record> PostponementInfo(Table<O> path, ForeignKey<O, PostponementInfoRecord> childPath, InverseForeignKey<O, PostponementInfoRecord> parentPath) {
super(path, childPath, parentPath, POSTPONEMENT_INFO);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class PostponementInfoPath extends PostponementInfo implements Path<PostponementInfoRecord> {
public <O extends Record> PostponementInfoPath(Table<O> path, ForeignKey<O, PostponementInfoRecord> childPath, InverseForeignKey<O, PostponementInfoRecord> parentPath) {
super(path, childPath, parentPath);
}
private PostponementInfoPath(Name alias, Table<PostponementInfoRecord> aliased) {
super(alias, aliased);
}
@Override
public PostponementInfoPath as(String alias) {
return new PostponementInfoPath(DSL.name(alias), this);
}
@Override
public PostponementInfoPath as(Name alias) {
return new PostponementInfoPath(alias, this);
}
@Override
public PostponementInfoPath as(Table<?> alias) {
return new PostponementInfoPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : RecruitmentCampaign.RECRUITMENT_CAMPAIGN;
@ -198,24 +160,6 @@ public class PostponementInfo extends TableImpl<PostponementInfoRecord> {
return Keys.PK_POSTPONEMENT_INFO;
}
@Override
public List<ForeignKey<PostponementInfoRecord, ?>> getReferences() {
return Arrays.asList(Keys.POSTPONEMENT_INFO__POSTPONEMENT_INFO_FK1);
}
private transient RecruitmentPath _recruitment;
/**
* Get the implicit join path to the <code>ervu_dashboard.recruitment</code>
* table.
*/
public RecruitmentPath recruitment() {
if (_recruitment == null)
_recruitment = new RecruitmentPath(this, Keys.POSTPONEMENT_INFO__POSTPONEMENT_INFO_FK1, null);
return _recruitment;
}
@Override
public PostponementInfo as(String alias) {
return new PostponementInfo(DSL.name(alias), this);

View file

@ -1,86 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security;
import org.jooq.ForeignKey;
import org.jooq.TableField;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.Internal;
import ru.micord.ervu_dashboard.db_beans.security.tables.AccessLevel;
import ru.micord.ervu_dashboard.db_beans.security.tables.Authority;
import ru.micord.ervu_dashboard.db_beans.security.tables.EsiaUser;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserAccountUserGroup;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserGroupUserRole;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserRoleAuthority;
import ru.micord.ervu_dashboard.db_beans.security.tables.OrgUnit;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccountRefreshToken;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.AccessLevelRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.AuthorityRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.EsiaUserRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.LinkUserAccountUserGroupRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.LinkUserGroupUserRoleRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.LinkUserRoleAuthorityRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.OrgUnitRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserAccountRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserAccountRefreshTokenRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserGroupRecord;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserRoleRecord;
/**
* A class modelling foreign key relationships and constraints of tables in
* security.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Keys {
// -------------------------------------------------------------------------
// UNIQUE and PRIMARY KEY definitions
// -------------------------------------------------------------------------
public static final UniqueKey<AccessLevelRecord> PK_ACCESS_LEVEL = Internal.createUniqueKey(AccessLevel.ACCESS_LEVEL, DSL.name("pk_access_level"), new TableField[] { AccessLevel.ACCESS_LEVEL.ACCESS_LEVEL_ID }, true);
public static final UniqueKey<AccessLevelRecord> UNI_ACCESS_LEVEL = Internal.createUniqueKey(AccessLevel.ACCESS_LEVEL, DSL.name("uni_access_level"), new TableField[] { AccessLevel.ACCESS_LEVEL.LEVEL }, true);
public static final UniqueKey<AuthorityRecord> PK_AUTHORITY = Internal.createUniqueKey(Authority.AUTHORITY, DSL.name("pk_authority"), new TableField[] { Authority.AUTHORITY.AUTHORITY_ID }, true);
public static final UniqueKey<AuthorityRecord> UNI_AUTHORITY_NAME = Internal.createUniqueKey(Authority.AUTHORITY, DSL.name("uni_authority_name"), new TableField[] { Authority.AUTHORITY.NAME }, true);
public static final UniqueKey<EsiaUserRecord> PK_ESIA_USER = Internal.createUniqueKey(EsiaUser.ESIA_USER, DSL.name("pk_esia_user"), new TableField[] { EsiaUser.ESIA_USER.ESIA_USER_ID }, true);
public static final UniqueKey<EsiaUserRecord> UNI_ESIA_USER1 = Internal.createUniqueKey(EsiaUser.ESIA_USER, DSL.name("uni_esia_user1"), new TableField[] { EsiaUser.ESIA_USER.USER_ACCOUNT_ID }, true);
public static final UniqueKey<EsiaUserRecord> UNI_ESIA_USER2 = Internal.createUniqueKey(EsiaUser.ESIA_USER, DSL.name("uni_esia_user2"), new TableField[] { EsiaUser.ESIA_USER.PERSON_CONTACT_ID }, true);
public static final UniqueKey<LinkUserAccountUserGroupRecord> PK_USER_GROUP = Internal.createUniqueKey(LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP, DSL.name("pk_user_group"), new TableField[] { LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP.LINK_USER_ACCOUNT_USER_GROUP_ID }, true);
public static final UniqueKey<LinkUserAccountUserGroupRecord> UNI_USER_GROUP = Internal.createUniqueKey(LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP, DSL.name("uni_user_group"), new TableField[] { LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP.USER_ACCOUNT_ID, LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP.USER_GROUP_ID }, true);
public static final UniqueKey<LinkUserGroupUserRoleRecord> PK_GROUP_ROLE = Internal.createUniqueKey(LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE, DSL.name("pk_group_role"), new TableField[] { LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE.LINK_USER_GROUP_USER_ROLE_ID }, true);
public static final UniqueKey<LinkUserGroupUserRoleRecord> UNI_GROUP_ROLE = Internal.createUniqueKey(LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE, DSL.name("uni_group_role"), new TableField[] { LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE.USER_GROUP_ID, LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE.USER_ROLE_ID }, true);
public static final UniqueKey<LinkUserRoleAuthorityRecord> PK_ROLE_AUTHORITY = Internal.createUniqueKey(LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY, DSL.name("pk_role_authority"), new TableField[] { LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY.USER_ROLE_AUTHORITY_ID }, true);
public static final UniqueKey<LinkUserRoleAuthorityRecord> UNI_ROLE_AUTHORITY = Internal.createUniqueKey(LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY, DSL.name("uni_role_authority"), new TableField[] { LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY.USER_ROLE_ID, LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY.AUTHORITY_ID }, true);
public static final UniqueKey<OrgUnitRecord> ORG_UNIT_CODE_KEY = Internal.createUniqueKey(OrgUnit.ORG_UNIT, DSL.name("org_unit_code_key"), new TableField[] { OrgUnit.ORG_UNIT.CODE }, true);
public static final UniqueKey<OrgUnitRecord> PK_ORG_UNIT = Internal.createUniqueKey(OrgUnit.ORG_UNIT, DSL.name("pk_org_unit"), new TableField[] { OrgUnit.ORG_UNIT.ID }, true);
public static final UniqueKey<UserAccountRecord> PK_USER = Internal.createUniqueKey(UserAccount.USER_ACCOUNT, DSL.name("pk_user"), new TableField[] { UserAccount.USER_ACCOUNT.USER_ACCOUNT_ID }, true);
public static final UniqueKey<UserAccountRecord> USER_ACCOUNT_USERNAME_UNIQUE = Internal.createUniqueKey(UserAccount.USER_ACCOUNT, DSL.name("user_account_username_unique"), new TableField[] { UserAccount.USER_ACCOUNT.USERNAME }, true);
public static final UniqueKey<UserAccountRefreshTokenRecord> PK_USER_ACCOUNT_REFRESH_TOKEN = Internal.createUniqueKey(UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN, DSL.name("pk_user_account_refresh_token"), new TableField[] { UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN.USER_ACCOUNT_REFRESH_TOKEN_ID }, true);
public static final UniqueKey<UserGroupRecord> PK_GROUP = Internal.createUniqueKey(UserGroup.USER_GROUP, DSL.name("pk_group"), new TableField[] { UserGroup.USER_GROUP.USER_GROUP_ID }, true);
public static final UniqueKey<UserGroupRecord> UNI_GROUP_NAME = Internal.createUniqueKey(UserGroup.USER_GROUP, DSL.name("uni_group_name"), new TableField[] { UserGroup.USER_GROUP.NAME }, true);
public static final UniqueKey<UserRoleRecord> PK_ROLE = Internal.createUniqueKey(UserRole.USER_ROLE, DSL.name("pk_role"), new TableField[] { UserRole.USER_ROLE.USER_ROLE_ID }, true);
public static final UniqueKey<UserRoleRecord> UNI_ROLE_NAME = Internal.createUniqueKey(UserRole.USER_ROLE, DSL.name("uni_role_name"), new TableField[] { UserRole.USER_ROLE.NAME }, true);
// -------------------------------------------------------------------------
// FOREIGN KEY definitions
// -------------------------------------------------------------------------
public static final ForeignKey<EsiaUserRecord, UserAccountRecord> ESIA_USER__FK_ESIA_USER1 = Internal.createForeignKey(EsiaUser.ESIA_USER, DSL.name("fk_esia_user1"), new TableField[] { EsiaUser.ESIA_USER.USER_ACCOUNT_ID }, Keys.PK_USER, new TableField[] { UserAccount.USER_ACCOUNT.USER_ACCOUNT_ID }, true);
public static final ForeignKey<LinkUserAccountUserGroupRecord, UserGroupRecord> LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_GROUP = Internal.createForeignKey(LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP, DSL.name("fk_user_group_group"), new TableField[] { LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP.USER_GROUP_ID }, Keys.PK_GROUP, new TableField[] { UserGroup.USER_GROUP.USER_GROUP_ID }, true);
public static final ForeignKey<LinkUserAccountUserGroupRecord, UserAccountRecord> LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_USER = Internal.createForeignKey(LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP, DSL.name("fk_user_group_user"), new TableField[] { LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP.USER_ACCOUNT_ID }, Keys.PK_USER, new TableField[] { UserAccount.USER_ACCOUNT.USER_ACCOUNT_ID }, true);
public static final ForeignKey<LinkUserGroupUserRoleRecord, UserGroupRecord> LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_GROUP = Internal.createForeignKey(LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE, DSL.name("fk_group_role_group"), new TableField[] { LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE.USER_GROUP_ID }, Keys.PK_GROUP, new TableField[] { UserGroup.USER_GROUP.USER_GROUP_ID }, true);
public static final ForeignKey<LinkUserGroupUserRoleRecord, UserRoleRecord> LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_ROLE = Internal.createForeignKey(LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE, DSL.name("fk_group_role_role"), new TableField[] { LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE.USER_ROLE_ID }, Keys.PK_ROLE, new TableField[] { UserRole.USER_ROLE.USER_ROLE_ID }, true);
public static final ForeignKey<LinkUserRoleAuthorityRecord, AuthorityRecord> LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_AUTHORITY = Internal.createForeignKey(LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY, DSL.name("fk_role_authority_authority"), new TableField[] { LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY.AUTHORITY_ID }, Keys.PK_AUTHORITY, new TableField[] { Authority.AUTHORITY.AUTHORITY_ID }, true);
public static final ForeignKey<LinkUserRoleAuthorityRecord, UserRoleRecord> LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_ROLE = Internal.createForeignKey(LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY, DSL.name("fk_role_authority_role"), new TableField[] { LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY.USER_ROLE_ID }, Keys.PK_ROLE, new TableField[] { UserRole.USER_ROLE.USER_ROLE_ID }, true);
public static final ForeignKey<OrgUnitRecord, OrgUnitRecord> ORG_UNIT__FK_ORG_UNIT_PARENT_ID = Internal.createForeignKey(OrgUnit.ORG_UNIT, DSL.name("fk_org_unit_parent_id"), new TableField[] { OrgUnit.ORG_UNIT.PARENT_ID }, Keys.PK_ORG_UNIT, new TableField[] { OrgUnit.ORG_UNIT.ID }, true);
public static final ForeignKey<UserAccountRecord, OrgUnitRecord> USER_ACCOUNT__FK_USER_ORG_UNIT_ID = Internal.createForeignKey(UserAccount.USER_ACCOUNT, DSL.name("fk_user_org_unit_id"), new TableField[] { UserAccount.USER_ACCOUNT.ORG_UNIT_ID }, Keys.PK_ORG_UNIT, new TableField[] { OrgUnit.ORG_UNIT.ID }, true);
public static final ForeignKey<UserAccountRefreshTokenRecord, UserAccountRecord> USER_ACCOUNT_REFRESH_TOKEN__FK_USER_ACCOUNT_REFRESH_TOKEN = Internal.createForeignKey(UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN, DSL.name("fk_user_account_refresh_token"), new TableField[] { UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN.USER_ACCOUNT_ID }, Keys.PK_USER, new TableField[] { UserAccount.USER_ACCOUNT.USER_ACCOUNT_ID }, true);
public static final ForeignKey<UserGroupRecord, AccessLevelRecord> USER_GROUP__FK_USER_GROUP_ACCESS_LEVEL = Internal.createForeignKey(UserGroup.USER_GROUP, DSL.name("fk_user_group_access_level"), new TableField[] { UserGroup.USER_GROUP.ACCESS_LEVEL_ID }, Keys.PK_ACCESS_LEVEL, new TableField[] { AccessLevel.ACCESS_LEVEL.ACCESS_LEVEL_ID }, true);
}

View file

@ -1,125 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security;
import java.util.Arrays;
import java.util.List;
import org.jooq.Catalog;
import org.jooq.Table;
import org.jooq.impl.SchemaImpl;
import ru.micord.ervu_dashboard.db_beans.DefaultCatalog;
import ru.micord.ervu_dashboard.db_beans.security.tables.AccessLevel;
import ru.micord.ervu_dashboard.db_beans.security.tables.Authority;
import ru.micord.ervu_dashboard.db_beans.security.tables.EsiaUser;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserAccountUserGroup;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserGroupUserRole;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserRoleAuthority;
import ru.micord.ervu_dashboard.db_beans.security.tables.OrgUnit;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccountRefreshToken;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Security extends SchemaImpl {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security</code>
*/
public static final Security SECURITY = new Security();
/**
* The table <code>security.access_level</code>.
*/
public final AccessLevel ACCESS_LEVEL = AccessLevel.ACCESS_LEVEL;
/**
* The table <code>security.authority</code>.
*/
public final Authority AUTHORITY = Authority.AUTHORITY;
/**
* The table <code>security.esia_user</code>.
*/
public final EsiaUser ESIA_USER = EsiaUser.ESIA_USER;
/**
* The table <code>security.link_user_account_user_group</code>.
*/
public final LinkUserAccountUserGroup LINK_USER_ACCOUNT_USER_GROUP = LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP;
/**
* The table <code>security.link_user_group_user_role</code>.
*/
public final LinkUserGroupUserRole LINK_USER_GROUP_USER_ROLE = LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE;
/**
* The table <code>security.link_user_role_authority</code>.
*/
public final LinkUserRoleAuthority LINK_USER_ROLE_AUTHORITY = LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY;
/**
* The table <code>security.org_unit</code>.
*/
public final OrgUnit ORG_UNIT = OrgUnit.ORG_UNIT;
/**
* The table <code>security.user_account</code>.
*/
public final UserAccount USER_ACCOUNT = UserAccount.USER_ACCOUNT;
/**
* The table <code>security.user_account_refresh_token</code>.
*/
public final UserAccountRefreshToken USER_ACCOUNT_REFRESH_TOKEN = UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN;
/**
* The table <code>security.user_group</code>.
*/
public final UserGroup USER_GROUP = UserGroup.USER_GROUP;
/**
* The table <code>security.user_role</code>.
*/
public final UserRole USER_ROLE = UserRole.USER_ROLE;
/**
* No further instances allowed
*/
private Security() {
super("security", null);
}
@Override
public Catalog getCatalog() {
return DefaultCatalog.DEFAULT_CATALOG;
}
@Override
public final List<Table<?>> getTables() {
return Arrays.asList(
AccessLevel.ACCESS_LEVEL,
Authority.AUTHORITY,
EsiaUser.ESIA_USER,
LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP,
LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE,
LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY,
OrgUnit.ORG_UNIT,
UserAccount.USER_ACCOUNT,
UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN,
UserGroup.USER_GROUP,
UserRole.USER_ROLE
);
}
}

View file

@ -1,80 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security;
import ru.micord.ervu_dashboard.db_beans.security.tables.AccessLevel;
import ru.micord.ervu_dashboard.db_beans.security.tables.Authority;
import ru.micord.ervu_dashboard.db_beans.security.tables.EsiaUser;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserAccountUserGroup;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserGroupUserRole;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserRoleAuthority;
import ru.micord.ervu_dashboard.db_beans.security.tables.OrgUnit;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccountRefreshToken;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole;
/**
* Convenience access to all tables in security.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Tables {
/**
* The table <code>security.access_level</code>.
*/
public static final AccessLevel ACCESS_LEVEL = AccessLevel.ACCESS_LEVEL;
/**
* The table <code>security.authority</code>.
*/
public static final Authority AUTHORITY = Authority.AUTHORITY;
/**
* The table <code>security.esia_user</code>.
*/
public static final EsiaUser ESIA_USER = EsiaUser.ESIA_USER;
/**
* The table <code>security.link_user_account_user_group</code>.
*/
public static final LinkUserAccountUserGroup LINK_USER_ACCOUNT_USER_GROUP = LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP;
/**
* The table <code>security.link_user_group_user_role</code>.
*/
public static final LinkUserGroupUserRole LINK_USER_GROUP_USER_ROLE = LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE;
/**
* The table <code>security.link_user_role_authority</code>.
*/
public static final LinkUserRoleAuthority LINK_USER_ROLE_AUTHORITY = LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY;
/**
* The table <code>security.org_unit</code>.
*/
public static final OrgUnit ORG_UNIT = OrgUnit.ORG_UNIT;
/**
* The table <code>security.user_account</code>.
*/
public static final UserAccount USER_ACCOUNT = UserAccount.USER_ACCOUNT;
/**
* The table <code>security.user_account_refresh_token</code>.
*/
public static final UserAccountRefreshToken USER_ACCOUNT_REFRESH_TOKEN = UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN;
/**
* The table <code>security.user_group</code>.
*/
public static final UserGroup USER_GROUP = UserGroup.USER_GROUP;
/**
* The table <code>security.user_role</code>.
*/
public static final UserRole USER_ROLE = UserRole.USER_ROLE;
}

View file

@ -1,284 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup.UserGroupPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.AccessLevelRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class AccessLevel extends TableImpl<AccessLevelRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.access_level</code>
*/
public static final AccessLevel ACCESS_LEVEL = new AccessLevel();
/**
* The class holding records for this type
*/
@Override
public Class<AccessLevelRecord> getRecordType() {
return AccessLevelRecord.class;
}
/**
* The column <code>security.access_level.access_level_id</code>.
*/
public final TableField<AccessLevelRecord, String> ACCESS_LEVEL_ID = createField(DSL.name("access_level_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.access_level.level</code>.
*/
public final TableField<AccessLevelRecord, Short> LEVEL = createField(DSL.name("level"), SQLDataType.SMALLINT.nullable(false), this, "");
/**
* The column <code>security.access_level.description</code>.
*/
public final TableField<AccessLevelRecord, String> DESCRIPTION = createField(DSL.name("description"), SQLDataType.VARCHAR(256).nullable(false), this, "");
private AccessLevel(Name alias, Table<AccessLevelRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private AccessLevel(Name alias, Table<AccessLevelRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.access_level</code> table reference
*/
public AccessLevel(String alias) {
this(DSL.name(alias), ACCESS_LEVEL);
}
/**
* Create an aliased <code>security.access_level</code> table reference
*/
public AccessLevel(Name alias) {
this(alias, ACCESS_LEVEL);
}
/**
* Create a <code>security.access_level</code> table reference
*/
public AccessLevel() {
this(DSL.name("access_level"), null);
}
public <O extends Record> AccessLevel(Table<O> path, ForeignKey<O, AccessLevelRecord> childPath, InverseForeignKey<O, AccessLevelRecord> parentPath) {
super(path, childPath, parentPath, ACCESS_LEVEL);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class AccessLevelPath extends AccessLevel implements Path<AccessLevelRecord> {
public <O extends Record> AccessLevelPath(Table<O> path, ForeignKey<O, AccessLevelRecord> childPath, InverseForeignKey<O, AccessLevelRecord> parentPath) {
super(path, childPath, parentPath);
}
private AccessLevelPath(Name alias, Table<AccessLevelRecord> aliased) {
super(alias, aliased);
}
@Override
public AccessLevelPath as(String alias) {
return new AccessLevelPath(DSL.name(alias), this);
}
@Override
public AccessLevelPath as(Name alias) {
return new AccessLevelPath(alias, this);
}
@Override
public AccessLevelPath as(Table<?> alias) {
return new AccessLevelPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<AccessLevelRecord> getPrimaryKey() {
return Keys.PK_ACCESS_LEVEL;
}
@Override
public List<UniqueKey<AccessLevelRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_ACCESS_LEVEL);
}
private transient UserGroupPath _userGroup;
/**
* Get the implicit to-many join path to the
* <code>security.user_group</code> table
*/
public UserGroupPath userGroup() {
if (_userGroup == null)
_userGroup = new UserGroupPath(this, null, Keys.USER_GROUP__FK_USER_GROUP_ACCESS_LEVEL.getInverseKey());
return _userGroup;
}
@Override
public AccessLevel as(String alias) {
return new AccessLevel(DSL.name(alias), this);
}
@Override
public AccessLevel as(Name alias) {
return new AccessLevel(alias, this);
}
@Override
public AccessLevel as(Table<?> alias) {
return new AccessLevel(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public AccessLevel rename(String name) {
return new AccessLevel(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public AccessLevel rename(Name name) {
return new AccessLevel(name, null);
}
/**
* Rename this table
*/
@Override
public AccessLevel rename(Table<?> name) {
return new AccessLevel(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public AccessLevel where(Condition condition) {
return new AccessLevel(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public AccessLevel where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public AccessLevel where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public AccessLevel where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AccessLevel where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AccessLevel where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AccessLevel where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public AccessLevel where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public AccessLevel whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public AccessLevel whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,294 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserRoleAuthority.LinkUserRoleAuthorityPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole.UserRolePath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.AuthorityRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Authority extends TableImpl<AuthorityRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.authority</code>
*/
public static final Authority AUTHORITY = new Authority();
/**
* The class holding records for this type
*/
@Override
public Class<AuthorityRecord> getRecordType() {
return AuthorityRecord.class;
}
/**
* The column <code>security.authority.authority_id</code>.
*/
public final TableField<AuthorityRecord, String> AUTHORITY_ID = createField(DSL.name("authority_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.authority.name</code>.
*/
public final TableField<AuthorityRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column <code>security.authority.created</code>.
*/
public final TableField<AuthorityRecord, Timestamp> CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
private Authority(Name alias, Table<AuthorityRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private Authority(Name alias, Table<AuthorityRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.authority</code> table reference
*/
public Authority(String alias) {
this(DSL.name(alias), AUTHORITY);
}
/**
* Create an aliased <code>security.authority</code> table reference
*/
public Authority(Name alias) {
this(alias, AUTHORITY);
}
/**
* Create a <code>security.authority</code> table reference
*/
public Authority() {
this(DSL.name("authority"), null);
}
public <O extends Record> Authority(Table<O> path, ForeignKey<O, AuthorityRecord> childPath, InverseForeignKey<O, AuthorityRecord> parentPath) {
super(path, childPath, parentPath, AUTHORITY);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class AuthorityPath extends Authority implements Path<AuthorityRecord> {
public <O extends Record> AuthorityPath(Table<O> path, ForeignKey<O, AuthorityRecord> childPath, InverseForeignKey<O, AuthorityRecord> parentPath) {
super(path, childPath, parentPath);
}
private AuthorityPath(Name alias, Table<AuthorityRecord> aliased) {
super(alias, aliased);
}
@Override
public AuthorityPath as(String alias) {
return new AuthorityPath(DSL.name(alias), this);
}
@Override
public AuthorityPath as(Name alias) {
return new AuthorityPath(alias, this);
}
@Override
public AuthorityPath as(Table<?> alias) {
return new AuthorityPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<AuthorityRecord> getPrimaryKey() {
return Keys.PK_AUTHORITY;
}
@Override
public List<UniqueKey<AuthorityRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_AUTHORITY_NAME);
}
private transient LinkUserRoleAuthorityPath _linkUserRoleAuthority;
/**
* Get the implicit to-many join path to the
* <code>security.link_user_role_authority</code> table
*/
public LinkUserRoleAuthorityPath linkUserRoleAuthority() {
if (_linkUserRoleAuthority == null)
_linkUserRoleAuthority = new LinkUserRoleAuthorityPath(this, null, Keys.LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_AUTHORITY.getInverseKey());
return _linkUserRoleAuthority;
}
/**
* Get the implicit many-to-many join path to the
* <code>security.user_role</code> table
*/
public UserRolePath userRole() {
return linkUserRoleAuthority().userRole();
}
@Override
public Authority as(String alias) {
return new Authority(DSL.name(alias), this);
}
@Override
public Authority as(Name alias) {
return new Authority(alias, this);
}
@Override
public Authority as(Table<?> alias) {
return new Authority(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public Authority rename(String name) {
return new Authority(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public Authority rename(Name name) {
return new Authority(name, null);
}
/**
* Rename this table
*/
@Override
public Authority rename(Table<?> name) {
return new Authority(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public Authority where(Condition condition) {
return new Authority(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public Authority where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public Authority where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public Authority where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Authority where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Authority where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Authority where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public Authority where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public Authority whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public Authority whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,289 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount.UserAccountPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.EsiaUserRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class EsiaUser extends TableImpl<EsiaUserRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.esia_user</code>
*/
public static final EsiaUser ESIA_USER = new EsiaUser();
/**
* The class holding records for this type
*/
@Override
public Class<EsiaUserRecord> getRecordType() {
return EsiaUserRecord.class;
}
/**
* The column <code>security.esia_user.esia_user_id</code>.
*/
public final TableField<EsiaUserRecord, String> ESIA_USER_ID = createField(DSL.name("esia_user_id"), SQLDataType.VARCHAR(36).nullable(false), this, "");
/**
* The column <code>security.esia_user.user_account_id</code>.
*/
public final TableField<EsiaUserRecord, String> USER_ACCOUNT_ID = createField(DSL.name("user_account_id"), SQLDataType.VARCHAR(36).nullable(false), this, "");
/**
* The column <code>security.esia_user.person_contact_id</code>.
*/
public final TableField<EsiaUserRecord, Long> PERSON_CONTACT_ID = createField(DSL.name("person_contact_id"), SQLDataType.BIGINT.nullable(false), this, "");
private EsiaUser(Name alias, Table<EsiaUserRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private EsiaUser(Name alias, Table<EsiaUserRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.esia_user</code> table reference
*/
public EsiaUser(String alias) {
this(DSL.name(alias), ESIA_USER);
}
/**
* Create an aliased <code>security.esia_user</code> table reference
*/
public EsiaUser(Name alias) {
this(alias, ESIA_USER);
}
/**
* Create a <code>security.esia_user</code> table reference
*/
public EsiaUser() {
this(DSL.name("esia_user"), null);
}
public <O extends Record> EsiaUser(Table<O> path, ForeignKey<O, EsiaUserRecord> childPath, InverseForeignKey<O, EsiaUserRecord> parentPath) {
super(path, childPath, parentPath, ESIA_USER);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class EsiaUserPath extends EsiaUser implements Path<EsiaUserRecord> {
public <O extends Record> EsiaUserPath(Table<O> path, ForeignKey<O, EsiaUserRecord> childPath, InverseForeignKey<O, EsiaUserRecord> parentPath) {
super(path, childPath, parentPath);
}
private EsiaUserPath(Name alias, Table<EsiaUserRecord> aliased) {
super(alias, aliased);
}
@Override
public EsiaUserPath as(String alias) {
return new EsiaUserPath(DSL.name(alias), this);
}
@Override
public EsiaUserPath as(Name alias) {
return new EsiaUserPath(alias, this);
}
@Override
public EsiaUserPath as(Table<?> alias) {
return new EsiaUserPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<EsiaUserRecord> getPrimaryKey() {
return Keys.PK_ESIA_USER;
}
@Override
public List<UniqueKey<EsiaUserRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_ESIA_USER1, Keys.UNI_ESIA_USER2);
}
@Override
public List<ForeignKey<EsiaUserRecord, ?>> getReferences() {
return Arrays.asList(Keys.ESIA_USER__FK_ESIA_USER1);
}
private transient UserAccountPath _userAccount;
/**
* Get the implicit join path to the <code>security.user_account</code>
* table.
*/
public UserAccountPath userAccount() {
if (_userAccount == null)
_userAccount = new UserAccountPath(this, Keys.ESIA_USER__FK_ESIA_USER1, null);
return _userAccount;
}
@Override
public EsiaUser as(String alias) {
return new EsiaUser(DSL.name(alias), this);
}
@Override
public EsiaUser as(Name alias) {
return new EsiaUser(alias, this);
}
@Override
public EsiaUser as(Table<?> alias) {
return new EsiaUser(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public EsiaUser rename(String name) {
return new EsiaUser(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public EsiaUser rename(Name name) {
return new EsiaUser(name, null);
}
/**
* Rename this table
*/
@Override
public EsiaUser rename(Table<?> name) {
return new EsiaUser(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public EsiaUser where(Condition condition) {
return new EsiaUser(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public EsiaUser where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public EsiaUser where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public EsiaUser where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EsiaUser where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EsiaUser where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EsiaUser where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public EsiaUser where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public EsiaUser whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public EsiaUser whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,315 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount.UserAccountPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup.UserGroupPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.LinkUserAccountUserGroupRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class LinkUserAccountUserGroup extends TableImpl<LinkUserAccountUserGroupRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of
* <code>security.link_user_account_user_group</code>
*/
public static final LinkUserAccountUserGroup LINK_USER_ACCOUNT_USER_GROUP = new LinkUserAccountUserGroup();
/**
* The class holding records for this type
*/
@Override
public Class<LinkUserAccountUserGroupRecord> getRecordType() {
return LinkUserAccountUserGroupRecord.class;
}
/**
* The column
* <code>security.link_user_account_user_group.link_user_account_user_group_id</code>.
*/
public final TableField<LinkUserAccountUserGroupRecord, String> LINK_USER_ACCOUNT_USER_GROUP_ID = createField(DSL.name("link_user_account_user_group_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column
* <code>security.link_user_account_user_group.user_account_id</code>.
*/
public final TableField<LinkUserAccountUserGroupRecord, String> USER_ACCOUNT_ID = createField(DSL.name("user_account_id"), SQLDataType.VARCHAR(150).nullable(false), this, "");
/**
* The column
* <code>security.link_user_account_user_group.user_group_id</code>.
*/
public final TableField<LinkUserAccountUserGroupRecord, String> USER_GROUP_ID = createField(DSL.name("user_group_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.link_user_account_user_group.created</code>.
*/
public final TableField<LinkUserAccountUserGroupRecord, Timestamp> CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
private LinkUserAccountUserGroup(Name alias, Table<LinkUserAccountUserGroupRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private LinkUserAccountUserGroup(Name alias, Table<LinkUserAccountUserGroupRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.link_user_account_user_group</code>
* table reference
*/
public LinkUserAccountUserGroup(String alias) {
this(DSL.name(alias), LINK_USER_ACCOUNT_USER_GROUP);
}
/**
* Create an aliased <code>security.link_user_account_user_group</code>
* table reference
*/
public LinkUserAccountUserGroup(Name alias) {
this(alias, LINK_USER_ACCOUNT_USER_GROUP);
}
/**
* Create a <code>security.link_user_account_user_group</code> table
* reference
*/
public LinkUserAccountUserGroup() {
this(DSL.name("link_user_account_user_group"), null);
}
public <O extends Record> LinkUserAccountUserGroup(Table<O> path, ForeignKey<O, LinkUserAccountUserGroupRecord> childPath, InverseForeignKey<O, LinkUserAccountUserGroupRecord> parentPath) {
super(path, childPath, parentPath, LINK_USER_ACCOUNT_USER_GROUP);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class LinkUserAccountUserGroupPath extends LinkUserAccountUserGroup implements Path<LinkUserAccountUserGroupRecord> {
public <O extends Record> LinkUserAccountUserGroupPath(Table<O> path, ForeignKey<O, LinkUserAccountUserGroupRecord> childPath, InverseForeignKey<O, LinkUserAccountUserGroupRecord> parentPath) {
super(path, childPath, parentPath);
}
private LinkUserAccountUserGroupPath(Name alias, Table<LinkUserAccountUserGroupRecord> aliased) {
super(alias, aliased);
}
@Override
public LinkUserAccountUserGroupPath as(String alias) {
return new LinkUserAccountUserGroupPath(DSL.name(alias), this);
}
@Override
public LinkUserAccountUserGroupPath as(Name alias) {
return new LinkUserAccountUserGroupPath(alias, this);
}
@Override
public LinkUserAccountUserGroupPath as(Table<?> alias) {
return new LinkUserAccountUserGroupPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<LinkUserAccountUserGroupRecord> getPrimaryKey() {
return Keys.PK_USER_GROUP;
}
@Override
public List<UniqueKey<LinkUserAccountUserGroupRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_USER_GROUP);
}
@Override
public List<ForeignKey<LinkUserAccountUserGroupRecord, ?>> getReferences() {
return Arrays.asList(Keys.LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_USER, Keys.LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_GROUP);
}
private transient UserAccountPath _userAccount;
/**
* Get the implicit join path to the <code>security.user_account</code>
* table.
*/
public UserAccountPath userAccount() {
if (_userAccount == null)
_userAccount = new UserAccountPath(this, Keys.LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_USER, null);
return _userAccount;
}
private transient UserGroupPath _userGroup;
/**
* Get the implicit join path to the <code>security.user_group</code> table.
*/
public UserGroupPath userGroup() {
if (_userGroup == null)
_userGroup = new UserGroupPath(this, Keys.LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_GROUP, null);
return _userGroup;
}
@Override
public LinkUserAccountUserGroup as(String alias) {
return new LinkUserAccountUserGroup(DSL.name(alias), this);
}
@Override
public LinkUserAccountUserGroup as(Name alias) {
return new LinkUserAccountUserGroup(alias, this);
}
@Override
public LinkUserAccountUserGroup as(Table<?> alias) {
return new LinkUserAccountUserGroup(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public LinkUserAccountUserGroup rename(String name) {
return new LinkUserAccountUserGroup(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public LinkUserAccountUserGroup rename(Name name) {
return new LinkUserAccountUserGroup(name, null);
}
/**
* Rename this table
*/
@Override
public LinkUserAccountUserGroup rename(Table<?> name) {
return new LinkUserAccountUserGroup(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserAccountUserGroup where(Condition condition) {
return new LinkUserAccountUserGroup(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserAccountUserGroup where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserAccountUserGroup where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserAccountUserGroup where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserAccountUserGroup where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserAccountUserGroup where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserAccountUserGroup where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserAccountUserGroup where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserAccountUserGroup whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserAccountUserGroup whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,310 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup.UserGroupPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole.UserRolePath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.LinkUserGroupUserRoleRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class LinkUserGroupUserRole extends TableImpl<LinkUserGroupUserRoleRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.link_user_group_user_role</code>
*/
public static final LinkUserGroupUserRole LINK_USER_GROUP_USER_ROLE = new LinkUserGroupUserRole();
/**
* The class holding records for this type
*/
@Override
public Class<LinkUserGroupUserRoleRecord> getRecordType() {
return LinkUserGroupUserRoleRecord.class;
}
/**
* The column
* <code>security.link_user_group_user_role.link_user_group_user_role_id</code>.
*/
public final TableField<LinkUserGroupUserRoleRecord, String> LINK_USER_GROUP_USER_ROLE_ID = createField(DSL.name("link_user_group_user_role_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.link_user_group_user_role.user_group_id</code>.
*/
public final TableField<LinkUserGroupUserRoleRecord, String> USER_GROUP_ID = createField(DSL.name("user_group_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.link_user_group_user_role.user_role_id</code>.
*/
public final TableField<LinkUserGroupUserRoleRecord, String> USER_ROLE_ID = createField(DSL.name("user_role_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.link_user_group_user_role.created</code>.
*/
public final TableField<LinkUserGroupUserRoleRecord, Timestamp> CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
private LinkUserGroupUserRole(Name alias, Table<LinkUserGroupUserRoleRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private LinkUserGroupUserRole(Name alias, Table<LinkUserGroupUserRoleRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.link_user_group_user_role</code> table
* reference
*/
public LinkUserGroupUserRole(String alias) {
this(DSL.name(alias), LINK_USER_GROUP_USER_ROLE);
}
/**
* Create an aliased <code>security.link_user_group_user_role</code> table
* reference
*/
public LinkUserGroupUserRole(Name alias) {
this(alias, LINK_USER_GROUP_USER_ROLE);
}
/**
* Create a <code>security.link_user_group_user_role</code> table reference
*/
public LinkUserGroupUserRole() {
this(DSL.name("link_user_group_user_role"), null);
}
public <O extends Record> LinkUserGroupUserRole(Table<O> path, ForeignKey<O, LinkUserGroupUserRoleRecord> childPath, InverseForeignKey<O, LinkUserGroupUserRoleRecord> parentPath) {
super(path, childPath, parentPath, LINK_USER_GROUP_USER_ROLE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class LinkUserGroupUserRolePath extends LinkUserGroupUserRole implements Path<LinkUserGroupUserRoleRecord> {
public <O extends Record> LinkUserGroupUserRolePath(Table<O> path, ForeignKey<O, LinkUserGroupUserRoleRecord> childPath, InverseForeignKey<O, LinkUserGroupUserRoleRecord> parentPath) {
super(path, childPath, parentPath);
}
private LinkUserGroupUserRolePath(Name alias, Table<LinkUserGroupUserRoleRecord> aliased) {
super(alias, aliased);
}
@Override
public LinkUserGroupUserRolePath as(String alias) {
return new LinkUserGroupUserRolePath(DSL.name(alias), this);
}
@Override
public LinkUserGroupUserRolePath as(Name alias) {
return new LinkUserGroupUserRolePath(alias, this);
}
@Override
public LinkUserGroupUserRolePath as(Table<?> alias) {
return new LinkUserGroupUserRolePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<LinkUserGroupUserRoleRecord> getPrimaryKey() {
return Keys.PK_GROUP_ROLE;
}
@Override
public List<UniqueKey<LinkUserGroupUserRoleRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_GROUP_ROLE);
}
@Override
public List<ForeignKey<LinkUserGroupUserRoleRecord, ?>> getReferences() {
return Arrays.asList(Keys.LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_GROUP, Keys.LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_ROLE);
}
private transient UserGroupPath _userGroup;
/**
* Get the implicit join path to the <code>security.user_group</code> table.
*/
public UserGroupPath userGroup() {
if (_userGroup == null)
_userGroup = new UserGroupPath(this, Keys.LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_GROUP, null);
return _userGroup;
}
private transient UserRolePath _userRole;
/**
* Get the implicit join path to the <code>security.user_role</code> table.
*/
public UserRolePath userRole() {
if (_userRole == null)
_userRole = new UserRolePath(this, Keys.LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_ROLE, null);
return _userRole;
}
@Override
public LinkUserGroupUserRole as(String alias) {
return new LinkUserGroupUserRole(DSL.name(alias), this);
}
@Override
public LinkUserGroupUserRole as(Name alias) {
return new LinkUserGroupUserRole(alias, this);
}
@Override
public LinkUserGroupUserRole as(Table<?> alias) {
return new LinkUserGroupUserRole(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public LinkUserGroupUserRole rename(String name) {
return new LinkUserGroupUserRole(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public LinkUserGroupUserRole rename(Name name) {
return new LinkUserGroupUserRole(name, null);
}
/**
* Rename this table
*/
@Override
public LinkUserGroupUserRole rename(Table<?> name) {
return new LinkUserGroupUserRole(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserGroupUserRole where(Condition condition) {
return new LinkUserGroupUserRole(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserGroupUserRole where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserGroupUserRole where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserGroupUserRole where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserGroupUserRole where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserGroupUserRole where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserGroupUserRole where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserGroupUserRole where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserGroupUserRole whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserGroupUserRole whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,310 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.Authority.AuthorityPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole.UserRolePath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.LinkUserRoleAuthorityRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class LinkUserRoleAuthority extends TableImpl<LinkUserRoleAuthorityRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.link_user_role_authority</code>
*/
public static final LinkUserRoleAuthority LINK_USER_ROLE_AUTHORITY = new LinkUserRoleAuthority();
/**
* The class holding records for this type
*/
@Override
public Class<LinkUserRoleAuthorityRecord> getRecordType() {
return LinkUserRoleAuthorityRecord.class;
}
/**
* The column
* <code>security.link_user_role_authority.user_role_authority_id</code>.
*/
public final TableField<LinkUserRoleAuthorityRecord, String> USER_ROLE_AUTHORITY_ID = createField(DSL.name("user_role_authority_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.link_user_role_authority.user_role_id</code>.
*/
public final TableField<LinkUserRoleAuthorityRecord, String> USER_ROLE_ID = createField(DSL.name("user_role_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.link_user_role_authority.authority_id</code>.
*/
public final TableField<LinkUserRoleAuthorityRecord, String> AUTHORITY_ID = createField(DSL.name("authority_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.link_user_role_authority.created</code>.
*/
public final TableField<LinkUserRoleAuthorityRecord, Timestamp> CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
private LinkUserRoleAuthority(Name alias, Table<LinkUserRoleAuthorityRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private LinkUserRoleAuthority(Name alias, Table<LinkUserRoleAuthorityRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.link_user_role_authority</code> table
* reference
*/
public LinkUserRoleAuthority(String alias) {
this(DSL.name(alias), LINK_USER_ROLE_AUTHORITY);
}
/**
* Create an aliased <code>security.link_user_role_authority</code> table
* reference
*/
public LinkUserRoleAuthority(Name alias) {
this(alias, LINK_USER_ROLE_AUTHORITY);
}
/**
* Create a <code>security.link_user_role_authority</code> table reference
*/
public LinkUserRoleAuthority() {
this(DSL.name("link_user_role_authority"), null);
}
public <O extends Record> LinkUserRoleAuthority(Table<O> path, ForeignKey<O, LinkUserRoleAuthorityRecord> childPath, InverseForeignKey<O, LinkUserRoleAuthorityRecord> parentPath) {
super(path, childPath, parentPath, LINK_USER_ROLE_AUTHORITY);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class LinkUserRoleAuthorityPath extends LinkUserRoleAuthority implements Path<LinkUserRoleAuthorityRecord> {
public <O extends Record> LinkUserRoleAuthorityPath(Table<O> path, ForeignKey<O, LinkUserRoleAuthorityRecord> childPath, InverseForeignKey<O, LinkUserRoleAuthorityRecord> parentPath) {
super(path, childPath, parentPath);
}
private LinkUserRoleAuthorityPath(Name alias, Table<LinkUserRoleAuthorityRecord> aliased) {
super(alias, aliased);
}
@Override
public LinkUserRoleAuthorityPath as(String alias) {
return new LinkUserRoleAuthorityPath(DSL.name(alias), this);
}
@Override
public LinkUserRoleAuthorityPath as(Name alias) {
return new LinkUserRoleAuthorityPath(alias, this);
}
@Override
public LinkUserRoleAuthorityPath as(Table<?> alias) {
return new LinkUserRoleAuthorityPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<LinkUserRoleAuthorityRecord> getPrimaryKey() {
return Keys.PK_ROLE_AUTHORITY;
}
@Override
public List<UniqueKey<LinkUserRoleAuthorityRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_ROLE_AUTHORITY);
}
@Override
public List<ForeignKey<LinkUserRoleAuthorityRecord, ?>> getReferences() {
return Arrays.asList(Keys.LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_ROLE, Keys.LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_AUTHORITY);
}
private transient UserRolePath _userRole;
/**
* Get the implicit join path to the <code>security.user_role</code> table.
*/
public UserRolePath userRole() {
if (_userRole == null)
_userRole = new UserRolePath(this, Keys.LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_ROLE, null);
return _userRole;
}
private transient AuthorityPath _authority;
/**
* Get the implicit join path to the <code>security.authority</code> table.
*/
public AuthorityPath authority() {
if (_authority == null)
_authority = new AuthorityPath(this, Keys.LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_AUTHORITY, null);
return _authority;
}
@Override
public LinkUserRoleAuthority as(String alias) {
return new LinkUserRoleAuthority(DSL.name(alias), this);
}
@Override
public LinkUserRoleAuthority as(Name alias) {
return new LinkUserRoleAuthority(alias, this);
}
@Override
public LinkUserRoleAuthority as(Table<?> alias) {
return new LinkUserRoleAuthority(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public LinkUserRoleAuthority rename(String name) {
return new LinkUserRoleAuthority(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public LinkUserRoleAuthority rename(Name name) {
return new LinkUserRoleAuthority(name, null);
}
/**
* Rename this table
*/
@Override
public LinkUserRoleAuthority rename(Table<?> name) {
return new LinkUserRoleAuthority(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserRoleAuthority where(Condition condition) {
return new LinkUserRoleAuthority(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserRoleAuthority where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserRoleAuthority where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserRoleAuthority where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserRoleAuthority where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserRoleAuthority where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserRoleAuthority where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public LinkUserRoleAuthority where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserRoleAuthority whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public LinkUserRoleAuthority whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,312 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.OrgUnit.OrgUnitPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount.UserAccountPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.OrgUnitRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class OrgUnit extends TableImpl<OrgUnitRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.org_unit</code>
*/
public static final OrgUnit ORG_UNIT = new OrgUnit();
/**
* The class holding records for this type
*/
@Override
public Class<OrgUnitRecord> getRecordType() {
return OrgUnitRecord.class;
}
/**
* The column <code>security.org_unit.id</code>.
*/
public final TableField<OrgUnitRecord, String> ID = createField(DSL.name("id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.org_unit.name</code>.
*/
public final TableField<OrgUnitRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(1000).nullable(false), this, "");
/**
* The column <code>security.org_unit.code</code>.
*/
public final TableField<OrgUnitRecord, String> CODE = createField(DSL.name("code"), SQLDataType.VARCHAR(50).nullable(false), this, "");
/**
* The column <code>security.org_unit.parent_id</code>.
*/
public final TableField<OrgUnitRecord, String> PARENT_ID = createField(DSL.name("parent_id"), SQLDataType.CHAR(36), this, "");
/**
* The column <code>security.org_unit.removed</code>.
*/
public final TableField<OrgUnitRecord, Boolean> REMOVED = createField(DSL.name("removed"), SQLDataType.BOOLEAN.nullable(false).defaultValue(DSL.field(DSL.raw("false"), SQLDataType.BOOLEAN)), this, "");
private OrgUnit(Name alias, Table<OrgUnitRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private OrgUnit(Name alias, Table<OrgUnitRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.org_unit</code> table reference
*/
public OrgUnit(String alias) {
this(DSL.name(alias), ORG_UNIT);
}
/**
* Create an aliased <code>security.org_unit</code> table reference
*/
public OrgUnit(Name alias) {
this(alias, ORG_UNIT);
}
/**
* Create a <code>security.org_unit</code> table reference
*/
public OrgUnit() {
this(DSL.name("org_unit"), null);
}
public <O extends Record> OrgUnit(Table<O> path, ForeignKey<O, OrgUnitRecord> childPath, InverseForeignKey<O, OrgUnitRecord> parentPath) {
super(path, childPath, parentPath, ORG_UNIT);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class OrgUnitPath extends OrgUnit implements Path<OrgUnitRecord> {
public <O extends Record> OrgUnitPath(Table<O> path, ForeignKey<O, OrgUnitRecord> childPath, InverseForeignKey<O, OrgUnitRecord> parentPath) {
super(path, childPath, parentPath);
}
private OrgUnitPath(Name alias, Table<OrgUnitRecord> aliased) {
super(alias, aliased);
}
@Override
public OrgUnitPath as(String alias) {
return new OrgUnitPath(DSL.name(alias), this);
}
@Override
public OrgUnitPath as(Name alias) {
return new OrgUnitPath(alias, this);
}
@Override
public OrgUnitPath as(Table<?> alias) {
return new OrgUnitPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<OrgUnitRecord> getPrimaryKey() {
return Keys.PK_ORG_UNIT;
}
@Override
public List<UniqueKey<OrgUnitRecord>> getUniqueKeys() {
return Arrays.asList(Keys.ORG_UNIT_CODE_KEY);
}
@Override
public List<ForeignKey<OrgUnitRecord, ?>> getReferences() {
return Arrays.asList(Keys.ORG_UNIT__FK_ORG_UNIT_PARENT_ID);
}
private transient OrgUnitPath _orgUnit;
/**
* Get the implicit join path to the <code>security.org_unit</code> table.
*/
public OrgUnitPath orgUnit() {
if (_orgUnit == null)
_orgUnit = new OrgUnitPath(this, Keys.ORG_UNIT__FK_ORG_UNIT_PARENT_ID, null);
return _orgUnit;
}
private transient UserAccountPath _userAccount;
/**
* Get the implicit to-many join path to the
* <code>security.user_account</code> table
*/
public UserAccountPath userAccount() {
if (_userAccount == null)
_userAccount = new UserAccountPath(this, null, Keys.USER_ACCOUNT__FK_USER_ORG_UNIT_ID.getInverseKey());
return _userAccount;
}
@Override
public OrgUnit as(String alias) {
return new OrgUnit(DSL.name(alias), this);
}
@Override
public OrgUnit as(Name alias) {
return new OrgUnit(alias, this);
}
@Override
public OrgUnit as(Table<?> alias) {
return new OrgUnit(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public OrgUnit rename(String name) {
return new OrgUnit(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public OrgUnit rename(Name name) {
return new OrgUnit(name, null);
}
/**
* Rename this table
*/
@Override
public OrgUnit rename(Table<?> name) {
return new OrgUnit(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgUnit where(Condition condition) {
return new OrgUnit(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgUnit where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgUnit where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgUnit where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgUnit where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgUnit where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgUnit where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public OrgUnit where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgUnit whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public OrgUnit whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,395 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.EsiaUser.EsiaUserPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserAccountUserGroup.LinkUserAccountUserGroupPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.OrgUnit.OrgUnitPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccountRefreshToken.UserAccountRefreshTokenPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup.UserGroupPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserAccountRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserAccount extends TableImpl<UserAccountRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.user_account</code>
*/
public static final UserAccount USER_ACCOUNT = new UserAccount();
/**
* The class holding records for this type
*/
@Override
public Class<UserAccountRecord> getRecordType() {
return UserAccountRecord.class;
}
/**
* The column <code>security.user_account.user_account_id</code>.
*/
public final TableField<UserAccountRecord, String> USER_ACCOUNT_ID = createField(DSL.name("user_account_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.user_account.email</code>.
*/
public final TableField<UserAccountRecord, String> EMAIL = createField(DSL.name("email"), SQLDataType.VARCHAR(150).nullable(false), this, "");
/**
* The column <code>security.user_account.first_name</code>.
*/
public final TableField<UserAccountRecord, String> FIRST_NAME = createField(DSL.name("first_name"), SQLDataType.VARCHAR(100).nullable(false), this, "");
/**
* The column <code>security.user_account.last_name</code>.
*/
public final TableField<UserAccountRecord, String> LAST_NAME = createField(DSL.name("last_name"), SQLDataType.VARCHAR(100).nullable(false), this, "");
/**
* The column <code>security.user_account.middle_name</code>.
*/
public final TableField<UserAccountRecord, String> MIDDLE_NAME = createField(DSL.name("middle_name"), SQLDataType.VARCHAR(100), this, "");
/**
* The column <code>security.user_account.created</code>.
*/
public final TableField<UserAccountRecord, Timestamp> CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column <code>security.user_account.updated</code>.
*/
public final TableField<UserAccountRecord, Timestamp> UPDATED = createField(DSL.name("updated"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column <code>security.user_account.locked</code>.
*/
public final TableField<UserAccountRecord, Boolean> LOCKED = createField(DSL.name("locked"), SQLDataType.BOOLEAN.nullable(false).defaultValue(DSL.field(DSL.raw("false"), SQLDataType.BOOLEAN)), this, "");
/**
* The column <code>security.user_account.org_unit_id</code>.
*/
public final TableField<UserAccountRecord, String> ORG_UNIT_ID = createField(DSL.name("org_unit_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.user_account.username</code>.
*/
public final TableField<UserAccountRecord, String> USERNAME = createField(DSL.name("username"), SQLDataType.VARCHAR(150).nullable(false), this, "");
/**
* The column <code>security.user_account.phone</code>.
*/
public final TableField<UserAccountRecord, String> PHONE = createField(DSL.name("phone"), SQLDataType.VARCHAR(16), this, "");
/**
* The column <code>security.user_account.email_confirmed</code>.
*/
public final TableField<UserAccountRecord, Boolean> EMAIL_CONFIRMED = createField(DSL.name("email_confirmed"), SQLDataType.BOOLEAN.nullable(false).defaultValue(DSL.field(DSL.raw("true"), SQLDataType.BOOLEAN)), this, "");
/**
* The column <code>security.user_account.user_source</code>.
*/
public final TableField<UserAccountRecord, String> USER_SOURCE = createField(DSL.name("user_source"), SQLDataType.VARCHAR(20).nullable(false).defaultValue(DSL.field(DSL.raw("'LOCAL'::character varying"), SQLDataType.VARCHAR)), this, "");
/**
* The column <code>security.user_account.source_name</code>.
*/
public final TableField<UserAccountRecord, String> SOURCE_NAME = createField(DSL.name("source_name"), SQLDataType.VARCHAR(20), this, "");
private UserAccount(Name alias, Table<UserAccountRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private UserAccount(Name alias, Table<UserAccountRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.user_account</code> table reference
*/
public UserAccount(String alias) {
this(DSL.name(alias), USER_ACCOUNT);
}
/**
* Create an aliased <code>security.user_account</code> table reference
*/
public UserAccount(Name alias) {
this(alias, USER_ACCOUNT);
}
/**
* Create a <code>security.user_account</code> table reference
*/
public UserAccount() {
this(DSL.name("user_account"), null);
}
public <O extends Record> UserAccount(Table<O> path, ForeignKey<O, UserAccountRecord> childPath, InverseForeignKey<O, UserAccountRecord> parentPath) {
super(path, childPath, parentPath, USER_ACCOUNT);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class UserAccountPath extends UserAccount implements Path<UserAccountRecord> {
public <O extends Record> UserAccountPath(Table<O> path, ForeignKey<O, UserAccountRecord> childPath, InverseForeignKey<O, UserAccountRecord> parentPath) {
super(path, childPath, parentPath);
}
private UserAccountPath(Name alias, Table<UserAccountRecord> aliased) {
super(alias, aliased);
}
@Override
public UserAccountPath as(String alias) {
return new UserAccountPath(DSL.name(alias), this);
}
@Override
public UserAccountPath as(Name alias) {
return new UserAccountPath(alias, this);
}
@Override
public UserAccountPath as(Table<?> alias) {
return new UserAccountPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<UserAccountRecord> getPrimaryKey() {
return Keys.PK_USER;
}
@Override
public List<UniqueKey<UserAccountRecord>> getUniqueKeys() {
return Arrays.asList(Keys.USER_ACCOUNT_USERNAME_UNIQUE);
}
@Override
public List<ForeignKey<UserAccountRecord, ?>> getReferences() {
return Arrays.asList(Keys.USER_ACCOUNT__FK_USER_ORG_UNIT_ID);
}
private transient OrgUnitPath _orgUnit;
/**
* Get the implicit join path to the <code>security.org_unit</code> table.
*/
public OrgUnitPath orgUnit() {
if (_orgUnit == null)
_orgUnit = new OrgUnitPath(this, Keys.USER_ACCOUNT__FK_USER_ORG_UNIT_ID, null);
return _orgUnit;
}
private transient EsiaUserPath _esiaUser;
/**
* Get the implicit to-many join path to the <code>security.esia_user</code>
* table
*/
public EsiaUserPath esiaUser() {
if (_esiaUser == null)
_esiaUser = new EsiaUserPath(this, null, Keys.ESIA_USER__FK_ESIA_USER1.getInverseKey());
return _esiaUser;
}
private transient LinkUserAccountUserGroupPath _linkUserAccountUserGroup;
/**
* Get the implicit to-many join path to the
* <code>security.link_user_account_user_group</code> table
*/
public LinkUserAccountUserGroupPath linkUserAccountUserGroup() {
if (_linkUserAccountUserGroup == null)
_linkUserAccountUserGroup = new LinkUserAccountUserGroupPath(this, null, Keys.LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_USER.getInverseKey());
return _linkUserAccountUserGroup;
}
private transient UserAccountRefreshTokenPath _userAccountRefreshToken;
/**
* Get the implicit to-many join path to the
* <code>security.user_account_refresh_token</code> table
*/
public UserAccountRefreshTokenPath userAccountRefreshToken() {
if (_userAccountRefreshToken == null)
_userAccountRefreshToken = new UserAccountRefreshTokenPath(this, null, Keys.USER_ACCOUNT_REFRESH_TOKEN__FK_USER_ACCOUNT_REFRESH_TOKEN.getInverseKey());
return _userAccountRefreshToken;
}
/**
* Get the implicit many-to-many join path to the
* <code>security.user_group</code> table
*/
public UserGroupPath userGroup() {
return linkUserAccountUserGroup().userGroup();
}
@Override
public UserAccount as(String alias) {
return new UserAccount(DSL.name(alias), this);
}
@Override
public UserAccount as(Name alias) {
return new UserAccount(alias, this);
}
@Override
public UserAccount as(Table<?> alias) {
return new UserAccount(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public UserAccount rename(String name) {
return new UserAccount(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public UserAccount rename(Name name) {
return new UserAccount(name, null);
}
/**
* Rename this table
*/
@Override
public UserAccount rename(Table<?> name) {
return new UserAccount(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccount where(Condition condition) {
return new UserAccount(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccount where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccount where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccount where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccount where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccount where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccount where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccount where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccount whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccount whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,302 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount.UserAccountPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserAccountRefreshTokenRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserAccountRefreshToken extends TableImpl<UserAccountRefreshTokenRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of
* <code>security.user_account_refresh_token</code>
*/
public static final UserAccountRefreshToken USER_ACCOUNT_REFRESH_TOKEN = new UserAccountRefreshToken();
/**
* The class holding records for this type
*/
@Override
public Class<UserAccountRefreshTokenRecord> getRecordType() {
return UserAccountRefreshTokenRecord.class;
}
/**
* The column
* <code>security.user_account_refresh_token.user_account_refresh_token_id</code>.
*/
public final TableField<UserAccountRefreshTokenRecord, String> USER_ACCOUNT_REFRESH_TOKEN_ID = createField(DSL.name("user_account_refresh_token_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column
* <code>security.user_account_refresh_token.user_account_id</code>.
*/
public final TableField<UserAccountRefreshTokenRecord, String> USER_ACCOUNT_ID = createField(DSL.name("user_account_id"), SQLDataType.CHAR(36), this, "");
/**
* The column
* <code>security.user_account_refresh_token.refresh_token</code>.
*/
public final TableField<UserAccountRefreshTokenRecord, String> REFRESH_TOKEN = createField(DSL.name("refresh_token"), SQLDataType.CLOB, this, "");
/**
* The column <code>security.user_account_refresh_token.access_token</code>.
*/
public final TableField<UserAccountRefreshTokenRecord, String> ACCESS_TOKEN = createField(DSL.name("access_token"), SQLDataType.CLOB, this, "");
/**
* The column
* <code>security.user_account_refresh_token.expiration_time</code>.
*/
public final TableField<UserAccountRefreshTokenRecord, Timestamp> EXPIRATION_TIME = createField(DSL.name("expiration_time"), SQLDataType.TIMESTAMP(0), this, "");
private UserAccountRefreshToken(Name alias, Table<UserAccountRefreshTokenRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private UserAccountRefreshToken(Name alias, Table<UserAccountRefreshTokenRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.user_account_refresh_token</code> table
* reference
*/
public UserAccountRefreshToken(String alias) {
this(DSL.name(alias), USER_ACCOUNT_REFRESH_TOKEN);
}
/**
* Create an aliased <code>security.user_account_refresh_token</code> table
* reference
*/
public UserAccountRefreshToken(Name alias) {
this(alias, USER_ACCOUNT_REFRESH_TOKEN);
}
/**
* Create a <code>security.user_account_refresh_token</code> table reference
*/
public UserAccountRefreshToken() {
this(DSL.name("user_account_refresh_token"), null);
}
public <O extends Record> UserAccountRefreshToken(Table<O> path, ForeignKey<O, UserAccountRefreshTokenRecord> childPath, InverseForeignKey<O, UserAccountRefreshTokenRecord> parentPath) {
super(path, childPath, parentPath, USER_ACCOUNT_REFRESH_TOKEN);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class UserAccountRefreshTokenPath extends UserAccountRefreshToken implements Path<UserAccountRefreshTokenRecord> {
public <O extends Record> UserAccountRefreshTokenPath(Table<O> path, ForeignKey<O, UserAccountRefreshTokenRecord> childPath, InverseForeignKey<O, UserAccountRefreshTokenRecord> parentPath) {
super(path, childPath, parentPath);
}
private UserAccountRefreshTokenPath(Name alias, Table<UserAccountRefreshTokenRecord> aliased) {
super(alias, aliased);
}
@Override
public UserAccountRefreshTokenPath as(String alias) {
return new UserAccountRefreshTokenPath(DSL.name(alias), this);
}
@Override
public UserAccountRefreshTokenPath as(Name alias) {
return new UserAccountRefreshTokenPath(alias, this);
}
@Override
public UserAccountRefreshTokenPath as(Table<?> alias) {
return new UserAccountRefreshTokenPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<UserAccountRefreshTokenRecord> getPrimaryKey() {
return Keys.PK_USER_ACCOUNT_REFRESH_TOKEN;
}
@Override
public List<ForeignKey<UserAccountRefreshTokenRecord, ?>> getReferences() {
return Arrays.asList(Keys.USER_ACCOUNT_REFRESH_TOKEN__FK_USER_ACCOUNT_REFRESH_TOKEN);
}
private transient UserAccountPath _userAccount;
/**
* Get the implicit join path to the <code>security.user_account</code>
* table.
*/
public UserAccountPath userAccount() {
if (_userAccount == null)
_userAccount = new UserAccountPath(this, Keys.USER_ACCOUNT_REFRESH_TOKEN__FK_USER_ACCOUNT_REFRESH_TOKEN, null);
return _userAccount;
}
@Override
public UserAccountRefreshToken as(String alias) {
return new UserAccountRefreshToken(DSL.name(alias), this);
}
@Override
public UserAccountRefreshToken as(Name alias) {
return new UserAccountRefreshToken(alias, this);
}
@Override
public UserAccountRefreshToken as(Table<?> alias) {
return new UserAccountRefreshToken(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public UserAccountRefreshToken rename(String name) {
return new UserAccountRefreshToken(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public UserAccountRefreshToken rename(Name name) {
return new UserAccountRefreshToken(name, null);
}
/**
* Rename this table
*/
@Override
public UserAccountRefreshToken rename(Table<?> name) {
return new UserAccountRefreshToken(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccountRefreshToken where(Condition condition) {
return new UserAccountRefreshToken(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccountRefreshToken where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccountRefreshToken where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccountRefreshToken where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccountRefreshToken where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccountRefreshToken where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccountRefreshToken where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserAccountRefreshToken where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccountRefreshToken whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserAccountRefreshToken whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,346 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.AccessLevel.AccessLevelPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserAccountUserGroup.LinkUserAccountUserGroupPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserGroupUserRole.LinkUserGroupUserRolePath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount.UserAccountPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole.UserRolePath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserGroupRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserGroup extends TableImpl<UserGroupRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.user_group</code>
*/
public static final UserGroup USER_GROUP = new UserGroup();
/**
* The class holding records for this type
*/
@Override
public Class<UserGroupRecord> getRecordType() {
return UserGroupRecord.class;
}
/**
* The column <code>security.user_group.user_group_id</code>.
*/
public final TableField<UserGroupRecord, String> USER_GROUP_ID = createField(DSL.name("user_group_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.user_group.name</code>.
*/
public final TableField<UserGroupRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column <code>security.user_group.created</code>.
*/
public final TableField<UserGroupRecord, Timestamp> CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column <code>security.user_group.updated</code>.
*/
public final TableField<UserGroupRecord, Timestamp> UPDATED = createField(DSL.name("updated"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column <code>security.user_group.access_level_id</code>.
*/
public final TableField<UserGroupRecord, String> ACCESS_LEVEL_ID = createField(DSL.name("access_level_id"), SQLDataType.CHAR(36).nullable(false), this, "");
private UserGroup(Name alias, Table<UserGroupRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private UserGroup(Name alias, Table<UserGroupRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.user_group</code> table reference
*/
public UserGroup(String alias) {
this(DSL.name(alias), USER_GROUP);
}
/**
* Create an aliased <code>security.user_group</code> table reference
*/
public UserGroup(Name alias) {
this(alias, USER_GROUP);
}
/**
* Create a <code>security.user_group</code> table reference
*/
public UserGroup() {
this(DSL.name("user_group"), null);
}
public <O extends Record> UserGroup(Table<O> path, ForeignKey<O, UserGroupRecord> childPath, InverseForeignKey<O, UserGroupRecord> parentPath) {
super(path, childPath, parentPath, USER_GROUP);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class UserGroupPath extends UserGroup implements Path<UserGroupRecord> {
public <O extends Record> UserGroupPath(Table<O> path, ForeignKey<O, UserGroupRecord> childPath, InverseForeignKey<O, UserGroupRecord> parentPath) {
super(path, childPath, parentPath);
}
private UserGroupPath(Name alias, Table<UserGroupRecord> aliased) {
super(alias, aliased);
}
@Override
public UserGroupPath as(String alias) {
return new UserGroupPath(DSL.name(alias), this);
}
@Override
public UserGroupPath as(Name alias) {
return new UserGroupPath(alias, this);
}
@Override
public UserGroupPath as(Table<?> alias) {
return new UserGroupPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<UserGroupRecord> getPrimaryKey() {
return Keys.PK_GROUP;
}
@Override
public List<UniqueKey<UserGroupRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_GROUP_NAME);
}
@Override
public List<ForeignKey<UserGroupRecord, ?>> getReferences() {
return Arrays.asList(Keys.USER_GROUP__FK_USER_GROUP_ACCESS_LEVEL);
}
private transient AccessLevelPath _accessLevel;
/**
* Get the implicit join path to the <code>security.access_level</code>
* table.
*/
public AccessLevelPath accessLevel() {
if (_accessLevel == null)
_accessLevel = new AccessLevelPath(this, Keys.USER_GROUP__FK_USER_GROUP_ACCESS_LEVEL, null);
return _accessLevel;
}
private transient LinkUserAccountUserGroupPath _linkUserAccountUserGroup;
/**
* Get the implicit to-many join path to the
* <code>security.link_user_account_user_group</code> table
*/
public LinkUserAccountUserGroupPath linkUserAccountUserGroup() {
if (_linkUserAccountUserGroup == null)
_linkUserAccountUserGroup = new LinkUserAccountUserGroupPath(this, null, Keys.LINK_USER_ACCOUNT_USER_GROUP__FK_USER_GROUP_GROUP.getInverseKey());
return _linkUserAccountUserGroup;
}
private transient LinkUserGroupUserRolePath _linkUserGroupUserRole;
/**
* Get the implicit to-many join path to the
* <code>security.link_user_group_user_role</code> table
*/
public LinkUserGroupUserRolePath linkUserGroupUserRole() {
if (_linkUserGroupUserRole == null)
_linkUserGroupUserRole = new LinkUserGroupUserRolePath(this, null, Keys.LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_GROUP.getInverseKey());
return _linkUserGroupUserRole;
}
/**
* Get the implicit many-to-many join path to the
* <code>security.user_account</code> table
*/
public UserAccountPath userAccount() {
return linkUserAccountUserGroup().userAccount();
}
/**
* Get the implicit many-to-many join path to the
* <code>security.user_role</code> table
*/
public UserRolePath userRole() {
return linkUserGroupUserRole().userRole();
}
@Override
public UserGroup as(String alias) {
return new UserGroup(DSL.name(alias), this);
}
@Override
public UserGroup as(Name alias) {
return new UserGroup(alias, this);
}
@Override
public UserGroup as(Table<?> alias) {
return new UserGroup(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public UserGroup rename(String name) {
return new UserGroup(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public UserGroup rename(Name name) {
return new UserGroup(name, null);
}
/**
* Rename this table
*/
@Override
public UserGroup rename(Table<?> name) {
return new UserGroup(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserGroup where(Condition condition) {
return new UserGroup(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserGroup where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserGroup where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserGroup where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserGroup where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserGroup where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserGroup where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserGroup where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserGroup whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserGroup whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,322 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables;
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.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.ervu_dashboard.db_beans.security.Keys;
import ru.micord.ervu_dashboard.db_beans.security.Security;
import ru.micord.ervu_dashboard.db_beans.security.tables.Authority.AuthorityPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserGroupUserRole.LinkUserGroupUserRolePath;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserRoleAuthority.LinkUserRoleAuthorityPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup.UserGroupPath;
import ru.micord.ervu_dashboard.db_beans.security.tables.records.UserRoleRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserRole extends TableImpl<UserRoleRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of <code>security.user_role</code>
*/
public static final UserRole USER_ROLE = new UserRole();
/**
* The class holding records for this type
*/
@Override
public Class<UserRoleRecord> getRecordType() {
return UserRoleRecord.class;
}
/**
* The column <code>security.user_role.user_role_id</code>.
*/
public final TableField<UserRoleRecord, String> USER_ROLE_ID = createField(DSL.name("user_role_id"), SQLDataType.CHAR(36).nullable(false), this, "");
/**
* The column <code>security.user_role.name</code>.
*/
public final TableField<UserRoleRecord, String> NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(255).nullable(false), this, "");
/**
* The column <code>security.user_role.created</code>.
*/
public final TableField<UserRoleRecord, Timestamp> CREATED = createField(DSL.name("created"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column <code>security.user_role.updated</code>.
*/
public final TableField<UserRoleRecord, Timestamp> UPDATED = createField(DSL.name("updated"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
private UserRole(Name alias, Table<UserRoleRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private UserRole(Name alias, Table<UserRoleRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>security.user_role</code> table reference
*/
public UserRole(String alias) {
this(DSL.name(alias), USER_ROLE);
}
/**
* Create an aliased <code>security.user_role</code> table reference
*/
public UserRole(Name alias) {
this(alias, USER_ROLE);
}
/**
* Create a <code>security.user_role</code> table reference
*/
public UserRole() {
this(DSL.name("user_role"), null);
}
public <O extends Record> UserRole(Table<O> path, ForeignKey<O, UserRoleRecord> childPath, InverseForeignKey<O, UserRoleRecord> parentPath) {
super(path, childPath, parentPath, USER_ROLE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class UserRolePath extends UserRole implements Path<UserRoleRecord> {
public <O extends Record> UserRolePath(Table<O> path, ForeignKey<O, UserRoleRecord> childPath, InverseForeignKey<O, UserRoleRecord> parentPath) {
super(path, childPath, parentPath);
}
private UserRolePath(Name alias, Table<UserRoleRecord> aliased) {
super(alias, aliased);
}
@Override
public UserRolePath as(String alias) {
return new UserRolePath(DSL.name(alias), this);
}
@Override
public UserRolePath as(Name alias) {
return new UserRolePath(alias, this);
}
@Override
public UserRolePath as(Table<?> alias) {
return new UserRolePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : Security.SECURITY;
}
@Override
public UniqueKey<UserRoleRecord> getPrimaryKey() {
return Keys.PK_ROLE;
}
@Override
public List<UniqueKey<UserRoleRecord>> getUniqueKeys() {
return Arrays.asList(Keys.UNI_ROLE_NAME);
}
private transient LinkUserGroupUserRolePath _linkUserGroupUserRole;
/**
* Get the implicit to-many join path to the
* <code>security.link_user_group_user_role</code> table
*/
public LinkUserGroupUserRolePath linkUserGroupUserRole() {
if (_linkUserGroupUserRole == null)
_linkUserGroupUserRole = new LinkUserGroupUserRolePath(this, null, Keys.LINK_USER_GROUP_USER_ROLE__FK_GROUP_ROLE_ROLE.getInverseKey());
return _linkUserGroupUserRole;
}
private transient LinkUserRoleAuthorityPath _linkUserRoleAuthority;
/**
* Get the implicit to-many join path to the
* <code>security.link_user_role_authority</code> table
*/
public LinkUserRoleAuthorityPath linkUserRoleAuthority() {
if (_linkUserRoleAuthority == null)
_linkUserRoleAuthority = new LinkUserRoleAuthorityPath(this, null, Keys.LINK_USER_ROLE_AUTHORITY__FK_ROLE_AUTHORITY_ROLE.getInverseKey());
return _linkUserRoleAuthority;
}
/**
* Get the implicit many-to-many join path to the
* <code>security.user_group</code> table
*/
public UserGroupPath userGroup() {
return linkUserGroupUserRole().userGroup();
}
/**
* Get the implicit many-to-many join path to the
* <code>security.authority</code> table
*/
public AuthorityPath authority() {
return linkUserRoleAuthority().authority();
}
@Override
public UserRole as(String alias) {
return new UserRole(DSL.name(alias), this);
}
@Override
public UserRole as(Name alias) {
return new UserRole(alias, this);
}
@Override
public UserRole as(Table<?> alias) {
return new UserRole(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public UserRole rename(String name) {
return new UserRole(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public UserRole rename(Name name) {
return new UserRole(name, null);
}
/**
* Rename this table
*/
@Override
public UserRole rename(Table<?> name) {
return new UserRole(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserRole where(Condition condition) {
return new UserRole(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public UserRole where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserRole where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserRole where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserRole where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserRole where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserRole where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public UserRole where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserRole whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public UserRole whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -1,94 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.AccessLevel;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class AccessLevelRecord extends UpdatableRecordImpl<AccessLevelRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>security.access_level.access_level_id</code>.
*/
public void setAccessLevelId(String value) {
set(0, value);
}
/**
* Getter for <code>security.access_level.access_level_id</code>.
*/
public String getAccessLevelId() {
return (String) get(0);
}
/**
* Setter for <code>security.access_level.level</code>.
*/
public void setLevel(Short value) {
set(1, value);
}
/**
* Getter for <code>security.access_level.level</code>.
*/
public Short getLevel() {
return (Short) get(1);
}
/**
* Setter for <code>security.access_level.description</code>.
*/
public void setDescription(String value) {
set(2, value);
}
/**
* Getter for <code>security.access_level.description</code>.
*/
public String getDescription() {
return (String) get(2);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached AccessLevelRecord
*/
public AccessLevelRecord() {
super(AccessLevel.ACCESS_LEVEL);
}
/**
* Create a detached, initialised AccessLevelRecord
*/
public AccessLevelRecord(String accessLevelId, Short level, String description) {
super(AccessLevel.ACCESS_LEVEL);
setAccessLevelId(accessLevelId);
setLevel(level);
setDescription(description);
resetChangedOnNotNull();
}
}

View file

@ -1,96 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.Authority;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class AuthorityRecord extends UpdatableRecordImpl<AuthorityRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>security.authority.authority_id</code>.
*/
public void setAuthorityId(String value) {
set(0, value);
}
/**
* Getter for <code>security.authority.authority_id</code>.
*/
public String getAuthorityId() {
return (String) get(0);
}
/**
* Setter for <code>security.authority.name</code>.
*/
public void setName(String value) {
set(1, value);
}
/**
* Getter for <code>security.authority.name</code>.
*/
public String getName() {
return (String) get(1);
}
/**
* Setter for <code>security.authority.created</code>.
*/
public void setCreated(Timestamp value) {
set(2, value);
}
/**
* Getter for <code>security.authority.created</code>.
*/
public Timestamp getCreated() {
return (Timestamp) get(2);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached AuthorityRecord
*/
public AuthorityRecord() {
super(Authority.AUTHORITY);
}
/**
* Create a detached, initialised AuthorityRecord
*/
public AuthorityRecord(String authorityId, String name, Timestamp created) {
super(Authority.AUTHORITY);
setAuthorityId(authorityId);
setName(name);
setCreated(created);
resetChangedOnNotNull();
}
}

View file

@ -1,94 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.EsiaUser;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class EsiaUserRecord extends UpdatableRecordImpl<EsiaUserRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>security.esia_user.esia_user_id</code>.
*/
public void setEsiaUserId(String value) {
set(0, value);
}
/**
* Getter for <code>security.esia_user.esia_user_id</code>.
*/
public String getEsiaUserId() {
return (String) get(0);
}
/**
* Setter for <code>security.esia_user.user_account_id</code>.
*/
public void setUserAccountId(String value) {
set(1, value);
}
/**
* Getter for <code>security.esia_user.user_account_id</code>.
*/
public String getUserAccountId() {
return (String) get(1);
}
/**
* Setter for <code>security.esia_user.person_contact_id</code>.
*/
public void setPersonContactId(Long value) {
set(2, value);
}
/**
* Getter for <code>security.esia_user.person_contact_id</code>.
*/
public Long getPersonContactId() {
return (Long) get(2);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached EsiaUserRecord
*/
public EsiaUserRecord() {
super(EsiaUser.ESIA_USER);
}
/**
* Create a detached, initialised EsiaUserRecord
*/
public EsiaUserRecord(String esiaUserId, String userAccountId, Long personContactId) {
super(EsiaUser.ESIA_USER);
setEsiaUserId(esiaUserId);
setUserAccountId(userAccountId);
setPersonContactId(personContactId);
resetChangedOnNotNull();
}
}

View file

@ -1,117 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserAccountUserGroup;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class LinkUserAccountUserGroupRecord extends UpdatableRecordImpl<LinkUserAccountUserGroupRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>security.link_user_account_user_group.link_user_account_user_group_id</code>.
*/
public void setLinkUserAccountUserGroupId(String value) {
set(0, value);
}
/**
* Getter for
* <code>security.link_user_account_user_group.link_user_account_user_group_id</code>.
*/
public String getLinkUserAccountUserGroupId() {
return (String) get(0);
}
/**
* Setter for
* <code>security.link_user_account_user_group.user_account_id</code>.
*/
public void setUserAccountId(String value) {
set(1, value);
}
/**
* Getter for
* <code>security.link_user_account_user_group.user_account_id</code>.
*/
public String getUserAccountId() {
return (String) get(1);
}
/**
* Setter for
* <code>security.link_user_account_user_group.user_group_id</code>.
*/
public void setUserGroupId(String value) {
set(2, value);
}
/**
* Getter for
* <code>security.link_user_account_user_group.user_group_id</code>.
*/
public String getUserGroupId() {
return (String) get(2);
}
/**
* Setter for <code>security.link_user_account_user_group.created</code>.
*/
public void setCreated(Timestamp value) {
set(3, value);
}
/**
* Getter for <code>security.link_user_account_user_group.created</code>.
*/
public Timestamp getCreated() {
return (Timestamp) get(3);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached LinkUserAccountUserGroupRecord
*/
public LinkUserAccountUserGroupRecord() {
super(LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP);
}
/**
* Create a detached, initialised LinkUserAccountUserGroupRecord
*/
public LinkUserAccountUserGroupRecord(String linkUserAccountUserGroupId, String userAccountId, String userGroupId, Timestamp created) {
super(LinkUserAccountUserGroup.LINK_USER_ACCOUNT_USER_GROUP);
setLinkUserAccountUserGroupId(linkUserAccountUserGroupId);
setUserAccountId(userAccountId);
setUserGroupId(userGroupId);
setCreated(created);
resetChangedOnNotNull();
}
}

View file

@ -1,113 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserGroupUserRole;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class LinkUserGroupUserRoleRecord extends UpdatableRecordImpl<LinkUserGroupUserRoleRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>security.link_user_group_user_role.link_user_group_user_role_id</code>.
*/
public void setLinkUserGroupUserRoleId(String value) {
set(0, value);
}
/**
* Getter for
* <code>security.link_user_group_user_role.link_user_group_user_role_id</code>.
*/
public String getLinkUserGroupUserRoleId() {
return (String) get(0);
}
/**
* Setter for <code>security.link_user_group_user_role.user_group_id</code>.
*/
public void setUserGroupId(String value) {
set(1, value);
}
/**
* Getter for <code>security.link_user_group_user_role.user_group_id</code>.
*/
public String getUserGroupId() {
return (String) get(1);
}
/**
* Setter for <code>security.link_user_group_user_role.user_role_id</code>.
*/
public void setUserRoleId(String value) {
set(2, value);
}
/**
* Getter for <code>security.link_user_group_user_role.user_role_id</code>.
*/
public String getUserRoleId() {
return (String) get(2);
}
/**
* Setter for <code>security.link_user_group_user_role.created</code>.
*/
public void setCreated(Timestamp value) {
set(3, value);
}
/**
* Getter for <code>security.link_user_group_user_role.created</code>.
*/
public Timestamp getCreated() {
return (Timestamp) get(3);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached LinkUserGroupUserRoleRecord
*/
public LinkUserGroupUserRoleRecord() {
super(LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE);
}
/**
* Create a detached, initialised LinkUserGroupUserRoleRecord
*/
public LinkUserGroupUserRoleRecord(String linkUserGroupUserRoleId, String userGroupId, String userRoleId, Timestamp created) {
super(LinkUserGroupUserRole.LINK_USER_GROUP_USER_ROLE);
setLinkUserGroupUserRoleId(linkUserGroupUserRoleId);
setUserGroupId(userGroupId);
setUserRoleId(userRoleId);
setCreated(created);
resetChangedOnNotNull();
}
}

View file

@ -1,113 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.LinkUserRoleAuthority;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class LinkUserRoleAuthorityRecord extends UpdatableRecordImpl<LinkUserRoleAuthorityRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>security.link_user_role_authority.user_role_authority_id</code>.
*/
public void setUserRoleAuthorityId(String value) {
set(0, value);
}
/**
* Getter for
* <code>security.link_user_role_authority.user_role_authority_id</code>.
*/
public String getUserRoleAuthorityId() {
return (String) get(0);
}
/**
* Setter for <code>security.link_user_role_authority.user_role_id</code>.
*/
public void setUserRoleId(String value) {
set(1, value);
}
/**
* Getter for <code>security.link_user_role_authority.user_role_id</code>.
*/
public String getUserRoleId() {
return (String) get(1);
}
/**
* Setter for <code>security.link_user_role_authority.authority_id</code>.
*/
public void setAuthorityId(String value) {
set(2, value);
}
/**
* Getter for <code>security.link_user_role_authority.authority_id</code>.
*/
public String getAuthorityId() {
return (String) get(2);
}
/**
* Setter for <code>security.link_user_role_authority.created</code>.
*/
public void setCreated(Timestamp value) {
set(3, value);
}
/**
* Getter for <code>security.link_user_role_authority.created</code>.
*/
public Timestamp getCreated() {
return (Timestamp) get(3);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached LinkUserRoleAuthorityRecord
*/
public LinkUserRoleAuthorityRecord() {
super(LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY);
}
/**
* Create a detached, initialised LinkUserRoleAuthorityRecord
*/
public LinkUserRoleAuthorityRecord(String userRoleAuthorityId, String userRoleId, String authorityId, Timestamp created) {
super(LinkUserRoleAuthority.LINK_USER_ROLE_AUTHORITY);
setUserRoleAuthorityId(userRoleAuthorityId);
setUserRoleId(userRoleId);
setAuthorityId(authorityId);
setCreated(created);
resetChangedOnNotNull();
}
}

View file

@ -1,124 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.OrgUnit;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class OrgUnitRecord extends UpdatableRecordImpl<OrgUnitRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>security.org_unit.id</code>.
*/
public void setId(String value) {
set(0, value);
}
/**
* Getter for <code>security.org_unit.id</code>.
*/
public String getId() {
return (String) get(0);
}
/**
* Setter for <code>security.org_unit.name</code>.
*/
public void setName(String value) {
set(1, value);
}
/**
* Getter for <code>security.org_unit.name</code>.
*/
public String getName() {
return (String) get(1);
}
/**
* Setter for <code>security.org_unit.code</code>.
*/
public void setCode(String value) {
set(2, value);
}
/**
* Getter for <code>security.org_unit.code</code>.
*/
public String getCode() {
return (String) get(2);
}
/**
* Setter for <code>security.org_unit.parent_id</code>.
*/
public void setParentId(String value) {
set(3, value);
}
/**
* Getter for <code>security.org_unit.parent_id</code>.
*/
public String getParentId() {
return (String) get(3);
}
/**
* Setter for <code>security.org_unit.removed</code>.
*/
public void setRemoved(Boolean value) {
set(4, value);
}
/**
* Getter for <code>security.org_unit.removed</code>.
*/
public Boolean getRemoved() {
return (Boolean) get(4);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached OrgUnitRecord
*/
public OrgUnitRecord() {
super(OrgUnit.ORG_UNIT);
}
/**
* Create a detached, initialised OrgUnitRecord
*/
public OrgUnitRecord(String id, String name, String code, String parentId, Boolean removed) {
super(OrgUnit.ORG_UNIT);
setId(id);
setName(name);
setCode(code);
setParentId(parentId);
setRemoved(removed);
resetChangedOnNotNull();
}
}

View file

@ -1,261 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccount;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserAccountRecord extends UpdatableRecordImpl<UserAccountRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>security.user_account.user_account_id</code>.
*/
public void setUserAccountId(String value) {
set(0, value);
}
/**
* Getter for <code>security.user_account.user_account_id</code>.
*/
public String getUserAccountId() {
return (String) get(0);
}
/**
* Setter for <code>security.user_account.email</code>.
*/
public void setEmail(String value) {
set(1, value);
}
/**
* Getter for <code>security.user_account.email</code>.
*/
public String getEmail() {
return (String) get(1);
}
/**
* Setter for <code>security.user_account.first_name</code>.
*/
public void setFirstName(String value) {
set(2, value);
}
/**
* Getter for <code>security.user_account.first_name</code>.
*/
public String getFirstName() {
return (String) get(2);
}
/**
* Setter for <code>security.user_account.last_name</code>.
*/
public void setLastName(String value) {
set(3, value);
}
/**
* Getter for <code>security.user_account.last_name</code>.
*/
public String getLastName() {
return (String) get(3);
}
/**
* Setter for <code>security.user_account.middle_name</code>.
*/
public void setMiddleName(String value) {
set(4, value);
}
/**
* Getter for <code>security.user_account.middle_name</code>.
*/
public String getMiddleName() {
return (String) get(4);
}
/**
* Setter for <code>security.user_account.created</code>.
*/
public void setCreated(Timestamp value) {
set(5, value);
}
/**
* Getter for <code>security.user_account.created</code>.
*/
public Timestamp getCreated() {
return (Timestamp) get(5);
}
/**
* Setter for <code>security.user_account.updated</code>.
*/
public void setUpdated(Timestamp value) {
set(6, value);
}
/**
* Getter for <code>security.user_account.updated</code>.
*/
public Timestamp getUpdated() {
return (Timestamp) get(6);
}
/**
* Setter for <code>security.user_account.locked</code>.
*/
public void setLocked(Boolean value) {
set(7, value);
}
/**
* Getter for <code>security.user_account.locked</code>.
*/
public Boolean getLocked() {
return (Boolean) get(7);
}
/**
* Setter for <code>security.user_account.org_unit_id</code>.
*/
public void setOrgUnitId(String value) {
set(8, value);
}
/**
* Getter for <code>security.user_account.org_unit_id</code>.
*/
public String getOrgUnitId() {
return (String) get(8);
}
/**
* Setter for <code>security.user_account.username</code>.
*/
public void setUsername(String value) {
set(9, value);
}
/**
* Getter for <code>security.user_account.username</code>.
*/
public String getUsername() {
return (String) get(9);
}
/**
* Setter for <code>security.user_account.phone</code>.
*/
public void setPhone(String value) {
set(10, value);
}
/**
* Getter for <code>security.user_account.phone</code>.
*/
public String getPhone() {
return (String) get(10);
}
/**
* Setter for <code>security.user_account.email_confirmed</code>.
*/
public void setEmailConfirmed(Boolean value) {
set(11, value);
}
/**
* Getter for <code>security.user_account.email_confirmed</code>.
*/
public Boolean getEmailConfirmed() {
return (Boolean) get(11);
}
/**
* Setter for <code>security.user_account.user_source</code>.
*/
public void setUserSource(String value) {
set(12, value);
}
/**
* Getter for <code>security.user_account.user_source</code>.
*/
public String getUserSource() {
return (String) get(12);
}
/**
* Setter for <code>security.user_account.source_name</code>.
*/
public void setSourceName(String value) {
set(13, value);
}
/**
* Getter for <code>security.user_account.source_name</code>.
*/
public String getSourceName() {
return (String) get(13);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached UserAccountRecord
*/
public UserAccountRecord() {
super(UserAccount.USER_ACCOUNT);
}
/**
* Create a detached, initialised UserAccountRecord
*/
public UserAccountRecord(String userAccountId, String email, String firstName, String lastName, String middleName, Timestamp created, Timestamp updated, Boolean locked, String orgUnitId, String username, String phone, Boolean emailConfirmed, String userSource, String sourceName) {
super(UserAccount.USER_ACCOUNT);
setUserAccountId(userAccountId);
setEmail(email);
setFirstName(firstName);
setLastName(lastName);
setMiddleName(middleName);
setCreated(created);
setUpdated(updated);
setLocked(locked);
setOrgUnitId(orgUnitId);
setUsername(username);
setPhone(phone);
setEmailConfirmed(emailConfirmed);
setUserSource(userSource);
setSourceName(sourceName);
resetChangedOnNotNull();
}
}

View file

@ -1,134 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserAccountRefreshToken;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserAccountRefreshTokenRecord extends UpdatableRecordImpl<UserAccountRefreshTokenRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>security.user_account_refresh_token.user_account_refresh_token_id</code>.
*/
public void setUserAccountRefreshTokenId(String value) {
set(0, value);
}
/**
* Getter for
* <code>security.user_account_refresh_token.user_account_refresh_token_id</code>.
*/
public String getUserAccountRefreshTokenId() {
return (String) get(0);
}
/**
* Setter for
* <code>security.user_account_refresh_token.user_account_id</code>.
*/
public void setUserAccountId(String value) {
set(1, value);
}
/**
* Getter for
* <code>security.user_account_refresh_token.user_account_id</code>.
*/
public String getUserAccountId() {
return (String) get(1);
}
/**
* Setter for
* <code>security.user_account_refresh_token.refresh_token</code>.
*/
public void setRefreshToken(String value) {
set(2, value);
}
/**
* Getter for
* <code>security.user_account_refresh_token.refresh_token</code>.
*/
public String getRefreshToken() {
return (String) get(2);
}
/**
* Setter for <code>security.user_account_refresh_token.access_token</code>.
*/
public void setAccessToken(String value) {
set(3, value);
}
/**
* Getter for <code>security.user_account_refresh_token.access_token</code>.
*/
public String getAccessToken() {
return (String) get(3);
}
/**
* Setter for
* <code>security.user_account_refresh_token.expiration_time</code>.
*/
public void setExpirationTime(Timestamp value) {
set(4, value);
}
/**
* Getter for
* <code>security.user_account_refresh_token.expiration_time</code>.
*/
public Timestamp getExpirationTime() {
return (Timestamp) get(4);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached UserAccountRefreshTokenRecord
*/
public UserAccountRefreshTokenRecord() {
super(UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN);
}
/**
* Create a detached, initialised UserAccountRefreshTokenRecord
*/
public UserAccountRefreshTokenRecord(String userAccountRefreshTokenId, String userAccountId, String refreshToken, String accessToken, Timestamp expirationTime) {
super(UserAccountRefreshToken.USER_ACCOUNT_REFRESH_TOKEN);
setUserAccountRefreshTokenId(userAccountRefreshTokenId);
setUserAccountId(userAccountId);
setRefreshToken(refreshToken);
setAccessToken(accessToken);
setExpirationTime(expirationTime);
resetChangedOnNotNull();
}
}

View file

@ -1,126 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserGroup;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserGroupRecord extends UpdatableRecordImpl<UserGroupRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>security.user_group.user_group_id</code>.
*/
public void setUserGroupId(String value) {
set(0, value);
}
/**
* Getter for <code>security.user_group.user_group_id</code>.
*/
public String getUserGroupId() {
return (String) get(0);
}
/**
* Setter for <code>security.user_group.name</code>.
*/
public void setName(String value) {
set(1, value);
}
/**
* Getter for <code>security.user_group.name</code>.
*/
public String getName() {
return (String) get(1);
}
/**
* Setter for <code>security.user_group.created</code>.
*/
public void setCreated(Timestamp value) {
set(2, value);
}
/**
* Getter for <code>security.user_group.created</code>.
*/
public Timestamp getCreated() {
return (Timestamp) get(2);
}
/**
* Setter for <code>security.user_group.updated</code>.
*/
public void setUpdated(Timestamp value) {
set(3, value);
}
/**
* Getter for <code>security.user_group.updated</code>.
*/
public Timestamp getUpdated() {
return (Timestamp) get(3);
}
/**
* Setter for <code>security.user_group.access_level_id</code>.
*/
public void setAccessLevelId(String value) {
set(4, value);
}
/**
* Getter for <code>security.user_group.access_level_id</code>.
*/
public String getAccessLevelId() {
return (String) get(4);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached UserGroupRecord
*/
public UserGroupRecord() {
super(UserGroup.USER_GROUP);
}
/**
* Create a detached, initialised UserGroupRecord
*/
public UserGroupRecord(String userGroupId, String name, Timestamp created, Timestamp updated, String accessLevelId) {
super(UserGroup.USER_GROUP);
setUserGroupId(userGroupId);
setName(name);
setCreated(created);
setUpdated(updated);
setAccessLevelId(accessLevelId);
resetChangedOnNotNull();
}
}

View file

@ -1,111 +0,0 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.ervu_dashboard.db_beans.security.tables.records;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.ervu_dashboard.db_beans.security.tables.UserRole;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class UserRoleRecord extends UpdatableRecordImpl<UserRoleRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for <code>security.user_role.user_role_id</code>.
*/
public void setUserRoleId(String value) {
set(0, value);
}
/**
* Getter for <code>security.user_role.user_role_id</code>.
*/
public String getUserRoleId() {
return (String) get(0);
}
/**
* Setter for <code>security.user_role.name</code>.
*/
public void setName(String value) {
set(1, value);
}
/**
* Getter for <code>security.user_role.name</code>.
*/
public String getName() {
return (String) get(1);
}
/**
* Setter for <code>security.user_role.created</code>.
*/
public void setCreated(Timestamp value) {
set(2, value);
}
/**
* Getter for <code>security.user_role.created</code>.
*/
public Timestamp getCreated() {
return (Timestamp) get(2);
}
/**
* Setter for <code>security.user_role.updated</code>.
*/
public void setUpdated(Timestamp value) {
set(3, value);
}
/**
* Getter for <code>security.user_role.updated</code>.
*/
public Timestamp getUpdated() {
return (Timestamp) get(3);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<String> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached UserRoleRecord
*/
public UserRoleRecord() {
super(UserRole.USER_ROLE);
}
/**
* Create a detached, initialised UserRoleRecord
*/
public UserRoleRecord(String userRoleId, String name, Timestamp created, Timestamp updated) {
super(UserRole.USER_ROLE);
setUserRoleId(userRoleId);
setName(name);
setCreated(created);
setUpdated(updated);
resetChangedOnNotNull();
}
}

View file

@ -82,6 +82,11 @@ public class Age extends TableImpl<AgeRecord> {
*/
public final TableField<AgeRecord, BigDecimal> _41_45_YEARS = createField(DSL.name("41-45_years"), SQLDataType.NUMERIC, this, "Возраст 41-45");
/**
* The column <code>total_registered.age.46-50_years</code>. Возраст 46-50
*/
public final TableField<AgeRecord, BigDecimal> _46_50_YEARS = createField(DSL.name("46-50_years"), SQLDataType.NUMERIC, this, "Возраст 46-50");
/**
* The column <code>total_registered.age.51+_years</code>. Возраст 51+
*/
@ -97,11 +102,6 @@ public class Age extends TableImpl<AgeRecord> {
*/
public final TableField<AgeRecord, Date> RECORDING_DATE = createField(DSL.name("recording_date"), SQLDataType.DATE.nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.DATE)), this, "Дата записи");
/**
* The column <code>total_registered.age.46-50_years</code>. Возраст 46-50
*/
public final TableField<AgeRecord, BigDecimal> _46_50_YEARS = createField(DSL.name("46-50_years"), SQLDataType.NUMERIC, this, "Возраст 46-50");
/**
* The column <code>total_registered.age.17_years_percent</code>. Возраст 17
* в процентах

View file

@ -98,6 +98,17 @@ public class MaritalStatus extends TableImpl<MaritalStatusRecord> {
*/
public final TableField<MaritalStatusRecord, BigDecimal> MARITAL_STATUS_ = createField(DSL.name("marital_status"), SQLDataType.NUMERIC, this, "");
/**
* The column <code>total_registered.marital_status.other</code>. Иное
*/
public final TableField<MaritalStatusRecord, BigDecimal> OTHER = createField(DSL.name("other"), SQLDataType.NUMERIC, this, "Иное");
/**
* The column <code>total_registered.marital_status.other_percent</code>.
* Иное в процентах
*/
public final TableField<MaritalStatusRecord, BigDecimal> OTHER_PERCENT = createField(DSL.name("other_percent"), SQLDataType.NUMERIC, this, "Иное в процентах");
private MaritalStatus(Name alias, Table<MaritalStatusRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}

View file

@ -105,60 +105,60 @@ public class AgeRecord extends UpdatableRecordImpl<AgeRecord> {
return (BigDecimal) get(5);
}
/**
* Setter for <code>total_registered.age.51+_years</code>. Возраст 51+
*/
public void set_51_2bYears(BigDecimal value) {
set(6, value);
}
/**
* Getter for <code>total_registered.age.51+_years</code>. Возраст 51+
*/
public BigDecimal get_51_2bYears() {
return (BigDecimal) get(6);
}
/**
* Setter for <code>total_registered.age.all_M_W</code>. Все/мужчины/женщины
*/
public void setAllMW(String value) {
set(7, value);
}
/**
* Getter for <code>total_registered.age.all_M_W</code>. Все/мужчины/женщины
*/
public String getAllMW() {
return (String) get(7);
}
/**
* Setter for <code>total_registered.age.recording_date</code>. Дата записи
*/
public void setRecordingDate(Date value) {
set(8, value);
}
/**
* Getter for <code>total_registered.age.recording_date</code>. Дата записи
*/
public Date getRecordingDate() {
return (Date) get(8);
}
/**
* Setter for <code>total_registered.age.46-50_years</code>. Возраст 46-50
*/
public void set_46_50Years(BigDecimal value) {
set(9, value);
set(6, value);
}
/**
* Getter for <code>total_registered.age.46-50_years</code>. Возраст 46-50
*/
public BigDecimal get_46_50Years() {
return (BigDecimal) get(9);
return (BigDecimal) get(6);
}
/**
* Setter for <code>total_registered.age.51+_years</code>. Возраст 51+
*/
public void set_51_2bYears(BigDecimal value) {
set(7, value);
}
/**
* Getter for <code>total_registered.age.51+_years</code>. Возраст 51+
*/
public BigDecimal get_51_2bYears() {
return (BigDecimal) get(7);
}
/**
* Setter for <code>total_registered.age.all_M_W</code>. Все/мужчины/женщины
*/
public void setAllMW(String value) {
set(8, value);
}
/**
* Getter for <code>total_registered.age.all_M_W</code>. Все/мужчины/женщины
*/
public String getAllMW() {
return (String) get(8);
}
/**
* Setter for <code>total_registered.age.recording_date</code>. Дата записи
*/
public void setRecordingDate(Date value) {
set(9, value);
}
/**
* Getter for <code>total_registered.age.recording_date</code>. Дата записи
*/
public Date getRecordingDate() {
return (Date) get(9);
}
/**
@ -354,7 +354,7 @@ public class AgeRecord extends UpdatableRecordImpl<AgeRecord> {
/**
* Create a detached, initialised AgeRecord
*/
public AgeRecord(BigDecimal _17Years, BigDecimal _18_26Years, BigDecimal _27_30Years, BigDecimal _31_35Years, BigDecimal _36_40Years, BigDecimal _41_45Years, BigDecimal _51_2bYears, String allMW, Date recordingDate, BigDecimal _46_50Years, BigDecimal _17YearsPercent, BigDecimal _18_26YearsPercent, BigDecimal _27_30YearsPercent, BigDecimal _31_35YearsPercent, BigDecimal _36_40YearsPercent, BigDecimal _41_45YearsPercent, BigDecimal _46_50YearsPercent, BigDecimal _51_2bYearsPercent, String recruitmentId, String registered, Long idAge) {
public AgeRecord(BigDecimal _17Years, BigDecimal _18_26Years, BigDecimal _27_30Years, BigDecimal _31_35Years, BigDecimal _36_40Years, BigDecimal _41_45Years, BigDecimal _46_50Years, BigDecimal _51_2bYears, String allMW, Date recordingDate, BigDecimal _17YearsPercent, BigDecimal _18_26YearsPercent, BigDecimal _27_30YearsPercent, BigDecimal _31_35YearsPercent, BigDecimal _36_40YearsPercent, BigDecimal _41_45YearsPercent, BigDecimal _46_50YearsPercent, BigDecimal _51_2bYearsPercent, String recruitmentId, String registered, Long idAge) {
super(Age.AGE);
set_17Years(_17Years);
@ -363,10 +363,10 @@ public class AgeRecord extends UpdatableRecordImpl<AgeRecord> {
set_31_35Years(_31_35Years);
set_36_40Years(_36_40Years);
set_41_45Years(_41_45Years);
set_46_50Years(_46_50Years);
set_51_2bYears(_51_2bYears);
setAllMW(allMW);
setRecordingDate(recordingDate);
set_46_50Years(_46_50Years);
set_17YearsPercent(_17YearsPercent);
set_18_26YearsPercent(_18_26YearsPercent);
set_27_30YearsPercent(_27_30YearsPercent);

View file

@ -146,6 +146,36 @@ public class MaritalStatusRecord extends UpdatableRecordImpl<MaritalStatusRecord
return (BigDecimal) get(7);
}
/**
* Setter for <code>total_registered.marital_status.other</code>. Иное
*/
public void setOther(BigDecimal value) {
set(8, value);
}
/**
* Getter for <code>total_registered.marital_status.other</code>. Иное
*/
public BigDecimal getOther() {
return (BigDecimal) get(8);
}
/**
* Setter for <code>total_registered.marital_status.other_percent</code>.
* Иное в процентах
*/
public void setOtherPercent(BigDecimal value) {
set(9, value);
}
/**
* Getter for <code>total_registered.marital_status.other_percent</code>.
* Иное в процентах
*/
public BigDecimal getOtherPercent() {
return (BigDecimal) get(9);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@ -169,7 +199,7 @@ public class MaritalStatusRecord extends UpdatableRecordImpl<MaritalStatusRecord
/**
* Create a detached, initialised MaritalStatusRecord
*/
public MaritalStatusRecord(BigDecimal married, BigDecimal notMarried, String allMW, Date recordingDate, BigDecimal marriedPercent, BigDecimal notMarriedPercent, String recruitmentId, BigDecimal maritalStatus) {
public MaritalStatusRecord(BigDecimal married, BigDecimal notMarried, String allMW, Date recordingDate, BigDecimal marriedPercent, BigDecimal notMarriedPercent, String recruitmentId, BigDecimal maritalStatus, BigDecimal other, BigDecimal otherPercent) {
super(MaritalStatus.MARITAL_STATUS);
setMarried(married);
@ -180,6 +210,8 @@ public class MaritalStatusRecord extends UpdatableRecordImpl<MaritalStatusRecord
setNotMarriedPercent(notMarriedPercent);
setRecruitmentId(recruitmentId);
setMaritalStatus(maritalStatus);
setOther(other);
setOtherPercent(otherPercent);
resetChangedOnNotNull();
}
}

View file

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-2.0.xsd">
<changeSet id="0001" author="hairullinb" dbms="postgresql">
<comment>add columns other and other_percent to total_registered.marital_status</comment>
<sql>
ALTER TABLE IF EXISTS total_registered.marital_status
ADD COLUMN other numeric;
COMMENT ON COLUMN total_registered.marital_status.other
IS 'Иное';
ALTER TABLE IF EXISTS total_registered.marital_status
ADD COLUMN other_percent numeric;
COMMENT ON COLUMN total_registered.marital_status.other_percent
IS 'Иное в процентах';
</sql>
</changeSet>
</databaseChangeLog>

View file

@ -7,4 +7,5 @@
<include file="20241018-SUPPORT-8617-init-ervu_dashboard.xml" relativeToChangelogFile="true"/>
<include file="20241029-SUPPORT-8617-fix-column.xml" relativeToChangelogFile="true"/>
<include file="20241215-alter_marital_status.xml" relativeToChangelogFile="true"/>
</databaseChangeLog>

View file

@ -5,7 +5,7 @@
"filter_cleanup_check_period_minutes": 30,
"auth_method": "form",
"enable.version.in.url": "false",
"backend.context": "redirect/pages/ervu-dashboard/dashboard",
"backend.context": "dashboard",
"guard.confirm_exit": false,
"message_service_error_timeout": "",
"message_service_warning_timeout": "",

View file

@ -922,9 +922,15 @@
<scripts id="3f5f352c-1a86-4702-a914-6c163c903157">
<properties>
<entry>
<key>loadOnStart</key>
<value>
<simple>false</simple>
</value>
</entry>
<entry>
<key>skipInitialLoading</key>
<value>
<simple>true</simple>
<simple>false</simple>
</value>
</entry>
</properties>
@ -2499,6 +2505,30 @@
<simple>null</simple>
</value>
</entry>
</complex>
</value>
</item>
<item id="31e59d53-2c3a-49f3-b12f-0733adc0fbb1" removed="false">
<value>
<complex>
<entry>
<key>behavior</key>
<value>
<simple>{"objectId":"b32ce5b9-3059-4a18-b503-06d35956e243","packageName":"component.button","className":"Button","type":"TS"}</simple>
</value>
</entry>
<entry>
<key>method</key>
<value>
<simple>"onClick"</simple>
</value>
</entry>
<entry>
<key>value</key>
<value>
<simple>null</simple>
</value>
</entry>
</complex>
</value>
</item>
@ -2905,7 +2935,7 @@
<children id="d3a18a2f-3aae-4b95-9cf0-8697d2d1d3f8">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>d3a18a2f-3aae-4b95-9cf0-8697d2d1d3f8</componentRootId>
<name>VB - количество детей старше 18...(default hidden)</name>
<name>VB (default hidden)</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
@ -3454,7 +3484,7 @@
<children id="c4f325c1-e004-4a00-a70b-e26e69732043">
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
<componentRootId>c4f325c1-e004-4a00-a70b-e26e69732043</componentRootId>
<name>VB - является медиком...(default hidden)</name>
<name>VB (default hidden)</name>
<container>true</container>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
@ -4168,11 +4198,18 @@
<componentRootId>640ac622-91a7-438d-b68d-596af564b389</componentRootId>
<name>Таблица данные</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="07201df9-ff33-4c71-9aae-a2cfdd028234">
<properties>
<entry>
<key>autoStretchColumns</key>
<value>
<simple>true</simple>
</value>
</entry>
<entry>
<key>clientSideColumnFilters</key>
<value>
<simple>true</simple>
</value>
@ -4185,12 +4222,6 @@
</entry>
<entry>
<key>floatingFilter</key>
<value>
<simple>false</simple>
</value>
</entry>
<entry>
<key>loadOnInit</key>
<value>
<simple>false</simple>
</value>
@ -4331,9 +4362,9 @@
</entry>
</properties>
</scripts>
<children id="4d3c62aa-21c7-4c3b-a08f-27539d5c8906">
<children id="083ddf4e-73b6-498f-8ee1-9911c5328628">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>4d3c62aa-21c7-4c3b-a08f-27539d5c8906</componentRootId>
<componentRootId>083ddf4e-73b6-498f-8ee1-9911c5328628</componentRootId>
<name>id</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
@ -4397,9 +4428,9 @@
</properties>
</scripts>
</children>
<children id="6eda0fcc-4d86-4cdb-ae32-6539e0c5ad4c">
<children id="4277a431-68ca-4e81-af72-95881f461812">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>6eda0fcc-4d86-4cdb-ae32-6539e0c5ad4c</componentRootId>
<componentRootId>4277a431-68ca-4e81-af72-95881f461812</componentRootId>
<name>ФИО</name>
<container>false</container>
<expanded>false</expanded>
@ -4509,9 +4540,9 @@
</properties>
</scripts>
</children>
<children id="6e5e5f96-eec9-4c15-819c-15a7e9c7bfd5">
<children id="23d4286c-cb89-4773-8d2a-5cd70107ac73">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>6e5e5f96-eec9-4c15-819c-15a7e9c7bfd5</componentRootId>
<componentRootId>23d4286c-cb89-4773-8d2a-5cd70107ac73</componentRootId>
<name>Место жительства</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
@ -4563,11 +4594,12 @@
</properties>
</scripts>
</children>
<children id="0aa98c4e-d4e8-47f3-8f6f-ae0d07ecb77b">
<children id="f9ca8418-a4a9-4c86-b955-2da325f453bf">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>0aa98c4e-d4e8-47f3-8f6f-ae0d07ecb77b</componentRootId>
<componentRootId>f9ca8418-a4a9-4c86-b955-2da325f453bf</componentRootId>
<name>Возраст</name>
<container>false</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
@ -4611,9 +4643,9 @@
</properties>
</scripts>
</children>
<children id="ad06279c-3518-40ae-b68c-c93d5393d8bc">
<children id="30ea5e9b-b3e0-49a2-97e0-252241fdbc97">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>ad06279c-3518-40ae-b68c-c93d5393d8bc</componentRootId>
<componentRootId>30ea5e9b-b3e0-49a2-97e0-252241fdbc97</componentRootId>
<name>Военкомат</name>
<container>false</container>
<childrenReordered>false</childrenReordered>
@ -4683,6 +4715,55 @@
</properties>
</scripts>
</children>
<children id="4d3c62aa-21c7-4c3b-a08f-27539d5c8906">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>4d3c62aa-21c7-4c3b-a08f-27539d5c8906</componentRootId>
<name>id</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="6eda0fcc-4d86-4cdb-ae32-6539e0c5ad4c">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>6eda0fcc-4d86-4cdb-ae32-6539e0c5ad4c</componentRootId>
<name>ФИО</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="6e5e5f96-eec9-4c15-819c-15a7e9c7bfd5">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>6e5e5f96-eec9-4c15-819c-15a7e9c7bfd5</componentRootId>
<name>Место жительства</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="0aa98c4e-d4e8-47f3-8f6f-ae0d07ecb77b">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>0aa98c4e-d4e8-47f3-8f6f-ae0d07ecb77b</componentRootId>
<name>Возраст</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="ad06279c-3518-40ae-b68c-c93d5393d8bc">
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
<componentRootId>ad06279c-3518-40ae-b68c-c93d5393d8bc</componentRootId>
<name>Военкомат</name>
<container>false</container>
<removed>true</removed>
</children>
</children>
<children id="fd4def7c-0600-40e9-a488-79c374cdd2a4">
<prototypeId>16071adb-3bdf-4c33-b29b-886876016415</prototypeId>
<componentRootId>fd4def7c-0600-40e9-a488-79c374cdd2a4</componentRootId>
<name>Таблица</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="12aac8bf-f382-4067-bc37-b29eb0b48c69">
<prototypeId>16071adb-3bdf-4c33-b29b-886876016415</prototypeId>
<componentRootId>12aac8bf-f382-4067-bc37-b29eb0b48c69</componentRootId>
<name>Таблица</name>
<container>true</container>
<removed>true</removed>
</children>
<children id="e81d5130-5c95-4717-a294-e9f39451eec0">
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>

View file

@ -5801,7 +5801,6 @@
<componentRootId>287754e8-934b-4750-b623-48758802904c</componentRootId>
<name>Призывная кампания</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>
@ -5960,7 +5959,6 @@
<componentRootId>bf5748a5-cc85-4600-8834-7170e746c666</componentRootId>
<name>Контейнер вкладок</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="1c20b23e-f269-42ff-aa6f-ec2e7ff152cf"/>
<scripts id="aba9b3cf-fe50-4149-84cd-ff7b6ed4e99d"/>
@ -5992,7 +5990,6 @@
<componentRootId>069a5667-25f6-4874-be31-92664b7f4637</componentRootId>
<name>VB - Осень</name>
<container>true</container>
<expanded>false</expanded>
<childrenReordered>false</childrenReordered>
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
<properties>

View file

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<datasource>
<dbBeanPackage>ru.micord.ervu_dashboard.db_beans</dbBeanPackage>
<dbName>ervu-dashboard</dbName>
<dbName>ervu-dashboard-copy</dbName>
<driverClassName>org.postgresql.Driver</driverClassName>
<host>10.10.31.119</host>
<manually>false</manually>
@ -13,11 +13,10 @@
<schemas>public</schemas>
<schemas>ratings</schemas>
<schemas>recruitment_campaign</schemas>
<schemas>security</schemas>
<schemas>space</schemas>
<schemas>total_registered</schemas>
<sqlDialect>POSTGRES</sqlDialect>
<url>jdbc:postgresql://10.10.31.119:5432/ervu-dashboard</url>
<url>jdbc:postgresql://10.10.31.119:5432/ervu-dashboard-copy</url>
<urlPrefix>jdbc:postgresql:</urlPrefix>
<user>ervu-dashboard</user>
</datasource>