From 258d6060d408e75b85764bf372f10c3873c8be3a Mon Sep 17 00:00:00 2001 From: ilyin Date: Fri, 8 Nov 2024 23:52:30 +0300 Subject: [PATCH] save --- .../db_beans/DefaultCatalog.java | 7 + .../InitRegistrationInfo.java | 117 + .../db_beans/init_registration_info/Keys.java | 65 + .../init_registration_info/Sequences.java | 29 + .../init_registration_info/Tables.java | 66 + .../tables/ApplicationsReceivedFromEpgu.java | 338 + .../tables/CitizensNextYearAge.java | 327 + .../tables/DecisionFormationStatus.java | 339 + .../tables/IncidentsInfo.java | 328 + .../tables/InfoSentToLkEpgu.java | 360 + .../tables/InitRegistrationFromGirVu.java | 326 + .../tables/RecordsInfoIdUkIdErn.java | 344 + .../tables/StatusesDecisionsOnEpgu.java | 325 + .../ApplicationsReceivedFromEpguRecord.java | 206 + .../records/CitizensNextYearAgeRecord.java | 176 + .../DecisionFormationStatusRecord.java | 211 + .../tables/records/IncidentsInfoRecord.java | 188 + .../records/InfoSentToLkEpguRecord.java | 277 + .../InitRegistrationFromGirVuRecord.java | 172 + .../records/RecordsInfoIdUkIdErnRecord.java | 226 + .../StatusesDecisionsOnEpguRecord.java | 172 + .../db_beans/metrics/tables/Recruitment.java | 112 + .../ervu-business-metrics/conversion.page | 12924 +++++++++++++++- .../main/resources/database/datasource.xml | 1 + 24 files changed, 17616 insertions(+), 20 deletions(-) create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/InitRegistrationInfo.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Keys.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Sequences.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Tables.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/ApplicationsReceivedFromEpgu.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/CitizensNextYearAge.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/DecisionFormationStatus.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/IncidentsInfo.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InfoSentToLkEpgu.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InitRegistrationFromGirVu.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/RecordsInfoIdUkIdErn.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/StatusesDecisionsOnEpgu.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/ApplicationsReceivedFromEpguRecord.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/CitizensNextYearAgeRecord.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/DecisionFormationStatusRecord.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/IncidentsInfoRecord.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InfoSentToLkEpguRecord.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InitRegistrationFromGirVuRecord.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/RecordsInfoIdUkIdErnRecord.java create mode 100644 backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/StatusesDecisionsOnEpguRecord.java diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/DefaultCatalog.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/DefaultCatalog.java index 63af3ee..6d7705d 100644 --- a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/DefaultCatalog.java +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/DefaultCatalog.java @@ -4,6 +4,7 @@ package ervu_dashboard.ervu_dashboard.db_beans; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; import ervu_dashboard.ervu_dashboard.db_beans.metrics.Metrics; import java.util.Arrays; @@ -27,6 +28,11 @@ public class DefaultCatalog extends CatalogImpl { */ public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog(); + /** + * The schema init_registration_info. + */ + public final InitRegistrationInfo INIT_REGISTRATION_INFO = InitRegistrationInfo.INIT_REGISTRATION_INFO; + /** * The schema metrics. */ @@ -42,6 +48,7 @@ public class DefaultCatalog extends CatalogImpl { @Override public final List getSchemas() { return Arrays.asList( + InitRegistrationInfo.INIT_REGISTRATION_INFO, Metrics.METRICS ); } diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/InitRegistrationInfo.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/InitRegistrationInfo.java new file mode 100644 index 0000000..2cb2adc --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/InitRegistrationInfo.java @@ -0,0 +1,117 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info; + + +import ervu_dashboard.ervu_dashboard.db_beans.DefaultCatalog; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.ApplicationsReceivedFromEpgu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.CitizensNextYearAge; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.DecisionFormationStatus; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.IncidentsInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InfoSentToLkEpgu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InitRegistrationFromGirVu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.RecordsInfoIdUkIdErn; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.StatusesDecisionsOnEpgu; + +import java.util.Arrays; +import java.util.List; + +import org.jooq.Catalog; +import org.jooq.Sequence; +import org.jooq.Table; +import org.jooq.impl.SchemaImpl; + + +/** + * This class is generated by jOOQ. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InitRegistrationInfo extends SchemaImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of init_registration_info + */ + public static final InitRegistrationInfo INIT_REGISTRATION_INFO = new InitRegistrationInfo(); + + /** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ + public final ApplicationsReceivedFromEpgu APPLICATIONS_RECEIVED_FROM_EPGU = ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU; + + /** + * Первоначальная постановка на учет. Данные по количеству гражан на учете в + * возрасте 17 или 18 лет и по источнику самих данных + */ + public final CitizensNextYearAge CITIZENS_NEXT_YEAR_AGE = CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE; + + /** + * Первоначальная постановка на учет. Статус формирования решений + */ + public final DecisionFormationStatus DECISION_FORMATION_STATUS = DecisionFormationStatus.DECISION_FORMATION_STATUS; + + /** + * Первоначальная постановка на учет. Инциденты + */ + public final IncidentsInfo INCIDENTS_INFO = IncidentsInfo.INCIDENTS_INFO; + + /** + * Первоначальная постановка на учет. ДОставка уведомлений в ЛК на ЕПГУ + */ + public final InfoSentToLkEpgu INFO_SENT_TO_LK_EPGU = InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU; + + /** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ + public final InitRegistrationFromGirVu INIT_REGISTRATION_FROM_GIR_VU = InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU; + + /** + * Первоначальная постановка на учет. Информация о налиции ИД ЕРН и ИД УК + */ + public final RecordsInfoIdUkIdErn RECORDS_INFO_ID_UK_ID_ERN = RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN; + + /** + * Первоначальная постановка на учет. Статусы решений по Первоначальной + * постановке на учет(ЕПГУ) + */ + public final StatusesDecisionsOnEpgu STATUSES_DECISIONS_ON_EPGU = StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU; + + /** + * No further instances allowed + */ + private InitRegistrationInfo() { + super("init_registration_info", null); + } + + + @Override + public Catalog getCatalog() { + return DefaultCatalog.DEFAULT_CATALOG; + } + + @Override + public final List> getSequences() { + return Arrays.asList( + Sequences.APPLICATIONS_RECEIVED_FROM_EP_APPLICATIONS_RECEIVED_FROM_EP_SEQ, + Sequences.INIT_REGISTRATION_FROM_GIR_VU_INIT_REGISTRATION_FROM_GIR_VU_SEQ + ); + } + + @Override + public final List> getTables() { + return Arrays.asList( + ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU, + CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE, + DecisionFormationStatus.DECISION_FORMATION_STATUS, + IncidentsInfo.INCIDENTS_INFO, + InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU, + InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU, + RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN, + StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU + ); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Keys.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Keys.java new file mode 100644 index 0000000..4a94257 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Keys.java @@ -0,0 +1,65 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.ApplicationsReceivedFromEpgu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.CitizensNextYearAge; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.DecisionFormationStatus; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.IncidentsInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InfoSentToLkEpgu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InitRegistrationFromGirVu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.RecordsInfoIdUkIdErn; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.StatusesDecisionsOnEpgu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.ApplicationsReceivedFromEpguRecord; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.CitizensNextYearAgeRecord; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.DecisionFormationStatusRecord; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.IncidentsInfoRecord; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.InfoSentToLkEpguRecord; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.InitRegistrationFromGirVuRecord; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.RecordsInfoIdUkIdErnRecord; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.StatusesDecisionsOnEpguRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.records.RecruitmentRecord; + +import org.jooq.ForeignKey; +import org.jooq.TableField; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.Internal; + + +/** + * A class modelling foreign key relationships and constraints of tables in + * init_registration_info. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Keys { + + // ------------------------------------------------------------------------- + // UNIQUE and PRIMARY KEY definitions + // ------------------------------------------------------------------------- + + public static final UniqueKey APPLICATIONS_RECEIVED_FROM_EPGU_PKEY = Internal.createUniqueKey(ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU, DSL.name("applications_received_from_epgu_pkey"), new TableField[] { ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU.APPLICATIONS_RECEIVED_FROM_EPGU_ID }, true); + public static final UniqueKey CITIZENS_NEXT_YEAR_AGE_PKEY = Internal.createUniqueKey(CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE, DSL.name("citizens_next_year_age_pkey"), new TableField[] { CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE.CITIZENS_NEXT_YEAR_AGE_ID }, true); + public static final UniqueKey DECISION_FORMATION_STATUS_PKEY = Internal.createUniqueKey(DecisionFormationStatus.DECISION_FORMATION_STATUS, DSL.name("decision_formation_status_pkey"), new TableField[] { DecisionFormationStatus.DECISION_FORMATION_STATUS.DECISION_FORMATION_STATUS_ID }, true); + public static final UniqueKey INCIDENTS_INFO_PKEY = Internal.createUniqueKey(IncidentsInfo.INCIDENTS_INFO, DSL.name("incidents_info_pkey"), new TableField[] { IncidentsInfo.INCIDENTS_INFO.INCIDENTS_INFO_ID }, true); + public static final UniqueKey INFO_SENT_TO_LK_EPGU_PKEY = Internal.createUniqueKey(InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU, DSL.name("info_sent_to_lk_epgu_pkey"), new TableField[] { InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU.INFO_SENT_TO_LK_EPGU_ID }, true); + public static final UniqueKey INIT_REGISTRATION_FROM_GIR_VU_PKEY = Internal.createUniqueKey(InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU, DSL.name("init_registration_from_gir_vu_pkey"), new TableField[] { InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU.INIT_REGISTRATION_FROM_GIR_VU_ID }, true); + public static final UniqueKey RECORDS_INFO_ID_UK_ID_ERN_PKEY = Internal.createUniqueKey(RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN, DSL.name("records_info_id_uk_id_ern_pkey"), new TableField[] { RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN.RECORDS_INFO_ID_UK_ID_ERN_ID }, true); + public static final UniqueKey STATUSES_DECISIONS_ON_EPGU_PKEY = Internal.createUniqueKey(StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU, DSL.name("statuses_decisions_on_epgu_pkey"), new TableField[] { StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU.STATUSES_DECISIONS_ON_EPGU_ID }, true); + + // ------------------------------------------------------------------------- + // FOREIGN KEY definitions + // ------------------------------------------------------------------------- + + public static final ForeignKey APPLICATIONS_RECEIVED_FROM_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); + public static final ForeignKey CITIZENS_NEXT_YEAR_AGE__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); + public static final ForeignKey DECISION_FORMATION_STATUS__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(DecisionFormationStatus.DECISION_FORMATION_STATUS, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { DecisionFormationStatus.DECISION_FORMATION_STATUS.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); + public static final ForeignKey INCIDENTS_INFO__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(IncidentsInfo.INCIDENTS_INFO, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { IncidentsInfo.INCIDENTS_INFO.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); + public static final ForeignKey INFO_SENT_TO_LK_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); + public static final ForeignKey INIT_REGISTRATION_FROM_GIR_VU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); + public static final ForeignKey RECORDS_INFO_ID_UK_ID_ERN__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); + public static final ForeignKey STATUSES_DECISIONS_ON_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID = Internal.createForeignKey(StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU, DSL.name("fk_conv_info_records_from_easu_recruitment_id"), new TableField[] { StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU.RECRUITMENT_ID }, ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys.RECRUITMENT_PKEY, new TableField[] { Recruitment.RECRUITMENT.ID }, true); +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Sequences.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Sequences.java new file mode 100644 index 0000000..0e43b19 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Sequences.java @@ -0,0 +1,29 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info; + + +import org.jooq.Sequence; +import org.jooq.impl.Internal; +import org.jooq.impl.SQLDataType; + + +/** + * Convenience access to all sequences in init_registration_info. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Sequences { + + /** + * The sequence + * init_registration_info.applications_received_from_ep_applications_received_from_ep_seq + */ + public static final Sequence APPLICATIONS_RECEIVED_FROM_EP_APPLICATIONS_RECEIVED_FROM_EP_SEQ = Internal.createSequence("applications_received_from_ep_applications_received_from_ep_seq", InitRegistrationInfo.INIT_REGISTRATION_INFO, SQLDataType.BIGINT.nullable(false), null, null, null, null, false, null); + + /** + * The sequence + * init_registration_info.init_registration_from_gir_vu_init_registration_from_gir_vu_seq + */ + public static final Sequence INIT_REGISTRATION_FROM_GIR_VU_INIT_REGISTRATION_FROM_GIR_VU_SEQ = Internal.createSequence("init_registration_from_gir_vu_init_registration_from_gir_vu_seq", InitRegistrationInfo.INIT_REGISTRATION_INFO, SQLDataType.BIGINT.nullable(false), null, null, null, null, false, null); +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Tables.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Tables.java new file mode 100644 index 0000000..8aef5f8 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/Tables.java @@ -0,0 +1,66 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.ApplicationsReceivedFromEpgu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.CitizensNextYearAge; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.DecisionFormationStatus; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.IncidentsInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InfoSentToLkEpgu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InitRegistrationFromGirVu; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.RecordsInfoIdUkIdErn; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.StatusesDecisionsOnEpgu; + + +/** + * Convenience access to all tables in init_registration_info. + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class Tables { + + /** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ + public static final ApplicationsReceivedFromEpgu APPLICATIONS_RECEIVED_FROM_EPGU = ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU; + + /** + * Первоначальная постановка на учет. Данные по количеству гражан на учете в + * возрасте 17 или 18 лет и по источнику самих данных + */ + public static final CitizensNextYearAge CITIZENS_NEXT_YEAR_AGE = CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE; + + /** + * Первоначальная постановка на учет. Статус формирования решений + */ + public static final DecisionFormationStatus DECISION_FORMATION_STATUS = DecisionFormationStatus.DECISION_FORMATION_STATUS; + + /** + * Первоначальная постановка на учет. Инциденты + */ + public static final IncidentsInfo INCIDENTS_INFO = IncidentsInfo.INCIDENTS_INFO; + + /** + * Первоначальная постановка на учет. ДОставка уведомлений в ЛК на ЕПГУ + */ + public static final InfoSentToLkEpgu INFO_SENT_TO_LK_EPGU = InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU; + + /** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ + public static final InitRegistrationFromGirVu INIT_REGISTRATION_FROM_GIR_VU = InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU; + + /** + * Первоначальная постановка на учет. Информация о налиции ИД ЕРН и ИД УК + */ + public static final RecordsInfoIdUkIdErn RECORDS_INFO_ID_UK_ID_ERN = RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN; + + /** + * Первоначальная постановка на учет. Статусы решений по Первоначальной + * постановке на учет(ЕПГУ) + */ + public static final StatusesDecisionsOnEpgu STATUSES_DECISIONS_ON_EPGU = StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU; +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/ApplicationsReceivedFromEpgu.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/ApplicationsReceivedFromEpgu.java new file mode 100644 index 0000000..e0367f1 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/ApplicationsReceivedFromEpgu.java @@ -0,0 +1,338 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.ApplicationsReceivedFromEpguRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ApplicationsReceivedFromEpgu extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.applications_received_from_epgu + */ + public static final ApplicationsReceivedFromEpgu APPLICATIONS_RECEIVED_FROM_EPGU = new ApplicationsReceivedFromEpgu(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return ApplicationsReceivedFromEpguRecord.class; + } + + /** + * The column + * init_registration_info.applications_received_from_epgu.applications_received_from_epgu_id. + */ + public final TableField APPLICATIONS_RECEIVED_FROM_EPGU_ID = createField(DSL.name("applications_received_from_epgu_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.count_all. + */ + public final TableField COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.count_executor_appointed. + */ + public final TableField COUNT_EXECUTOR_APPOINTED = createField(DSL.name("count_executor_appointed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.count_registered. + */ + public final TableField COUNT_REGISTERED = createField(DSL.name("count_registered"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.count_registration_refusal. + */ + public final TableField COUNT_REGISTRATION_REFUSAL = createField(DSL.name("count_registration_refusal"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.applications_received_from_epgu.count_refusal_provide_service. + */ + public final TableField COUNT_REFUSAL_PROVIDE_SERVICE = createField(DSL.name("count_refusal_provide_service"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private ApplicationsReceivedFromEpgu(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private ApplicationsReceivedFromEpgu(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. Первоначальная постановка на учет по данным из ГИР ВУ"), TableOptions.table(), where); + } + + /** + * Create an aliased + * init_registration_info.applications_received_from_epgu table + * reference + */ + public ApplicationsReceivedFromEpgu(String alias) { + this(DSL.name(alias), APPLICATIONS_RECEIVED_FROM_EPGU); + } + + /** + * Create an aliased + * init_registration_info.applications_received_from_epgu table + * reference + */ + public ApplicationsReceivedFromEpgu(Name alias) { + this(alias, APPLICATIONS_RECEIVED_FROM_EPGU); + } + + /** + * Create a + * init_registration_info.applications_received_from_epgu table + * reference + */ + public ApplicationsReceivedFromEpgu() { + this(DSL.name("applications_received_from_epgu"), null); + } + + public ApplicationsReceivedFromEpgu(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, APPLICATIONS_RECEIVED_FROM_EPGU); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class ApplicationsReceivedFromEpguPath extends ApplicationsReceivedFromEpgu implements Path { + public ApplicationsReceivedFromEpguPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private ApplicationsReceivedFromEpguPath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public ApplicationsReceivedFromEpguPath as(String alias) { + return new ApplicationsReceivedFromEpguPath(DSL.name(alias), this); + } + + @Override + public ApplicationsReceivedFromEpguPath as(Name alias) { + return new ApplicationsReceivedFromEpguPath(alias, this); + } + + @Override + public ApplicationsReceivedFromEpguPath as(Table alias) { + return new ApplicationsReceivedFromEpguPath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.APPLICATIONS_RECEIVED_FROM_EPGU_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.APPLICATIONS_RECEIVED_FROM_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.APPLICATIONS_RECEIVED_FROM_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public ApplicationsReceivedFromEpgu as(String alias) { + return new ApplicationsReceivedFromEpgu(DSL.name(alias), this); + } + + @Override + public ApplicationsReceivedFromEpgu as(Name alias) { + return new ApplicationsReceivedFromEpgu(alias, this); + } + + @Override + public ApplicationsReceivedFromEpgu as(Table alias) { + return new ApplicationsReceivedFromEpgu(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public ApplicationsReceivedFromEpgu rename(String name) { + return new ApplicationsReceivedFromEpgu(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public ApplicationsReceivedFromEpgu rename(Name name) { + return new ApplicationsReceivedFromEpgu(name, null); + } + + /** + * Rename this table + */ + @Override + public ApplicationsReceivedFromEpgu rename(Table name) { + return new ApplicationsReceivedFromEpgu(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicationsReceivedFromEpgu where(Condition condition) { + return new ApplicationsReceivedFromEpgu(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicationsReceivedFromEpgu where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicationsReceivedFromEpgu where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicationsReceivedFromEpgu where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicationsReceivedFromEpgu where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicationsReceivedFromEpgu where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicationsReceivedFromEpgu where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public ApplicationsReceivedFromEpgu where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicationsReceivedFromEpgu whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public ApplicationsReceivedFromEpgu whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/CitizensNextYearAge.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/CitizensNextYearAge.java new file mode 100644 index 0000000..943fb36 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/CitizensNextYearAge.java @@ -0,0 +1,327 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.CitizensNextYearAgeRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. Данные по количеству гражан на учете в + * возрасте 17 или 18 лет и по источнику самих данных + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CitizensNextYearAge extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.citizens_next_year_age + */ + public static final CitizensNextYearAge CITIZENS_NEXT_YEAR_AGE = new CitizensNextYearAge(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return CitizensNextYearAgeRecord.class; + } + + /** + * The column + * init_registration_info.citizens_next_year_age.citizens_next_year_age_id. + */ + public final TableField CITIZENS_NEXT_YEAR_AGE_ID = createField(DSL.name("citizens_next_year_age_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.citizens_next_year_age.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.citizens_next_year_age.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column + * init_registration_info.citizens_next_year_age.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.citizens_next_year_age.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public final TableField INFO_SOURCE = createField(DSL.name("info_source"), SQLDataType.VARCHAR.nullable(false), this, "информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU"); + + /** + * The column + * init_registration_info.citizens_next_year_age.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public final TableField INFO_AGE = createField(DSL.name("info_age"), SQLDataType.VARCHAR.nullable(false), this, "Информациия о каком возрасте 17_YEARS, 18_YEAR"); + + /** + * The column + * init_registration_info.citizens_next_year_age.count_all. + */ + public final TableField COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private CitizensNextYearAge(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private CitizensNextYearAge(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. Данные по количеству гражан на учете в возрасте 17 или 18 лет и по источнику самих данных"), TableOptions.table(), where); + } + + /** + * Create an aliased + * init_registration_info.citizens_next_year_age table + * reference + */ + public CitizensNextYearAge(String alias) { + this(DSL.name(alias), CITIZENS_NEXT_YEAR_AGE); + } + + /** + * Create an aliased + * init_registration_info.citizens_next_year_age table + * reference + */ + public CitizensNextYearAge(Name alias) { + this(alias, CITIZENS_NEXT_YEAR_AGE); + } + + /** + * Create a init_registration_info.citizens_next_year_age table + * reference + */ + public CitizensNextYearAge() { + this(DSL.name("citizens_next_year_age"), null); + } + + public CitizensNextYearAge(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, CITIZENS_NEXT_YEAR_AGE); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class CitizensNextYearAgePath extends CitizensNextYearAge implements Path { + public CitizensNextYearAgePath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private CitizensNextYearAgePath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public CitizensNextYearAgePath as(String alias) { + return new CitizensNextYearAgePath(DSL.name(alias), this); + } + + @Override + public CitizensNextYearAgePath as(Name alias) { + return new CitizensNextYearAgePath(alias, this); + } + + @Override + public CitizensNextYearAgePath as(Table alias) { + return new CitizensNextYearAgePath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.CITIZENS_NEXT_YEAR_AGE_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.CITIZENS_NEXT_YEAR_AGE__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.CITIZENS_NEXT_YEAR_AGE__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public CitizensNextYearAge as(String alias) { + return new CitizensNextYearAge(DSL.name(alias), this); + } + + @Override + public CitizensNextYearAge as(Name alias) { + return new CitizensNextYearAge(alias, this); + } + + @Override + public CitizensNextYearAge as(Table alias) { + return new CitizensNextYearAge(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public CitizensNextYearAge rename(String name) { + return new CitizensNextYearAge(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public CitizensNextYearAge rename(Name name) { + return new CitizensNextYearAge(name, null); + } + + /** + * Rename this table + */ + @Override + public CitizensNextYearAge rename(Table name) { + return new CitizensNextYearAge(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CitizensNextYearAge where(Condition condition) { + return new CitizensNextYearAge(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CitizensNextYearAge where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CitizensNextYearAge where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CitizensNextYearAge where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CitizensNextYearAge where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CitizensNextYearAge where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CitizensNextYearAge where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public CitizensNextYearAge where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CitizensNextYearAge whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public CitizensNextYearAge whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/DecisionFormationStatus.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/DecisionFormationStatus.java new file mode 100644 index 0000000..d63385e --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/DecisionFormationStatus.java @@ -0,0 +1,339 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.DecisionFormationStatusRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. Статус формирования решений + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DecisionFormationStatus extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.decision_formation_status + */ + public static final DecisionFormationStatus DECISION_FORMATION_STATUS = new DecisionFormationStatus(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return DecisionFormationStatusRecord.class; + } + + /** + * The column + * init_registration_info.decision_formation_status.decision_formation_status_id. + */ + public final TableField DECISION_FORMATION_STATUS_ID = createField(DSL.name("decision_formation_status_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.decision_formation_status.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.decision_formation_status.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column + * init_registration_info.decision_formation_status.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.decision_formation_status.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public final TableField INFO_SOURCE = createField(DSL.name("info_source"), SQLDataType.VARCHAR.nullable(false), this, "информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU"); + + /** + * The column + * init_registration_info.decision_formation_status.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public final TableField INFO_AGE = createField(DSL.name("info_age"), SQLDataType.VARCHAR.nullable(false), this, "Информациия о каком возрасте 17_YEARS, 18_YEAR"); + + /** + * The column + * init_registration_info.decision_formation_status.count_signed. + */ + public final TableField COUNT_SIGNED = createField(DSL.name("count_signed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.decision_formation_status.count_suggested. + * Предпоставлено + */ + public final TableField COUNT_SUGGESTED = createField(DSL.name("count_suggested"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "Предпоставлено"); + + /** + * The column + * init_registration_info.decision_formation_status.count_waiting_sign. + */ + public final TableField COUNT_WAITING_SIGN = createField(DSL.name("count_waiting_sign"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private DecisionFormationStatus(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private DecisionFormationStatus(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. Статус формирования решений"), TableOptions.table(), where); + } + + /** + * Create an aliased + * init_registration_info.decision_formation_status table + * reference + */ + public DecisionFormationStatus(String alias) { + this(DSL.name(alias), DECISION_FORMATION_STATUS); + } + + /** + * Create an aliased + * init_registration_info.decision_formation_status table + * reference + */ + public DecisionFormationStatus(Name alias) { + this(alias, DECISION_FORMATION_STATUS); + } + + /** + * Create a init_registration_info.decision_formation_status + * table reference + */ + public DecisionFormationStatus() { + this(DSL.name("decision_formation_status"), null); + } + + public DecisionFormationStatus(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, DECISION_FORMATION_STATUS); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class DecisionFormationStatusPath extends DecisionFormationStatus implements Path { + public DecisionFormationStatusPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private DecisionFormationStatusPath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public DecisionFormationStatusPath as(String alias) { + return new DecisionFormationStatusPath(DSL.name(alias), this); + } + + @Override + public DecisionFormationStatusPath as(Name alias) { + return new DecisionFormationStatusPath(alias, this); + } + + @Override + public DecisionFormationStatusPath as(Table alias) { + return new DecisionFormationStatusPath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.DECISION_FORMATION_STATUS_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.DECISION_FORMATION_STATUS__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.DECISION_FORMATION_STATUS__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public DecisionFormationStatus as(String alias) { + return new DecisionFormationStatus(DSL.name(alias), this); + } + + @Override + public DecisionFormationStatus as(Name alias) { + return new DecisionFormationStatus(alias, this); + } + + @Override + public DecisionFormationStatus as(Table alias) { + return new DecisionFormationStatus(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public DecisionFormationStatus rename(String name) { + return new DecisionFormationStatus(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public DecisionFormationStatus rename(Name name) { + return new DecisionFormationStatus(name, null); + } + + /** + * Rename this table + */ + @Override + public DecisionFormationStatus rename(Table name) { + return new DecisionFormationStatus(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DecisionFormationStatus where(Condition condition) { + return new DecisionFormationStatus(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DecisionFormationStatus where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DecisionFormationStatus where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DecisionFormationStatus where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DecisionFormationStatus where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DecisionFormationStatus where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DecisionFormationStatus where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public DecisionFormationStatus where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DecisionFormationStatus whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public DecisionFormationStatus whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/IncidentsInfo.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/IncidentsInfo.java new file mode 100644 index 0000000..def88d9 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/IncidentsInfo.java @@ -0,0 +1,328 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.IncidentsInfoRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. Инциденты + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class IncidentsInfo extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.incidents_info + */ + public static final IncidentsInfo INCIDENTS_INFO = new IncidentsInfo(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return IncidentsInfoRecord.class; + } + + /** + * The column + * init_registration_info.incidents_info.incidents_info_id. + */ + public final TableField INCIDENTS_INFO_ID = createField(DSL.name("incidents_info_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.incidents_info.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.incidents_info.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column init_registration_info.incidents_info.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.incidents_info.info_source. + * информация об источнике - PERSONAL_VISIT, EPGU + */ + public final TableField INFO_SOURCE = createField(DSL.name("info_source"), SQLDataType.VARCHAR.nullable(false), this, "информация об источнике - PERSONAL_VISIT, EPGU"); + + /** + * The column init_registration_info.incidents_info.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public final TableField INFO_AGE = createField(DSL.name("info_age"), SQLDataType.VARCHAR.nullable(false), this, "Информациия о каком возрасте 17_YEARS, 18_YEAR"); + + /** + * The column + * init_registration_info.incidents_info.count_without_id_ern. + */ + public final TableField COUNT_WITHOUT_ID_ERN = createField(DSL.name("count_without_id_ern"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.incidents_info.count_discrepancy_epgu_info. + */ + public final TableField COUNT_DISCREPANCY_EPGU_INFO = createField(DSL.name("count_discrepancy_epgu_info"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private IncidentsInfo(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private IncidentsInfo(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. Инциденты"), TableOptions.table(), where); + } + + /** + * Create an aliased init_registration_info.incidents_info + * table reference + */ + public IncidentsInfo(String alias) { + this(DSL.name(alias), INCIDENTS_INFO); + } + + /** + * Create an aliased init_registration_info.incidents_info + * table reference + */ + public IncidentsInfo(Name alias) { + this(alias, INCIDENTS_INFO); + } + + /** + * Create a init_registration_info.incidents_info table + * reference + */ + public IncidentsInfo() { + this(DSL.name("incidents_info"), null); + } + + public IncidentsInfo(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, INCIDENTS_INFO); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class IncidentsInfoPath extends IncidentsInfo implements Path { + public IncidentsInfoPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private IncidentsInfoPath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public IncidentsInfoPath as(String alias) { + return new IncidentsInfoPath(DSL.name(alias), this); + } + + @Override + public IncidentsInfoPath as(Name alias) { + return new IncidentsInfoPath(alias, this); + } + + @Override + public IncidentsInfoPath as(Table alias) { + return new IncidentsInfoPath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.INCIDENTS_INFO_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.INCIDENTS_INFO__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.INCIDENTS_INFO__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public IncidentsInfo as(String alias) { + return new IncidentsInfo(DSL.name(alias), this); + } + + @Override + public IncidentsInfo as(Name alias) { + return new IncidentsInfo(alias, this); + } + + @Override + public IncidentsInfo as(Table alias) { + return new IncidentsInfo(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public IncidentsInfo rename(String name) { + return new IncidentsInfo(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public IncidentsInfo rename(Name name) { + return new IncidentsInfo(name, null); + } + + /** + * Rename this table + */ + @Override + public IncidentsInfo rename(Table name) { + return new IncidentsInfo(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public IncidentsInfo where(Condition condition) { + return new IncidentsInfo(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public IncidentsInfo where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public IncidentsInfo where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public IncidentsInfo where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public IncidentsInfo where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public IncidentsInfo where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public IncidentsInfo where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public IncidentsInfo where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public IncidentsInfo whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public IncidentsInfo whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InfoSentToLkEpgu.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InfoSentToLkEpgu.java new file mode 100644 index 0000000..5e6e56d --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InfoSentToLkEpgu.java @@ -0,0 +1,360 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.InfoSentToLkEpguRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. ДОставка уведомлений в ЛК на ЕПГУ + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InfoSentToLkEpgu extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.info_sent_to_lk_epgu + */ + public static final InfoSentToLkEpgu INFO_SENT_TO_LK_EPGU = new InfoSentToLkEpgu(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return InfoSentToLkEpguRecord.class; + } + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.info_sent_to_lk_epgu_id. + */ + public final TableField INFO_SENT_TO_LK_EPGU_ID = createField(DSL.name("info_sent_to_lk_epgu_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public final TableField INFO_SOURCE = createField(DSL.name("info_source"), SQLDataType.VARCHAR.nullable(false), this, "информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU"); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public final TableField INFO_AGE = createField(DSL.name("info_age"), SQLDataType.VARCHAR.nullable(false), this, "Информациия о каком возрасте 17_YEARS, 18_YEAR"); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.count_status_formed. + */ + public final TableField COUNT_STATUS_FORMED = createField(DSL.name("count_status_formed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.count_sended. + */ + public final TableField COUNT_SENDED = createField(DSL.name("count_sended"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.count_delivered. + */ + public final TableField COUNT_DELIVERED = createField(DSL.name("count_delivered"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.count_error. + */ + public final TableField COUNT_ERROR = createField(DSL.name("count_error"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.count_viewed. + */ + public final TableField COUNT_VIEWED = createField(DSL.name("count_viewed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.count_not_viewed. + */ + public final TableField COUNT_NOT_VIEWED = createField(DSL.name("count_not_viewed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.info_sent_to_lk_epgu.count_status_not_formed. + */ + public final TableField COUNT_STATUS_NOT_FORMED = createField(DSL.name("count_status_not_formed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private InfoSentToLkEpgu(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private InfoSentToLkEpgu(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. ДОставка уведомлений в ЛК на ЕПГУ"), TableOptions.table(), where); + } + + /** + * Create an aliased + * init_registration_info.info_sent_to_lk_epgu table reference + */ + public InfoSentToLkEpgu(String alias) { + this(DSL.name(alias), INFO_SENT_TO_LK_EPGU); + } + + /** + * Create an aliased + * init_registration_info.info_sent_to_lk_epgu table reference + */ + public InfoSentToLkEpgu(Name alias) { + this(alias, INFO_SENT_TO_LK_EPGU); + } + + /** + * Create a init_registration_info.info_sent_to_lk_epgu table + * reference + */ + public InfoSentToLkEpgu() { + this(DSL.name("info_sent_to_lk_epgu"), null); + } + + public InfoSentToLkEpgu(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, INFO_SENT_TO_LK_EPGU); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class InfoSentToLkEpguPath extends InfoSentToLkEpgu implements Path { + public InfoSentToLkEpguPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private InfoSentToLkEpguPath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public InfoSentToLkEpguPath as(String alias) { + return new InfoSentToLkEpguPath(DSL.name(alias), this); + } + + @Override + public InfoSentToLkEpguPath as(Name alias) { + return new InfoSentToLkEpguPath(alias, this); + } + + @Override + public InfoSentToLkEpguPath as(Table alias) { + return new InfoSentToLkEpguPath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.INFO_SENT_TO_LK_EPGU_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.INFO_SENT_TO_LK_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.INFO_SENT_TO_LK_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public InfoSentToLkEpgu as(String alias) { + return new InfoSentToLkEpgu(DSL.name(alias), this); + } + + @Override + public InfoSentToLkEpgu as(Name alias) { + return new InfoSentToLkEpgu(alias, this); + } + + @Override + public InfoSentToLkEpgu as(Table alias) { + return new InfoSentToLkEpgu(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public InfoSentToLkEpgu rename(String name) { + return new InfoSentToLkEpgu(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public InfoSentToLkEpgu rename(Name name) { + return new InfoSentToLkEpgu(name, null); + } + + /** + * Rename this table + */ + @Override + public InfoSentToLkEpgu rename(Table name) { + return new InfoSentToLkEpgu(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InfoSentToLkEpgu where(Condition condition) { + return new InfoSentToLkEpgu(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InfoSentToLkEpgu where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InfoSentToLkEpgu where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InfoSentToLkEpgu where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InfoSentToLkEpgu where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InfoSentToLkEpgu where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InfoSentToLkEpgu where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InfoSentToLkEpgu where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InfoSentToLkEpgu whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InfoSentToLkEpgu whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InitRegistrationFromGirVu.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InitRegistrationFromGirVu.java new file mode 100644 index 0000000..abd6113 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/InitRegistrationFromGirVu.java @@ -0,0 +1,326 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.InitRegistrationFromGirVuRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InitRegistrationFromGirVu extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.init_registration_from_gir_vu + */ + public static final InitRegistrationFromGirVu INIT_REGISTRATION_FROM_GIR_VU = new InitRegistrationFromGirVu(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return InitRegistrationFromGirVuRecord.class; + } + + /** + * The column + * init_registration_info.init_registration_from_gir_vu.init_registration_from_gir_vu_id. + */ + public final TableField INIT_REGISTRATION_FROM_GIR_VU_ID = createField(DSL.name("init_registration_from_gir_vu_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.init_registration_from_gir_vu.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.init_registration_from_gir_vu.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column + * init_registration_info.init_registration_from_gir_vu.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.init_registration_from_gir_vu.count_all. + */ + public final TableField COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.init_registration_from_gir_vu.count_womens. + */ + public final TableField COUNT_WOMENS = createField(DSL.name("count_womens"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.init_registration_from_gir_vu.count_received_citizenship. + */ + public final TableField COUNT_RECEIVED_CITIZENSHIP = createField(DSL.name("count_received_citizenship"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private InitRegistrationFromGirVu(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private InitRegistrationFromGirVu(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. Первоначальная постановка на учет по данным из ГИР ВУ"), TableOptions.table(), where); + } + + /** + * Create an aliased + * init_registration_info.init_registration_from_gir_vu table + * reference + */ + public InitRegistrationFromGirVu(String alias) { + this(DSL.name(alias), INIT_REGISTRATION_FROM_GIR_VU); + } + + /** + * Create an aliased + * init_registration_info.init_registration_from_gir_vu table + * reference + */ + public InitRegistrationFromGirVu(Name alias) { + this(alias, INIT_REGISTRATION_FROM_GIR_VU); + } + + /** + * Create a + * init_registration_info.init_registration_from_gir_vu table + * reference + */ + public InitRegistrationFromGirVu() { + this(DSL.name("init_registration_from_gir_vu"), null); + } + + public InitRegistrationFromGirVu(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, INIT_REGISTRATION_FROM_GIR_VU); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class InitRegistrationFromGirVuPath extends InitRegistrationFromGirVu implements Path { + public InitRegistrationFromGirVuPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private InitRegistrationFromGirVuPath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public InitRegistrationFromGirVuPath as(String alias) { + return new InitRegistrationFromGirVuPath(DSL.name(alias), this); + } + + @Override + public InitRegistrationFromGirVuPath as(Name alias) { + return new InitRegistrationFromGirVuPath(alias, this); + } + + @Override + public InitRegistrationFromGirVuPath as(Table alias) { + return new InitRegistrationFromGirVuPath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.INIT_REGISTRATION_FROM_GIR_VU_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.INIT_REGISTRATION_FROM_GIR_VU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.INIT_REGISTRATION_FROM_GIR_VU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public InitRegistrationFromGirVu as(String alias) { + return new InitRegistrationFromGirVu(DSL.name(alias), this); + } + + @Override + public InitRegistrationFromGirVu as(Name alias) { + return new InitRegistrationFromGirVu(alias, this); + } + + @Override + public InitRegistrationFromGirVu as(Table alias) { + return new InitRegistrationFromGirVu(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public InitRegistrationFromGirVu rename(String name) { + return new InitRegistrationFromGirVu(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public InitRegistrationFromGirVu rename(Name name) { + return new InitRegistrationFromGirVu(name, null); + } + + /** + * Rename this table + */ + @Override + public InitRegistrationFromGirVu rename(Table name) { + return new InitRegistrationFromGirVu(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InitRegistrationFromGirVu where(Condition condition) { + return new InitRegistrationFromGirVu(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InitRegistrationFromGirVu where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InitRegistrationFromGirVu where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InitRegistrationFromGirVu where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InitRegistrationFromGirVu where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InitRegistrationFromGirVu where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InitRegistrationFromGirVu where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public InitRegistrationFromGirVu where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InitRegistrationFromGirVu whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public InitRegistrationFromGirVu whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/RecordsInfoIdUkIdErn.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/RecordsInfoIdUkIdErn.java new file mode 100644 index 0000000..62bfe7b --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/RecordsInfoIdUkIdErn.java @@ -0,0 +1,344 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.RecordsInfoIdUkIdErnRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. Информация о налиции ИД ЕРН и ИД УК + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RecordsInfoIdUkIdErn extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.records_info_id_uk_id_ern + */ + public static final RecordsInfoIdUkIdErn RECORDS_INFO_ID_UK_ID_ERN = new RecordsInfoIdUkIdErn(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return RecordsInfoIdUkIdErnRecord.class; + } + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.records_info_id_uk_id_ern_id. + */ + public final TableField RECORDS_INFO_ID_UK_ID_ERN_ID = createField(DSL.name("records_info_id_uk_id_ern_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.info_source. + * Источник - PERSONAL_VISIT, GIR_VU, EPGU + */ + public final TableField INFO_SOURCE = createField(DSL.name("info_source"), SQLDataType.VARCHAR.nullable(false), this, "Источник - PERSONAL_VISIT, GIR_VU, EPGU"); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public final TableField INFO_AGE = createField(DSL.name("info_age"), SQLDataType.VARCHAR.nullable(false), this, "Информациия о каком возрасте 17_YEARS, 18_YEAR"); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.count_all. + */ + public final TableField COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.records_with_id_uk. + */ + public final TableField RECORDS_WITH_ID_UK = createField(DSL.name("records_with_id_uk"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.records_without_id_uk. + */ + public final TableField RECORDS_WITHOUT_ID_UK = createField(DSL.name("records_without_id_uk"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.records_info_id_uk_id_ern.records_with_id_ern. + */ + public final TableField RECORDS_WITH_ID_ERN = createField(DSL.name("records_with_id_ern"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private RecordsInfoIdUkIdErn(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private RecordsInfoIdUkIdErn(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. Информация о налиции ИД ЕРН и ИД УК"), TableOptions.table(), where); + } + + /** + * Create an aliased + * init_registration_info.records_info_id_uk_id_ern table + * reference + */ + public RecordsInfoIdUkIdErn(String alias) { + this(DSL.name(alias), RECORDS_INFO_ID_UK_ID_ERN); + } + + /** + * Create an aliased + * init_registration_info.records_info_id_uk_id_ern table + * reference + */ + public RecordsInfoIdUkIdErn(Name alias) { + this(alias, RECORDS_INFO_ID_UK_ID_ERN); + } + + /** + * Create a init_registration_info.records_info_id_uk_id_ern + * table reference + */ + public RecordsInfoIdUkIdErn() { + this(DSL.name("records_info_id_uk_id_ern"), null); + } + + public RecordsInfoIdUkIdErn(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, RECORDS_INFO_ID_UK_ID_ERN); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class RecordsInfoIdUkIdErnPath extends RecordsInfoIdUkIdErn implements Path { + public RecordsInfoIdUkIdErnPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private RecordsInfoIdUkIdErnPath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public RecordsInfoIdUkIdErnPath as(String alias) { + return new RecordsInfoIdUkIdErnPath(DSL.name(alias), this); + } + + @Override + public RecordsInfoIdUkIdErnPath as(Name alias) { + return new RecordsInfoIdUkIdErnPath(alias, this); + } + + @Override + public RecordsInfoIdUkIdErnPath as(Table alias) { + return new RecordsInfoIdUkIdErnPath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.RECORDS_INFO_ID_UK_ID_ERN_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.RECORDS_INFO_ID_UK_ID_ERN__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.RECORDS_INFO_ID_UK_ID_ERN__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public RecordsInfoIdUkIdErn as(String alias) { + return new RecordsInfoIdUkIdErn(DSL.name(alias), this); + } + + @Override + public RecordsInfoIdUkIdErn as(Name alias) { + return new RecordsInfoIdUkIdErn(alias, this); + } + + @Override + public RecordsInfoIdUkIdErn as(Table alias) { + return new RecordsInfoIdUkIdErn(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public RecordsInfoIdUkIdErn rename(String name) { + return new RecordsInfoIdUkIdErn(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public RecordsInfoIdUkIdErn rename(Name name) { + return new RecordsInfoIdUkIdErn(name, null); + } + + /** + * Rename this table + */ + @Override + public RecordsInfoIdUkIdErn rename(Table name) { + return new RecordsInfoIdUkIdErn(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RecordsInfoIdUkIdErn where(Condition condition) { + return new RecordsInfoIdUkIdErn(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RecordsInfoIdUkIdErn where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RecordsInfoIdUkIdErn where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RecordsInfoIdUkIdErn where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RecordsInfoIdUkIdErn where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RecordsInfoIdUkIdErn where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RecordsInfoIdUkIdErn where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public RecordsInfoIdUkIdErn where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RecordsInfoIdUkIdErn whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public RecordsInfoIdUkIdErn whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/StatusesDecisionsOnEpgu.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/StatusesDecisionsOnEpgu.java new file mode 100644 index 0000000..9243340 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/StatusesDecisionsOnEpgu.java @@ -0,0 +1,325 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.InitRegistrationInfo; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records.StatusesDecisionsOnEpguRecord; +import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.Recruitment.RecruitmentPath; + +import java.sql.Date; +import java.sql.Timestamp; +import java.util.Arrays; +import java.util.Collection; +import java.util.List; + +import org.jooq.Condition; +import org.jooq.Field; +import org.jooq.ForeignKey; +import org.jooq.Identity; +import org.jooq.InverseForeignKey; +import org.jooq.Name; +import org.jooq.Path; +import org.jooq.PlainSQL; +import org.jooq.QueryPart; +import org.jooq.Record; +import org.jooq.SQL; +import org.jooq.Schema; +import org.jooq.Select; +import org.jooq.Stringly; +import org.jooq.Table; +import org.jooq.TableField; +import org.jooq.TableOptions; +import org.jooq.UniqueKey; +import org.jooq.impl.DSL; +import org.jooq.impl.SQLDataType; +import org.jooq.impl.TableImpl; + + +/** + * Первоначальная постановка на учет. Статусы решений по Первоначальной + * постановке на учет(ЕПГУ) + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class StatusesDecisionsOnEpgu extends TableImpl { + + private static final long serialVersionUID = 1L; + + /** + * The reference instance of + * init_registration_info.statuses_decisions_on_epgu + */ + public static final StatusesDecisionsOnEpgu STATUSES_DECISIONS_ON_EPGU = new StatusesDecisionsOnEpgu(); + + /** + * The class holding records for this type + */ + @Override + public Class getRecordType() { + return StatusesDecisionsOnEpguRecord.class; + } + + /** + * The column + * init_registration_info.statuses_decisions_on_epgu.statuses_decisions_on_epgu_id. + */ + public final TableField STATUSES_DECISIONS_ON_EPGU_ID = createField(DSL.name("statuses_decisions_on_epgu_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, ""); + + /** + * The column + * init_registration_info.statuses_decisions_on_epgu.recruitment_id. + */ + public final TableField RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, ""); + + /** + * The column + * init_registration_info.statuses_decisions_on_epgu.update_date. + */ + public final TableField UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, ""); + + /** + * The column + * init_registration_info.statuses_decisions_on_epgu.info_date. + */ + public final TableField INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, ""); + + /** + * The column + * init_registration_info.statuses_decisions_on_epgu.count_loaded. + */ + public final TableField COUNT_LOADED = createField(DSL.name("count_loaded"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.statuses_decisions_on_epgu.count_signed. + */ + public final TableField COUNT_SIGNED = createField(DSL.name("count_signed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + /** + * The column + * init_registration_info.statuses_decisions_on_epgu.count_formed_for_signing. + */ + public final TableField COUNT_FORMED_FOR_SIGNING = createField(DSL.name("count_formed_for_signing"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, ""); + + private StatusesDecisionsOnEpgu(Name alias, Table aliased) { + this(alias, aliased, (Field[]) null, null); + } + + private StatusesDecisionsOnEpgu(Name alias, Table aliased, Field[] parameters, Condition where) { + super(alias, null, aliased, parameters, DSL.comment("Первоначальная постановка на учет. Статусы решений по Первоначальной постановке на учет(ЕПГУ)"), TableOptions.table(), where); + } + + /** + * Create an aliased + * init_registration_info.statuses_decisions_on_epgu table + * reference + */ + public StatusesDecisionsOnEpgu(String alias) { + this(DSL.name(alias), STATUSES_DECISIONS_ON_EPGU); + } + + /** + * Create an aliased + * init_registration_info.statuses_decisions_on_epgu table + * reference + */ + public StatusesDecisionsOnEpgu(Name alias) { + this(alias, STATUSES_DECISIONS_ON_EPGU); + } + + /** + * Create a init_registration_info.statuses_decisions_on_epgu + * table reference + */ + public StatusesDecisionsOnEpgu() { + this(DSL.name("statuses_decisions_on_epgu"), null); + } + + public StatusesDecisionsOnEpgu(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath, STATUSES_DECISIONS_ON_EPGU); + } + + /** + * A subtype implementing {@link Path} for simplified path-based joins. + */ + public static class StatusesDecisionsOnEpguPath extends StatusesDecisionsOnEpgu implements Path { + public StatusesDecisionsOnEpguPath(Table path, ForeignKey childPath, InverseForeignKey parentPath) { + super(path, childPath, parentPath); + } + private StatusesDecisionsOnEpguPath(Name alias, Table aliased) { + super(alias, aliased); + } + + @Override + public StatusesDecisionsOnEpguPath as(String alias) { + return new StatusesDecisionsOnEpguPath(DSL.name(alias), this); + } + + @Override + public StatusesDecisionsOnEpguPath as(Name alias) { + return new StatusesDecisionsOnEpguPath(alias, this); + } + + @Override + public StatusesDecisionsOnEpguPath as(Table alias) { + return new StatusesDecisionsOnEpguPath(alias.getQualifiedName(), this); + } + } + + @Override + public Schema getSchema() { + return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO; + } + + @Override + public Identity getIdentity() { + return (Identity) super.getIdentity(); + } + + @Override + public UniqueKey getPrimaryKey() { + return Keys.STATUSES_DECISIONS_ON_EPGU_PKEY; + } + + @Override + public List> getReferences() { + return Arrays.asList(Keys.STATUSES_DECISIONS_ON_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID); + } + + private transient RecruitmentPath _recruitment; + + /** + * Get the implicit join path to the metrics.recruitment table. + */ + public RecruitmentPath recruitment() { + if (_recruitment == null) + _recruitment = new RecruitmentPath(this, Keys.STATUSES_DECISIONS_ON_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID, null); + + return _recruitment; + } + + @Override + public StatusesDecisionsOnEpgu as(String alias) { + return new StatusesDecisionsOnEpgu(DSL.name(alias), this); + } + + @Override + public StatusesDecisionsOnEpgu as(Name alias) { + return new StatusesDecisionsOnEpgu(alias, this); + } + + @Override + public StatusesDecisionsOnEpgu as(Table alias) { + return new StatusesDecisionsOnEpgu(alias.getQualifiedName(), this); + } + + /** + * Rename this table + */ + @Override + public StatusesDecisionsOnEpgu rename(String name) { + return new StatusesDecisionsOnEpgu(DSL.name(name), null); + } + + /** + * Rename this table + */ + @Override + public StatusesDecisionsOnEpgu rename(Name name) { + return new StatusesDecisionsOnEpgu(name, null); + } + + /** + * Rename this table + */ + @Override + public StatusesDecisionsOnEpgu rename(Table name) { + return new StatusesDecisionsOnEpgu(name.getQualifiedName(), null); + } + + /** + * Create an inline derived table from this table + */ + @Override + public StatusesDecisionsOnEpgu where(Condition condition) { + return new StatusesDecisionsOnEpgu(getQualifiedName(), aliased() ? this : null, null, condition); + } + + /** + * Create an inline derived table from this table + */ + @Override + public StatusesDecisionsOnEpgu where(Collection conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public StatusesDecisionsOnEpgu where(Condition... conditions) { + return where(DSL.and(conditions)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public StatusesDecisionsOnEpgu where(Field condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public StatusesDecisionsOnEpgu where(SQL condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public StatusesDecisionsOnEpgu where(@Stringly.SQL String condition) { + return where(DSL.condition(condition)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public StatusesDecisionsOnEpgu where(@Stringly.SQL String condition, Object... binds) { + return where(DSL.condition(condition, binds)); + } + + /** + * Create an inline derived table from this table + */ + @Override + @PlainSQL + public StatusesDecisionsOnEpgu where(@Stringly.SQL String condition, QueryPart... parts) { + return where(DSL.condition(condition, parts)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public StatusesDecisionsOnEpgu whereExists(Select select) { + return where(DSL.exists(select)); + } + + /** + * Create an inline derived table from this table + */ + @Override + public StatusesDecisionsOnEpgu whereNotExists(Select select) { + return where(DSL.notExists(select)); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/ApplicationsReceivedFromEpguRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/ApplicationsReceivedFromEpguRecord.java new file mode 100644 index 0000000..9d0d02b --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/ApplicationsReceivedFromEpguRecord.java @@ -0,0 +1,206 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.ApplicationsReceivedFromEpgu; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class ApplicationsReceivedFromEpguRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.applications_received_from_epgu_id. + */ + public void setApplicationsReceivedFromEpguId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.applications_received_from_epgu_id. + */ + public Long getApplicationsReceivedFromEpguId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.count_all. + */ + public void setCountAll(Long value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.count_all. + */ + public Long getCountAll() { + return (Long) get(4); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.count_executor_appointed. + */ + public void setCountExecutorAppointed(Long value) { + set(5, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.count_executor_appointed. + */ + public Long getCountExecutorAppointed() { + return (Long) get(5); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.count_registered. + */ + public void setCountRegistered(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.count_registered. + */ + public Long getCountRegistered() { + return (Long) get(6); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.count_registration_refusal. + */ + public void setCountRegistrationRefusal(Long value) { + set(7, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.count_registration_refusal. + */ + public Long getCountRegistrationRefusal() { + return (Long) get(7); + } + + /** + * Setter for + * init_registration_info.applications_received_from_epgu.count_refusal_provide_service. + */ + public void setCountRefusalProvideService(Long value) { + set(8, value); + } + + /** + * Getter for + * init_registration_info.applications_received_from_epgu.count_refusal_provide_service. + */ + public Long getCountRefusalProvideService() { + return (Long) get(8); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached ApplicationsReceivedFromEpguRecord + */ + public ApplicationsReceivedFromEpguRecord() { + super(ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU); + } + + /** + * Create a detached, initialised ApplicationsReceivedFromEpguRecord + */ + public ApplicationsReceivedFromEpguRecord(Long applicationsReceivedFromEpguId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countAll, Long countExecutorAppointed, Long countRegistered, Long countRegistrationRefusal, Long countRefusalProvideService) { + super(ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU); + + setApplicationsReceivedFromEpguId(applicationsReceivedFromEpguId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setCountAll(countAll); + setCountExecutorAppointed(countExecutorAppointed); + setCountRegistered(countRegistered); + setCountRegistrationRefusal(countRegistrationRefusal); + setCountRefusalProvideService(countRefusalProvideService); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/CitizensNextYearAgeRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/CitizensNextYearAgeRecord.java new file mode 100644 index 0000000..1db3a2d --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/CitizensNextYearAgeRecord.java @@ -0,0 +1,176 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.CitizensNextYearAge; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. Данные по количеству гражан на учете в + * возрасте 17 или 18 лет и по источнику самих данных + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class CitizensNextYearAgeRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.citizens_next_year_age.citizens_next_year_age_id. + */ + public void setCitizensNextYearAgeId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.citizens_next_year_age.citizens_next_year_age_id. + */ + public Long getCitizensNextYearAgeId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.citizens_next_year_age.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.citizens_next_year_age.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.citizens_next_year_age.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.citizens_next_year_age.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for + * init_registration_info.citizens_next_year_age.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for + * init_registration_info.citizens_next_year_age.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.citizens_next_year_age.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public void setInfoSource(String value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.citizens_next_year_age.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public String getInfoSource() { + return (String) get(4); + } + + /** + * Setter for + * init_registration_info.citizens_next_year_age.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public void setInfoAge(String value) { + set(5, value); + } + + /** + * Getter for + * init_registration_info.citizens_next_year_age.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public String getInfoAge() { + return (String) get(5); + } + + /** + * Setter for + * init_registration_info.citizens_next_year_age.count_all. + */ + public void setCountAll(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.citizens_next_year_age.count_all. + */ + public Long getCountAll() { + return (Long) get(6); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached CitizensNextYearAgeRecord + */ + public CitizensNextYearAgeRecord() { + super(CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE); + } + + /** + * Create a detached, initialised CitizensNextYearAgeRecord + */ + public CitizensNextYearAgeRecord(Long citizensNextYearAgeId, String recruitmentId, Timestamp updateDate, Date infoDate, String infoSource, String infoAge, Long countAll) { + super(CitizensNextYearAge.CITIZENS_NEXT_YEAR_AGE); + + setCitizensNextYearAgeId(citizensNextYearAgeId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setInfoSource(infoSource); + setInfoAge(infoAge); + setCountAll(countAll); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/DecisionFormationStatusRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/DecisionFormationStatusRecord.java new file mode 100644 index 0000000..2c77ba4 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/DecisionFormationStatusRecord.java @@ -0,0 +1,211 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.DecisionFormationStatus; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. Статус формирования решений + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class DecisionFormationStatusRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.decision_formation_status.decision_formation_status_id. + */ + public void setDecisionFormationStatusId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.decision_formation_status_id. + */ + public Long getDecisionFormationStatusId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public void setInfoSource(String value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public String getInfoSource() { + return (String) get(4); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public void setInfoAge(String value) { + set(5, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public String getInfoAge() { + return (String) get(5); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.count_signed. + */ + public void setCountSigned(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.count_signed. + */ + public Long getCountSigned() { + return (Long) get(6); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.count_suggested. + * Предпоставлено + */ + public void setCountSuggested(Long value) { + set(7, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.count_suggested. + * Предпоставлено + */ + public Long getCountSuggested() { + return (Long) get(7); + } + + /** + * Setter for + * init_registration_info.decision_formation_status.count_waiting_sign. + */ + public void setCountWaitingSign(Long value) { + set(8, value); + } + + /** + * Getter for + * init_registration_info.decision_formation_status.count_waiting_sign. + */ + public Long getCountWaitingSign() { + return (Long) get(8); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached DecisionFormationStatusRecord + */ + public DecisionFormationStatusRecord() { + super(DecisionFormationStatus.DECISION_FORMATION_STATUS); + } + + /** + * Create a detached, initialised DecisionFormationStatusRecord + */ + public DecisionFormationStatusRecord(Long decisionFormationStatusId, String recruitmentId, Timestamp updateDate, Date infoDate, String infoSource, String infoAge, Long countSigned, Long countSuggested, Long countWaitingSign) { + super(DecisionFormationStatus.DECISION_FORMATION_STATUS); + + setDecisionFormationStatusId(decisionFormationStatusId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setInfoSource(infoSource); + setInfoAge(infoAge); + setCountSigned(countSigned); + setCountSuggested(countSuggested); + setCountWaitingSign(countWaitingSign); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/IncidentsInfoRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/IncidentsInfoRecord.java new file mode 100644 index 0000000..015a88f --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/IncidentsInfoRecord.java @@ -0,0 +1,188 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.IncidentsInfo; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. Инциденты + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class IncidentsInfoRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.incidents_info.incidents_info_id. + */ + public void setIncidentsInfoId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.incidents_info.incidents_info_id. + */ + public Long getIncidentsInfoId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.incidents_info.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.incidents_info.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.incidents_info.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.incidents_info.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for init_registration_info.incidents_info.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for init_registration_info.incidents_info.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.incidents_info.info_source. + * информация об источнике - PERSONAL_VISIT, EPGU + */ + public void setInfoSource(String value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.incidents_info.info_source. + * информация об источнике - PERSONAL_VISIT, EPGU + */ + public String getInfoSource() { + return (String) get(4); + } + + /** + * Setter for init_registration_info.incidents_info.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public void setInfoAge(String value) { + set(5, value); + } + + /** + * Getter for init_registration_info.incidents_info.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public String getInfoAge() { + return (String) get(5); + } + + /** + * Setter for + * init_registration_info.incidents_info.count_without_id_ern. + */ + public void setCountWithoutIdErn(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.incidents_info.count_without_id_ern. + */ + public Long getCountWithoutIdErn() { + return (Long) get(6); + } + + /** + * Setter for + * init_registration_info.incidents_info.count_discrepancy_epgu_info. + */ + public void setCountDiscrepancyEpguInfo(Long value) { + set(7, value); + } + + /** + * Getter for + * init_registration_info.incidents_info.count_discrepancy_epgu_info. + */ + public Long getCountDiscrepancyEpguInfo() { + return (Long) get(7); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached IncidentsInfoRecord + */ + public IncidentsInfoRecord() { + super(IncidentsInfo.INCIDENTS_INFO); + } + + /** + * Create a detached, initialised IncidentsInfoRecord + */ + public IncidentsInfoRecord(Long incidentsInfoId, String recruitmentId, Timestamp updateDate, Date infoDate, String infoSource, String infoAge, Long countWithoutIdErn, Long countDiscrepancyEpguInfo) { + super(IncidentsInfo.INCIDENTS_INFO); + + setIncidentsInfoId(incidentsInfoId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setInfoSource(infoSource); + setInfoAge(infoAge); + setCountWithoutIdErn(countWithoutIdErn); + setCountDiscrepancyEpguInfo(countDiscrepancyEpguInfo); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InfoSentToLkEpguRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InfoSentToLkEpguRecord.java new file mode 100644 index 0000000..8dc310a --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InfoSentToLkEpguRecord.java @@ -0,0 +1,277 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InfoSentToLkEpgu; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. ДОставка уведомлений в ЛК на ЕПГУ + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InfoSentToLkEpguRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.info_sent_to_lk_epgu_id. + */ + public void setInfoSentToLkEpguId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.info_sent_to_lk_epgu_id. + */ + public Long getInfoSentToLkEpguId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public void setInfoSource(String value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.info_source. + * информация об источнике - PERSONAL_VISIT, GIR_VU, EPGU + */ + public String getInfoSource() { + return (String) get(4); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public void setInfoAge(String value) { + set(5, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public String getInfoAge() { + return (String) get(5); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.count_status_formed. + */ + public void setCountStatusFormed(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.count_status_formed. + */ + public Long getCountStatusFormed() { + return (Long) get(6); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.count_sended. + */ + public void setCountSended(Long value) { + set(7, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.count_sended. + */ + public Long getCountSended() { + return (Long) get(7); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.count_delivered. + */ + public void setCountDelivered(Long value) { + set(8, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.count_delivered. + */ + public Long getCountDelivered() { + return (Long) get(8); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.count_error. + */ + public void setCountError(Long value) { + set(9, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.count_error. + */ + public Long getCountError() { + return (Long) get(9); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.count_viewed. + */ + public void setCountViewed(Long value) { + set(10, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.count_viewed. + */ + public Long getCountViewed() { + return (Long) get(10); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.count_not_viewed. + */ + public void setCountNotViewed(Long value) { + set(11, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.count_not_viewed. + */ + public Long getCountNotViewed() { + return (Long) get(11); + } + + /** + * Setter for + * init_registration_info.info_sent_to_lk_epgu.count_status_not_formed. + */ + public void setCountStatusNotFormed(Long value) { + set(12, value); + } + + /** + * Getter for + * init_registration_info.info_sent_to_lk_epgu.count_status_not_formed. + */ + public Long getCountStatusNotFormed() { + return (Long) get(12); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached InfoSentToLkEpguRecord + */ + public InfoSentToLkEpguRecord() { + super(InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU); + } + + /** + * Create a detached, initialised InfoSentToLkEpguRecord + */ + public InfoSentToLkEpguRecord(Long infoSentToLkEpguId, String recruitmentId, Timestamp updateDate, Date infoDate, String infoSource, String infoAge, Long countStatusFormed, Long countSended, Long countDelivered, Long countError, Long countViewed, Long countNotViewed, Long countStatusNotFormed) { + super(InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU); + + setInfoSentToLkEpguId(infoSentToLkEpguId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setInfoSource(infoSource); + setInfoAge(infoAge); + setCountStatusFormed(countStatusFormed); + setCountSended(countSended); + setCountDelivered(countDelivered); + setCountError(countError); + setCountViewed(countViewed); + setCountNotViewed(countNotViewed); + setCountStatusNotFormed(countStatusNotFormed); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InitRegistrationFromGirVuRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InitRegistrationFromGirVuRecord.java new file mode 100644 index 0000000..09fb59b --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/InitRegistrationFromGirVuRecord.java @@ -0,0 +1,172 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InitRegistrationFromGirVu; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. Первоначальная постановка на учет по + * данным из ГИР ВУ + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class InitRegistrationFromGirVuRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.init_registration_from_gir_vu.init_registration_from_gir_vu_id. + */ + public void setInitRegistrationFromGirVuId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.init_registration_from_gir_vu.init_registration_from_gir_vu_id. + */ + public Long getInitRegistrationFromGirVuId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.init_registration_from_gir_vu.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.init_registration_from_gir_vu.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.init_registration_from_gir_vu.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.init_registration_from_gir_vu.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for + * init_registration_info.init_registration_from_gir_vu.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for + * init_registration_info.init_registration_from_gir_vu.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.init_registration_from_gir_vu.count_all. + */ + public void setCountAll(Long value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.init_registration_from_gir_vu.count_all. + */ + public Long getCountAll() { + return (Long) get(4); + } + + /** + * Setter for + * init_registration_info.init_registration_from_gir_vu.count_womens. + */ + public void setCountWomens(Long value) { + set(5, value); + } + + /** + * Getter for + * init_registration_info.init_registration_from_gir_vu.count_womens. + */ + public Long getCountWomens() { + return (Long) get(5); + } + + /** + * Setter for + * init_registration_info.init_registration_from_gir_vu.count_received_citizenship. + */ + public void setCountReceivedCitizenship(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.init_registration_from_gir_vu.count_received_citizenship. + */ + public Long getCountReceivedCitizenship() { + return (Long) get(6); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached InitRegistrationFromGirVuRecord + */ + public InitRegistrationFromGirVuRecord() { + super(InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU); + } + + /** + * Create a detached, initialised InitRegistrationFromGirVuRecord + */ + public InitRegistrationFromGirVuRecord(Long initRegistrationFromGirVuId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countAll, Long countWomens, Long countReceivedCitizenship) { + super(InitRegistrationFromGirVu.INIT_REGISTRATION_FROM_GIR_VU); + + setInitRegistrationFromGirVuId(initRegistrationFromGirVuId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setCountAll(countAll); + setCountWomens(countWomens); + setCountReceivedCitizenship(countReceivedCitizenship); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/RecordsInfoIdUkIdErnRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/RecordsInfoIdUkIdErnRecord.java new file mode 100644 index 0000000..1a186a2 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/RecordsInfoIdUkIdErnRecord.java @@ -0,0 +1,226 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.RecordsInfoIdUkIdErn; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. Информация о налиции ИД ЕРН и ИД УК + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class RecordsInfoIdUkIdErnRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.records_info_id_uk_id_ern_id. + */ + public void setRecordsInfoIdUkIdErnId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.records_info_id_uk_id_ern_id. + */ + public Long getRecordsInfoIdUkIdErnId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.info_source. + * Источник - PERSONAL_VISIT, GIR_VU, EPGU + */ + public void setInfoSource(String value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.info_source. + * Источник - PERSONAL_VISIT, GIR_VU, EPGU + */ + public String getInfoSource() { + return (String) get(4); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public void setInfoAge(String value) { + set(5, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.info_age. + * Информациия о каком возрасте 17_YEARS, 18_YEAR + */ + public String getInfoAge() { + return (String) get(5); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.count_all. + */ + public void setCountAll(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.count_all. + */ + public Long getCountAll() { + return (Long) get(6); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.records_with_id_uk. + */ + public void setRecordsWithIdUk(Long value) { + set(7, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.records_with_id_uk. + */ + public Long getRecordsWithIdUk() { + return (Long) get(7); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.records_without_id_uk. + */ + public void setRecordsWithoutIdUk(Long value) { + set(8, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.records_without_id_uk. + */ + public Long getRecordsWithoutIdUk() { + return (Long) get(8); + } + + /** + * Setter for + * init_registration_info.records_info_id_uk_id_ern.records_with_id_ern. + */ + public void setRecordsWithIdErn(Long value) { + set(9, value); + } + + /** + * Getter for + * init_registration_info.records_info_id_uk_id_ern.records_with_id_ern. + */ + public Long getRecordsWithIdErn() { + return (Long) get(9); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached RecordsInfoIdUkIdErnRecord + */ + public RecordsInfoIdUkIdErnRecord() { + super(RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN); + } + + /** + * Create a detached, initialised RecordsInfoIdUkIdErnRecord + */ + public RecordsInfoIdUkIdErnRecord(Long recordsInfoIdUkIdErnId, String recruitmentId, Timestamp updateDate, Date infoDate, String infoSource, String infoAge, Long countAll, Long recordsWithIdUk, Long recordsWithoutIdUk, Long recordsWithIdErn) { + super(RecordsInfoIdUkIdErn.RECORDS_INFO_ID_UK_ID_ERN); + + setRecordsInfoIdUkIdErnId(recordsInfoIdUkIdErnId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setInfoSource(infoSource); + setInfoAge(infoAge); + setCountAll(countAll); + setRecordsWithIdUk(recordsWithIdUk); + setRecordsWithoutIdUk(recordsWithoutIdUk); + setRecordsWithIdErn(recordsWithIdErn); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/StatusesDecisionsOnEpguRecord.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/StatusesDecisionsOnEpguRecord.java new file mode 100644 index 0000000..05e45a7 --- /dev/null +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/init_registration_info/tables/records/StatusesDecisionsOnEpguRecord.java @@ -0,0 +1,172 @@ +/* + * This file is generated by jOOQ. + */ +package ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.records; + + +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.StatusesDecisionsOnEpgu; + +import java.sql.Date; +import java.sql.Timestamp; + +import org.jooq.Record1; +import org.jooq.impl.UpdatableRecordImpl; + + +/** + * Первоначальная постановка на учет. Статусы решений по Первоначальной + * постановке на учет(ЕПГУ) + */ +@SuppressWarnings({ "all", "unchecked", "rawtypes" }) +public class StatusesDecisionsOnEpguRecord extends UpdatableRecordImpl { + + private static final long serialVersionUID = 1L; + + /** + * Setter for + * init_registration_info.statuses_decisions_on_epgu.statuses_decisions_on_epgu_id. + */ + public void setStatusesDecisionsOnEpguId(Long value) { + set(0, value); + } + + /** + * Getter for + * init_registration_info.statuses_decisions_on_epgu.statuses_decisions_on_epgu_id. + */ + public Long getStatusesDecisionsOnEpguId() { + return (Long) get(0); + } + + /** + * Setter for + * init_registration_info.statuses_decisions_on_epgu.recruitment_id. + */ + public void setRecruitmentId(String value) { + set(1, value); + } + + /** + * Getter for + * init_registration_info.statuses_decisions_on_epgu.recruitment_id. + */ + public String getRecruitmentId() { + return (String) get(1); + } + + /** + * Setter for + * init_registration_info.statuses_decisions_on_epgu.update_date. + */ + public void setUpdateDate(Timestamp value) { + set(2, value); + } + + /** + * Getter for + * init_registration_info.statuses_decisions_on_epgu.update_date. + */ + public Timestamp getUpdateDate() { + return (Timestamp) get(2); + } + + /** + * Setter for + * init_registration_info.statuses_decisions_on_epgu.info_date. + */ + public void setInfoDate(Date value) { + set(3, value); + } + + /** + * Getter for + * init_registration_info.statuses_decisions_on_epgu.info_date. + */ + public Date getInfoDate() { + return (Date) get(3); + } + + /** + * Setter for + * init_registration_info.statuses_decisions_on_epgu.count_loaded. + */ + public void setCountLoaded(Long value) { + set(4, value); + } + + /** + * Getter for + * init_registration_info.statuses_decisions_on_epgu.count_loaded. + */ + public Long getCountLoaded() { + return (Long) get(4); + } + + /** + * Setter for + * init_registration_info.statuses_decisions_on_epgu.count_signed. + */ + public void setCountSigned(Long value) { + set(5, value); + } + + /** + * Getter for + * init_registration_info.statuses_decisions_on_epgu.count_signed. + */ + public Long getCountSigned() { + return (Long) get(5); + } + + /** + * Setter for + * init_registration_info.statuses_decisions_on_epgu.count_formed_for_signing. + */ + public void setCountFormedForSigning(Long value) { + set(6, value); + } + + /** + * Getter for + * init_registration_info.statuses_decisions_on_epgu.count_formed_for_signing. + */ + public Long getCountFormedForSigning() { + return (Long) get(6); + } + + // ------------------------------------------------------------------------- + // Primary key information + // ------------------------------------------------------------------------- + + @Override + public Record1 key() { + return (Record1) super.key(); + } + + // ------------------------------------------------------------------------- + // Constructors + // ------------------------------------------------------------------------- + + /** + * Create a detached StatusesDecisionsOnEpguRecord + */ + public StatusesDecisionsOnEpguRecord() { + super(StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU); + } + + /** + * Create a detached, initialised StatusesDecisionsOnEpguRecord + */ + public StatusesDecisionsOnEpguRecord(Long statusesDecisionsOnEpguId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countLoaded, Long countSigned, Long countFormedForSigning) { + super(StatusesDecisionsOnEpgu.STATUSES_DECISIONS_ON_EPGU); + + setStatusesDecisionsOnEpguId(statusesDecisionsOnEpguId); + setRecruitmentId(recruitmentId); + setUpdateDate(updateDate); + setInfoDate(infoDate); + setCountLoaded(countLoaded); + setCountSigned(countSigned); + setCountFormedForSigning(countFormedForSigning); + resetChangedOnNotNull(); + } +} diff --git a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/metrics/tables/Recruitment.java b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/metrics/tables/Recruitment.java index e9b592b..4852293 100644 --- a/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/metrics/tables/Recruitment.java +++ b/backend/src/main/java/ervu_dashboard/ervu_dashboard/db_beans/metrics/tables/Recruitment.java @@ -4,6 +4,14 @@ package ervu_dashboard.ervu_dashboard.db_beans.metrics.tables; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.ApplicationsReceivedFromEpgu.ApplicationsReceivedFromEpguPath; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.CitizensNextYearAge.CitizensNextYearAgePath; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.DecisionFormationStatus.DecisionFormationStatusPath; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.IncidentsInfo.IncidentsInfoPath; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InfoSentToLkEpgu.InfoSentToLkEpguPath; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.InitRegistrationFromGirVu.InitRegistrationFromGirVuPath; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.RecordsInfoIdUkIdErn.RecordsInfoIdUkIdErnPath; +import ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.tables.StatusesDecisionsOnEpgu.StatusesDecisionsOnEpguPath; import ervu_dashboard.ervu_dashboard.db_beans.metrics.Keys; import ervu_dashboard.ervu_dashboard.db_beans.metrics.Metrics; import ervu_dashboard.ervu_dashboard.db_beans.metrics.tables.ConvertInfoCommonResults.ConvertInfoCommonResultsPath; @@ -343,6 +351,110 @@ public class Recruitment extends TableImpl { return _region; } + private transient ApplicationsReceivedFromEpguPath _applicationsReceivedFromEpgu; + + /** + * Get the implicit to-many join path to the + * init_registration_info.applications_received_from_epgu table + */ + public ApplicationsReceivedFromEpguPath applicationsReceivedFromEpgu() { + if (_applicationsReceivedFromEpgu == null) + _applicationsReceivedFromEpgu = new ApplicationsReceivedFromEpguPath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.APPLICATIONS_RECEIVED_FROM_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _applicationsReceivedFromEpgu; + } + + private transient CitizensNextYearAgePath _citizensNextYearAge; + + /** + * Get the implicit to-many join path to the + * init_registration_info.citizens_next_year_age table + */ + public CitizensNextYearAgePath citizensNextYearAge() { + if (_citizensNextYearAge == null) + _citizensNextYearAge = new CitizensNextYearAgePath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.CITIZENS_NEXT_YEAR_AGE__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _citizensNextYearAge; + } + + private transient DecisionFormationStatusPath _decisionFormationStatus; + + /** + * Get the implicit to-many join path to the + * init_registration_info.decision_formation_status table + */ + public DecisionFormationStatusPath decisionFormationStatus() { + if (_decisionFormationStatus == null) + _decisionFormationStatus = new DecisionFormationStatusPath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.DECISION_FORMATION_STATUS__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _decisionFormationStatus; + } + + private transient IncidentsInfoPath _incidentsInfo; + + /** + * Get the implicit to-many join path to the + * init_registration_info.incidents_info table + */ + public IncidentsInfoPath incidentsInfo() { + if (_incidentsInfo == null) + _incidentsInfo = new IncidentsInfoPath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.INCIDENTS_INFO__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _incidentsInfo; + } + + private transient InfoSentToLkEpguPath _infoSentToLkEpgu; + + /** + * Get the implicit to-many join path to the + * init_registration_info.info_sent_to_lk_epgu table + */ + public InfoSentToLkEpguPath infoSentToLkEpgu() { + if (_infoSentToLkEpgu == null) + _infoSentToLkEpgu = new InfoSentToLkEpguPath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.INFO_SENT_TO_LK_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _infoSentToLkEpgu; + } + + private transient InitRegistrationFromGirVuPath _initRegistrationFromGirVu; + + /** + * Get the implicit to-many join path to the + * init_registration_info.init_registration_from_gir_vu table + */ + public InitRegistrationFromGirVuPath initRegistrationFromGirVu() { + if (_initRegistrationFromGirVu == null) + _initRegistrationFromGirVu = new InitRegistrationFromGirVuPath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.INIT_REGISTRATION_FROM_GIR_VU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _initRegistrationFromGirVu; + } + + private transient RecordsInfoIdUkIdErnPath _recordsInfoIdUkIdErn; + + /** + * Get the implicit to-many join path to the + * init_registration_info.records_info_id_uk_id_ern table + */ + public RecordsInfoIdUkIdErnPath recordsInfoIdUkIdErn() { + if (_recordsInfoIdUkIdErn == null) + _recordsInfoIdUkIdErn = new RecordsInfoIdUkIdErnPath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.RECORDS_INFO_ID_UK_ID_ERN__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _recordsInfoIdUkIdErn; + } + + private transient StatusesDecisionsOnEpguPath _statusesDecisionsOnEpgu; + + /** + * Get the implicit to-many join path to the + * init_registration_info.statuses_decisions_on_epgu table + */ + public StatusesDecisionsOnEpguPath statusesDecisionsOnEpgu() { + if (_statusesDecisionsOnEpgu == null) + _statusesDecisionsOnEpgu = new StatusesDecisionsOnEpguPath(this, null, ervu_dashboard.ervu_dashboard.db_beans.init_registration_info.Keys.STATUSES_DECISIONS_ON_EPGU__FK_CONV_INFO_RECORDS_FROM_EASU_RECRUITMENT_ID.getInverseKey()); + + return _statusesDecisionsOnEpgu; + } + private transient ConvertInfoCommonResultsPath _convertInfoCommonResults; /** diff --git a/resources/src/main/resources/business-model/ervu-business-metrics/conversion.page b/resources/src/main/resources/business-model/ervu-business-metrics/conversion.page index a2e5b8c..7cc3826 100644 --- a/resources/src/main/resources/business-model/ervu-business-metrics/conversion.page +++ b/resources/src/main/resources/business-model/ervu-business-metrics/conversion.page @@ -26,6 +26,7 @@ 6da727be-fd60-46b7-8636-ebdb5fea9fa1 ГК Выпадающие списки true + false false @@ -74,10 +75,16 @@ false + + initialValue + +null + + placeholder -"Российская Федерация" +null @@ -292,12 +299,25 @@ true + + 56d5ae60-a4b3-4f98-947b-6654cb4d400b + fef8a9f1-a9c2-4aac-b781-25e32b7652e0 + Tab container + true + true + + + 56d5ae60-a4b3-4f98-947b-6654cb4d400b + b9872b8b-1674-4b3e-9447-f804713d6687 + Tab container + true + true + d7d54cfb-26b5-4dba-b56f-b6247183c24d 66b71717-556b-4b2f-bba7-c059a9bc8083 ГК Первый ряд главного меню true - false false @@ -341,10 +361,8 @@ ccc90718-2324-443e-9173-5a39b661e843 Конвертация false - false false - false caption @@ -598,6 +616,5452 @@ + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 08b754e2-4acc-47a6-a184-ecdfa5d62f9c + AC_1 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 317ddac1-5bf2-4d58-8943-55f11d6a0a64 + AC_2 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 3b7980b7-9832-4436-af19-5f8cd92433d3 + AC_3 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + e884e1fb-5296-4c5b-984c-a320fe4160e9 + AC_4 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 785c56d0-ba85-4c05-80a6-497ced9120d1 + AC_5 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 91205b29-0f4e-427e-8abb-35dde188f94d + AC_6 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + d7d54cfb-26b5-4dba-b56f-b6247183c24d @@ -648,7 +6112,6 @@ 41e70dfc-767a-40e5-aa3d-7fddfa034c29 Учет уголовной, административной ответственности false - false false @@ -860,6 +6323,5418 @@ + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 12846fba-5d7d-44c8-9489-a4ae586cd1d1 + AC_7 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 5bb867e6-bb0b-413c-bae3-3ed0496304ca + AC_8 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 5d3d94b3-1359-4970-a66e-d41988c81b66 + AC_9 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 5496090e-29a8-4a4c-a7c6-c4a5bd8aebe2 + AC_10 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 2503a327-b76b-413d-9a0e-f822bc624bb5 + AC_11 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 912ed782-b7ae-4425-9a84-0e818fb5653f + AC_12 + false + false + + + + eventRefs + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + + "clickEvent" + + + + + + + + + ifCondition + + + + conditions + + + + + + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + + {"objectId":"ccc90718-2324-443e-9173-5a39b661e843","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8348fbcb-51b2-405c-ab05-79d97f1241b7","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0a7808fc-a827-4a54-8bd5-4985cdb43820","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"86fb6ae4-21fd-4de5-8781-3520f4c8f067","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"a63c1a3f-9b8c-44bf-9299-d842bbb5c77c","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"0db34081-80f2-4cda-a462-6e81f402a259","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"41e70dfc-767a-40e5-aa3d-7fddfa034c29","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"8566441e-d6dc-409d-96af-aefe4710f91d","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"6c3a1c9f-8153-49d2-a645-3c2f010da3ad","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"7b527299-b955-4de3-bbb8-84ccfa7eb32a","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"dc3a3ac1-7172-43a0-8d94-f9017b5976fc","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "removeCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"10893b1d-d36f-410c-91d6-ba2bce47af30","packageName":"component.button","className":"Button","type":"TS"} + + + + method + + "addCssClass" + + + + value + + + + staticValue + + + string + + +"active" + + + + + + + + + + + + + behavior + + {"objectId":"291901ca-6314-412e-81ab-ae6b1f4cd3fb","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + + behavior + + {"objectId":"8e9fb1e2-4655-44be-b306-b3894a32f711","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"e679f518-6809-484f-9aa8-7b8c0c9290f8","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"a195e024-878e-40f5-9541-e30e3f7f21bf","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"b11822e5-05f0-497a-a72d-3db34a70cc06","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"c9ee0a0b-b1b7-4653-a21a-9904b937799d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"bad02b9f-fbea-49fe-ba51-d4bc37490069","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"09a638d7-505c-4f2b-86f2-068659d85e36","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"be8e0bdc-d063-4d12-84fd-52e8ad8067f3","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +false + + + + + + + + + + + + + behavior + + {"objectId":"aceb39af-faf8-414d-9cc0-cc74e6b689b1","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + + "setVisible" + + + + value + + + + staticValue + + + boolean + + +true + + + + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 @@ -1245,7 +12120,6 @@ d5bdc0f2-4fe9-4f15-9173-8f36ccbdb4a8 ВК График true - false false @@ -1622,6 +12496,7 @@ 2e6d0727-3a22-4bec-8a13-bca4188ba7d2 ВК Показатели true + false false @@ -1660,7 +12535,6 @@ 3f6ea400-7cc9-4242-8044-e8d43267a9d2 ГК Показатель true -false false @@ -2155,13 +13029,6 @@ - - 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 - e6a8cf4c-349c-4284-89b9-132186ad5a51 - ВК показателей для присвоения класса - true - true - d7d54cfb-26b5-4dba-b56f-b6247183c24d 3f6ea400-7cc9-4242-8044-e8d43267a9d2 @@ -3092,7 +13959,6 @@ 32dd7c25-e11c-4f81-98ac-cfd772538e55 ГК второй ряд показателей true - false false @@ -3939,7 +14805,6 @@ 9113116e-f11b-418b-bf47-ff4c56e93ecd ВК Результаты конвертации true - false false @@ -4073,7 +14938,6 @@ e03d7aa9-a133-4497-9621-d0cdca2cd18f ВК Показатели true - false false @@ -4395,9 +15259,7 @@ График 4 true false - - false - + @@ -6153,6 +17015,2028 @@ true + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + 8e9fb1e2-4655-44be-b306-b3894a32f711 + Vbox2 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 27e3f2cc-40a6-4d19-a5b4-fd9bb9e8a2eb + Text2 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Первоначальная постановка на учет" + + + + + + + + + false + + + + 56d5ae60-a4b3-4f98-947b-6654cb4d400b + 1df65b38-a13b-42e3-adc5-6e75d4b2b82c + Tab container + true + false + + + + + + + 84b784bf-7bec-42f5-bbb7-8a465de45019 + 562cc86c-26d1-49d8-a91b-9df7b3e4d898 + Постановка в 17 лет + true + false + + + +heading + + "Постановка в 17 лет" + + + + + + + + + + d7d54cfb-26b5-4dba-b56f-b6247183c24d + dc25d140-8801-4566-a930-23ccf59e0626 + Hbox + true + false + + + + cssClasses + + + + null + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 9f4e8a2a-a1e1-489c-890d-c8fcc40c104b + AC_1 + false + false + + + + eventRefs + + + + + + behavior + +{"objectId":"92b9acfa-5485-47e8-8b29-79259ba24229","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + +"clickEvent" + + + + + + + + + ifCondition + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + +{"objectId":"92b9acfa-5485-47e8-8b29-79259ba24229","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"addCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"2b09e210-bee9-434c-894d-0d2571124bea","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"removeCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"aa557fd8-f884-42a5-a3b2-b236eaa40b11","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"removeCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"31a0f7bd-e184-490a-b17f-73ec8c25984d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + true + + + + + + + + + + + + + behavior + +{"objectId":"a3611115-264f-4527-97a1-d1848e759366","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + false + + + + + + + + + + + + + behavior + +{"objectId":"15f4ffae-5fab-406c-9be4-776d0241bd80","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 53991162-66f7-4fc1-aaf8-17e3c6e59927 + AC_2 + false + false + + + + eventRefs + + + + + + behavior + +{"objectId":"2b09e210-bee9-434c-894d-0d2571124bea","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + +"clickEvent" + + + + + + + + + ifCondition + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + +{"objectId":"92b9acfa-5485-47e8-8b29-79259ba24229","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"removeCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"2b09e210-bee9-434c-894d-0d2571124bea","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"addCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"aa557fd8-f884-42a5-a3b2-b236eaa40b11","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"removeCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"31a0f7bd-e184-490a-b17f-73ec8c25984d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + false + + + + + + + + + + + + + behavior + +{"objectId":"a3611115-264f-4527-97a1-d1848e759366","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + true + + + + + + + + + + + + + behavior + +{"objectId":"15f4ffae-5fab-406c-9be4-776d0241bd80","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + false + + + + + + + + + + + + + + + 98594cec-0a9b-4cef-af09-e1b71cb2ad9e + 36829664-f1f5-4d8c-8e63-f3f1aa404710 + AC_3 + false + false + + + + eventRefs + + + + + + behavior + +{"objectId":"aa557fd8-f884-42a5-a3b2-b236eaa40b11","packageName":"component.button","className":"Button","type":"TS"} + + + + propertyName + +"clickEvent" + + + + + + + + + ifCondition + + + + logicalOperation + + null + + + + + + + thenActions + + + + + + behavior + +{"objectId":"92b9acfa-5485-47e8-8b29-79259ba24229","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"removeCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"2b09e210-bee9-434c-894d-0d2571124bea","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"removeCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"aa557fd8-f884-42a5-a3b2-b236eaa40b11","packageName":"component.button","className":"Button","type":"TS"} + + + + method + +"addCssClass" + + + + value + + + + staticValue + + + string + + + "active" + + + + + + + + + + + + + behavior + +{"objectId":"31a0f7bd-e184-490a-b17f-73ec8c25984d","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + false + + + + + + + + + + + + + behavior + +{"objectId":"a3611115-264f-4527-97a1-d1848e759366","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + false + + + + + + + + + + + + + behavior + +{"objectId":"15f4ffae-5fab-406c-9be4-776d0241bd80","packageName":"component.container","className":"VBox","type":"TS"} + + + + method + +"setVisible" + + + + value + + + + staticValue + + + boolean + + + true + + + + + + + + + + + + + + + fd7e47b9-dce1-4d14-9f3a-580c79f59579 + 92b9acfa-5485-47e8-8b29-79259ba24229 + ГИР ВУ + false + false + + + + caption + + "ГИР ВУ" + + + + confirmationText + + null + + + + cssClasses + + + + "active" + + + + + + + + + fd7e47b9-dce1-4d14-9f3a-580c79f59579 + 2b09e210-bee9-434c-894d-0d2571124bea + ЕПГУ + false + false + + + + caption + + "ЕПГУ" + + + + confirmationText + + null + + + + + + + fd7e47b9-dce1-4d14-9f3a-580c79f59579 + aa557fd8-f884-42a5-a3b2-b236eaa40b11 + Личное посещение ВК + false + false + + + + caption + + "Личное посещение ВК" + + + + confirmationText + + null + + + + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + 31a0f7bd-e184-490a-b17f-73ec8c25984d + Vbox_1 + true + false + + + + + + + 85eb12aa-f878-4e29-b109-9d31af0fefb4 + b11130dd-1bbd-4ba6-ac14-912220713196 + ChartV2 + true + false + +false +false + + + + + chartService + + + + chartType + + "DOUGHNUT" + + + + dataSetService + + + +dataSetConfigurations + + + + + + borderWidth + + null + + + + columnAggregationDataSet + + + +aggregationData + + + + + + aggregationColumn + + {"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_unique"} + + + + aggregationFunction + + "SUM" + + + + backgroundColor + + "#A0C3E0FF" + + + + label + + "уникальных записей граждан" + + + + + + + + + +dataLabel + + "уникальных записей граждан" + + + + + + + cutout + + "70%" + + + + datasetType + + "COLUMN_AGGREGATION" + + + + loadDao + + + +graph + + {"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":719.0,"y":154.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"recruitment","schemaName":"metrics","x":429.0,"y":152.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"2":{"tableName":"region","schemaName":"metrics","x":183.0,"y":184.0,"alias":"region","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":719.0,"y":154.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"recruitment","schemaName":"metrics","x":429.0,"y":152.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"region","schemaName":"metrics","x":183.0,"y":184.0,"alias":"region","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"convert_info_records_from_easu":{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":719.0,"y":154.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":429.0,"y":152.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"region":{"tableName":"region","schemaName":"metrics","x":183.0,"y":184.0,"alias":"region","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,{"refOnEntityName":"convert_info_records_from_easu","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null],[null,null,{"refOnEntityName":"recruitment","refToEntityName":"region","refToColumns":[{"schema":"metrics","table":"region","entity":"region","name":"region_id"}],"refOnColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"region_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}}],[null,null,null]],"mainNodeIndex":0} + + + + + DefaultLoadDao + database.dao + + + + + radius + + "80%" + + + + + + + + + + + columnAggregationDataSet + + + +aggregationData + + + + + + aggregationColumn + + {"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"count_identified"} + + + + aggregationFunction + + "SUM" + + + + backgroundColor + + "#DEB4B8FF" + + + + label + + "записей идентифицированы в ГИР ВУ" + + + + + + + + +dataLabel + + "записей идентифицированы в ГИР ВУ" + + + + + + + cutout + + "60%" + + + + datasetType + + "COLUMN_AGGREGATION" + + + + loadDao + + + +graph + + {"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":646.0,"y":104.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"update_date"},"operation":"EQUAL","typeCode":"RUNTIME_VARIABLE","values":["\"CURRENT_DATE\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"1":{"tableName":"recruitment","schemaName":"metrics","x":415.0,"y":87.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"2":{"tableName":"region","schemaName":"metrics","x":202.0,"y":210.0,"alias":"region","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":646.0,"y":104.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"update_date"},"operation":"EQUAL","typeCode":"RUNTIME_VARIABLE","values":["\"CURRENT_DATE\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"recruitment","schemaName":"metrics","x":415.0,"y":87.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},{"tableName":"region","schemaName":"metrics","x":202.0,"y":210.0,"alias":"region","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"convert_info_records_from_easu":{"tableName":"convert_info_records_from_easu","schemaName":"metrics","x":646.0,"y":104.0,"alias":"convert_info_records_from_easu","conditionGroup":{"operator":"AND","conditions":[{"column":{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"update_date"},"operation":"EQUAL","typeCode":"RUNTIME_VARIABLE","values":["\"CURRENT_DATE\""]}],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"recruitment":{"tableName":"recruitment","schemaName":"metrics","x":415.0,"y":87.0,"alias":"recruitment","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"},"region":{"tableName":"region","schemaName":"metrics","x":202.0,"y":210.0,"alias":"region","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null,{"refOnEntityName":"convert_info_records_from_easu","refToEntityName":"recruitment","refToColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"id"}],"refOnColumns":[{"schema":"metrics","table":"convert_info_records_from_easu","entity":"convert_info_records_from_easu","name":"recruitment_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}},null],[null,null,{"refOnEntityName":"recruitment","refToEntityName":"region","refToColumns":[{"schema":"metrics","table":"region","entity":"region","name":"region_id"}],"refOnColumns":[{"schema":"metrics","table":"recruitment","entity":"recruitment","name":"region_id"}],"required":false,"cyclic":false,"conditionGroup":{"operator":"AND","conditions":[],"groups":[]}}],[null,null,null]],"mainNodeIndex":0} + + + + + DefaultLoadDao + database.dao + + + + + radius + + "70%" + + + + + + + + + + + + + RoundSingleChartDataSetService + ervu_dashboard.component.chart + + + + + + + + + + + ErvuChartV2 + ervu-dashboard.component.chart + +true +true + + + cssClasses + + + + "graph-donut" + + + + + + legend + + + + display + + false + + + + + + + visible + + true + + + + + + + RoundArcCornersChartPlugin + ervu-dashboard.component.chart.plugin + +true + + + + FilterReferences + ervu_dashboard.component.filter + +true +true + + + references + + + + + + column + +"subject_code" + + + + dataConverter + + + StringValueConverter + component.field.dataconvert + + + + + filterComponent + +{"objectId":"32c1ef3d-c802-4fff-99f4-f6a59c6902aa","packageName":"component.field.loading","className":"ComboBoxDefaultValue","type":"JAVA"} + + + + table + +"region" + + + + + StaticFilterReference + ervu_dashboard.component.filter + + + + + + + + + + + FilterGroupDelegate + ervu-dashboard.component.filter + +true +true + + + filterComponents + + + + {"objectId":"32c1ef3d-c802-4fff-99f4-f6a59c6902aa","packageName":"ervu-dashboard.component.filter","className":"ComboboxFilterComponent","type":"TS"} + + + + + + liveFilter + + true + + + + triggerOnStart + + true + + + + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + a3611115-264f-4527-97a1-d1848e759366 + Vbox_2 + true + false + + + + visible + + false + + + + + + + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + 15f4ffae-5fab-406c-9be4-776d0241bd80 + Vbox_3 + true + false + + + + visible + + false + + + + + + + + + + + + 84b784bf-7bec-42f5-bbb7-8a465de45019 + cd14ef60-abd0-4b6d-84ee-125ae3d72ea1 + Постановка в 18 лет и старше + true + false + + + +heading + + "Постановка в 18 лет и старше" + + + + + + + + + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + 84128ea5-ed23-4fd0-bb31-2e6b5e8a2a9d + Vbox3 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 69fd7d11-51d4-4c6f-b2cc-232fad45526c + Text3 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Постановка на воинский учет при смене адреса" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + 2bb573f6-b2fb-46eb-9f99-423b7ac1fc1f + Vbox4 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + b94ca948-f663-4b1a-8305-a299ab82dccf + Text4 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Снятие с воинского учета" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + e679f518-6809-484f-9aa8-7b8c0c9290f8 + Vbox5 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + b63dfe7e-642f-437b-9732-cc2e3898e93a + Text5 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Актуализация" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + a195e024-878e-40f5-9541-e30e3f7f21bf + Vbox6 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 96d57721-bff2-4671-a957-b3267f05261d + Text6 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Реестр повесток" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + b11822e5-05f0-497a-a72d-3db34a70cc06 + Vbox7 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 1b647cdf-2774-47cf-80a9-da85864d9e99 + Text7 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Учет уголовной, административной ответственности" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + c9ee0a0b-b1b7-4653-a21a-9904b937799d + Vbox8 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 8b2a5306-8c51-4196-b5f7-3c9195d18614 + Text8 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Инциденты" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + bad02b9f-fbea-49fe-ba51-d4bc37490069 + Vbox9 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 88d0f2cb-6579-415a-b749-dc28f454fc22 + Text9 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Обжалования" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + 09a638d7-505c-4f2b-86f2-068659d85e36 + Vbox10 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 65fa22cd-3c49-4e59-b2fd-e634d48f5c6f + Text10 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Администрирование" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + be8e0bdc-d063-4d12-84fd-52e8ad8067f3 + Vbox11 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + e0edd735-f3c4-4f19-8b0d-91404acece01 + Text11 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Журналирование" + + + + + + + + + false + + + + + 9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91 + aceb39af-faf8-414d-9cc0-cc74e6b689b1 + Vbox12 + true + false + + + + visible + + false + + + + + + + + + + ba24d307-0b91-4299-ba82-9d0b52384ff2 + 6234ba3f-bfa7-478a-9a96-7a886c247acd + Text12 + false + false + + + + cssClasses + + + + "title" + + + + + + disabled + +true + + + + label + +"Реестр повесток(подсистема)" + + + + + + + + + false + + + c6a4e38d-d0b3-46dd-960b-36c7e8beba36 b59971ae-4485-4e46-a95b-30afed8400e7 diff --git a/resources/src/main/resources/database/datasource.xml b/resources/src/main/resources/database/datasource.xml index d17afbc..3931dc1 100644 --- a/resources/src/main/resources/database/datasource.xml +++ b/resources/src/main/resources/database/datasource.xml @@ -7,6 +7,7 @@ false ervu_business_metrics 5432 + init_registration_info metrics POSTGRES jdbc:postgresql://10.10.31.119:5432/ervu_business_metrics