изменены таблицы БД в блоке реестр повесток

This commit is contained in:
Ахметшин Ильсур 2025-11-11 16:44:48 +03:00
parent 0e5b5be796
commit 331ef0ff92
32 changed files with 2878 additions and 564 deletions

View file

@ -15,6 +15,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.actualization.Actualizati
import ru.micord.webbpm.ervu.business_metrics.db_beans.admin_indicators.AdminIndicators;
import ru.micord.webbpm.ervu.business_metrics.db_beans.auth.Auth;
import ru.micord.webbpm.ervu.business_metrics.db_beans.deregistration.Deregistration;
import ru.micord.webbpm.ervu.business_metrics.db_beans.ervu_business_metrics.ErvuBusinessMetrics;
import ru.micord.webbpm.ervu.business_metrics.db_beans.idm_reconcile.IdmReconcile;
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.InitRegistrationInfo;
import ru.micord.webbpm.ervu.business_metrics.db_beans.journal_log.JournalLog;
@ -58,6 +59,11 @@ public class DefaultCatalog extends CatalogImpl {
*/
public final Deregistration DEREGISTRATION = Deregistration.DEREGISTRATION;
/**
* The schema <code>ervu_business_metrics</code>.
*/
public final ErvuBusinessMetrics ERVU_BUSINESS_METRICS = ErvuBusinessMetrics.ERVU_BUSINESS_METRICS;
/**
* The schema <code>idm_reconcile</code>.
*/
@ -112,6 +118,7 @@ public class DefaultCatalog extends CatalogImpl {
AdminIndicators.ADMIN_INDICATORS,
Auth.AUTH,
Deregistration.DEREGISTRATION,
ErvuBusinessMetrics.ERVU_BUSINESS_METRICS,
IdmReconcile.IDM_RECONCILE,
InitRegistrationInfo.INIT_REGISTRATION_INFO,
JournalLog.JOURNAL_LOG,

View file

@ -81,8 +81,8 @@ public class ViewGeneratedSolutions extends TableImpl<ViewGeneratedSolutionsReco
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_generated_solutions" as SELECT generated_solutions.generated_solutions_id,
(generated_solutions.count_arrived_death_reason + generated_solutions.count_arrived_age_limit) AS count_arrived_all,
round((((generated_solutions.count_arrived_death_reason)::numeric * (100)::numeric) / ((generated_solutions.count_arrived_death_reason + generated_solutions.count_arrived_age_limit))::numeric)) AS percent_arrived_death_reason,
round((((generated_solutions.count_arrived_age_limit)::numeric * (100)::numeric) / ((generated_solutions.count_arrived_death_reason + generated_solutions.count_arrived_age_limit))::numeric)) AS percent_arrived_age_limit
COALESCE(round((((generated_solutions.count_arrived_death_reason)::numeric * (100)::numeric) / NULLIF(((generated_solutions.count_arrived_death_reason + generated_solutions.count_arrived_age_limit))::numeric, (0)::numeric))), (0)::numeric) AS percent_arrived_death_reason,
COALESCE(round((((generated_solutions.count_arrived_age_limit)::numeric * (100)::numeric) / NULLIF(((generated_solutions.count_arrived_death_reason + generated_solutions.count_arrived_age_limit))::numeric, (0)::numeric))), (0)::numeric) AS percent_arrived_age_limit
FROM deregistration.generated_solutions;
"""), where);
}

View file

@ -62,9 +62,10 @@ public class AccountRole extends TableImpl<AccountRoleRecord> {
public final TableField<AccountRoleRecord, String> ROLE_ID = createField(DSL.name("role_id"), SQLDataType.VARCHAR(36).nullable(false), this, "Уникальный идентификатор роли");
/**
* The column <code>idm_reconcile.account_role.finish</code>.
* The column <code>idm_reconcile.account_role.finish</code>. Время
* окончания роли для аккаунта
*/
public final TableField<AccountRoleRecord, Long> FINISH = createField(DSL.name("finish"), SQLDataType.BIGINT.nullable(false), this, "");
public final TableField<AccountRoleRecord, Long> FINISH = createField(DSL.name("finish"), SQLDataType.BIGINT.nullable(false), this, "Время окончания роли для аккаунта");
private AccountRole(Name alias, Table<AccountRoleRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);

View file

@ -51,14 +51,16 @@ public class AccountRoleRecord extends UpdatableRecordImpl<AccountRoleRecord> {
}
/**
* Setter for <code>idm_reconcile.account_role.finish</code>.
* Setter for <code>idm_reconcile.account_role.finish</code>. Время
* окончания роли для аккаунта
*/
public void setFinish(Long value) {
set(2, value);
}
/**
* Getter for <code>idm_reconcile.account_role.finish</code>.
* Getter for <code>idm_reconcile.account_role.finish</code>. Время
* окончания роли для аккаунта
*/
public Long getFinish() {
return (Long) get(2);

View file

@ -14,20 +14,28 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.All
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.DownloadForPrint;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.FormedSummonses;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasures;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasuresStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpgu;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpguStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RecruitOfficeVisit;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasures;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasuresStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBan;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBanStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SupportLk;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.AllSummonsesRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.DownloadForPrintRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.FormedSummonsesRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.ImpositionTmpMeasuresRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.ImpositionTmpMeasuresStorageRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.InfoSentToLkEpguRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.InfoSentToLkEpguStorageRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RecruitOfficeVisitRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RemoveTmpMeasuresRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RemoveTmpMeasuresStorageRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RfLeavingBanRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RfLeavingBanStorageRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.SummonsesReasonRecord;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.SupportLkRecord;
@ -47,10 +55,14 @@ public class Keys {
public static final UniqueKey<DownloadForPrintRecord> DOWNLOAD_FOR_PRINT_PKEY = Internal.createUniqueKey(DownloadForPrint.DOWNLOAD_FOR_PRINT, DSL.name("download_for_print_pkey"), new TableField[] { DownloadForPrint.DOWNLOAD_FOR_PRINT.DOWNLOAD_FOR_PRINT_ID }, true);
public static final UniqueKey<FormedSummonsesRecord> FORMED_SUMMONSES_PKEY = Internal.createUniqueKey(FormedSummonses.FORMED_SUMMONSES, DSL.name("formed_summonses_pkey"), new TableField[] { FormedSummonses.FORMED_SUMMONSES.FORMED_SUMMONSES_ID }, true);
public static final UniqueKey<ImpositionTmpMeasuresRecord> IMPOSITION_TMP_MEASURES_PKEY = Internal.createUniqueKey(ImpositionTmpMeasures.IMPOSITION_TMP_MEASURES, DSL.name("imposition_tmp_measures_pkey"), new TableField[] { ImpositionTmpMeasures.IMPOSITION_TMP_MEASURES.IMPOSITION_TMP_MEASURES_ID }, true);
public static final UniqueKey<ImpositionTmpMeasuresStorageRecord> IMPOSITION_TMP_MEASURES_STORAGE_PKEY = Internal.createUniqueKey(ImpositionTmpMeasuresStorage.IMPOSITION_TMP_MEASURES_STORAGE, DSL.name("imposition_tmp_measures_storage_pkey"), new TableField[] { ImpositionTmpMeasuresStorage.IMPOSITION_TMP_MEASURES_STORAGE.IMPOSITION_TMP_MEASURES_STORAGE_ID }, true);
public static final UniqueKey<InfoSentToLkEpguRecord> 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<InfoSentToLkEpguStorageRecord> INFO_SENT_TO_LK_EPGU_STORAGE_PKEY = Internal.createUniqueKey(InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE, DSL.name("info_sent_to_lk_epgu_storage_pkey"), new TableField[] { InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE.INFO_SENT_TO_LK_EPGU_STORAGE_ID }, true);
public static final UniqueKey<RecruitOfficeVisitRecord> RECRUIT_OFFICE_VISIT_PKEY = Internal.createUniqueKey(RecruitOfficeVisit.RECRUIT_OFFICE_VISIT, DSL.name("recruit_office_visit_pkey"), new TableField[] { RecruitOfficeVisit.RECRUIT_OFFICE_VISIT.RECRUIT_OFFICE_VISIT_ID }, true);
public static final UniqueKey<RemoveTmpMeasuresRecord> REMOVE_TMP_MEASURES_PKEY = Internal.createUniqueKey(RemoveTmpMeasures.REMOVE_TMP_MEASURES, DSL.name("remove_tmp_measures_pkey"), new TableField[] { RemoveTmpMeasures.REMOVE_TMP_MEASURES.REMOVE_TMP_MEASURES_ID }, true);
public static final UniqueKey<RemoveTmpMeasuresStorageRecord> REMOVE_TMP_MEASURES_STORAGE_PKEY = Internal.createUniqueKey(RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE, DSL.name("remove_tmp_measures_storage_pkey"), new TableField[] { RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE.REMOVE_TMP_MEASURES_STORAGE_ID }, true);
public static final UniqueKey<RfLeavingBanRecord> RF_LEAVING_BAN_PKEY = Internal.createUniqueKey(RfLeavingBan.RF_LEAVING_BAN, DSL.name("rf_leaving_ban_pkey"), new TableField[] { RfLeavingBan.RF_LEAVING_BAN.RF_LEAVING_BAN_ID }, true);
public static final UniqueKey<RfLeavingBanStorageRecord> RF_LEAVING_BAN_STORAGE_PKEY = Internal.createUniqueKey(RfLeavingBanStorage.RF_LEAVING_BAN_STORAGE, DSL.name("rf_leaving_ban_storage_pkey"), new TableField[] { RfLeavingBanStorage.RF_LEAVING_BAN_STORAGE.RF_LEAVING_BAN_STORAGE_ID }, true);
public static final UniqueKey<SummonsesReasonRecord> SUMMONSES_REASON_PKEY = Internal.createUniqueKey(SummonsesReason.SUMMONSES_REASON, DSL.name("summonses_reason_pkey"), new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final UniqueKey<SummonsesReasonRecord> UNI_SUMMONSES_REASON1 = Internal.createUniqueKey(SummonsesReason.SUMMONSES_REASON, DSL.name("uni_summonses_reason1"), new TableField[] { SummonsesReason.SUMMONSES_REASON.CODE }, true);
public static final UniqueKey<SupportLkRecord> SUPPORT_LK_PKEY = Internal.createUniqueKey(SupportLk.SUPPORT_LK, DSL.name("support_lk_pkey"), new TableField[] { SupportLk.SUPPORT_LK.SUPPORT_LK_ID }, true);
@ -60,11 +72,7 @@ public class Keys {
// -------------------------------------------------------------------------
public static final ForeignKey<DownloadForPrintRecord, SummonsesReasonRecord> DOWNLOAD_FOR_PRINT__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(DownloadForPrint.DOWNLOAD_FOR_PRINT, DSL.name("fk_summonses_reason_id"), new TableField[] { DownloadForPrint.DOWNLOAD_FOR_PRINT.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<FormedSummonsesRecord, SummonsesReasonRecord> FORMED_SUMMONSES__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(FormedSummonses.FORMED_SUMMONSES, DSL.name("fk_summonses_reason_id"), new TableField[] { FormedSummonses.FORMED_SUMMONSES.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<ImpositionTmpMeasuresRecord, SummonsesReasonRecord> IMPOSITION_TMP_MEASURES__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(ImpositionTmpMeasures.IMPOSITION_TMP_MEASURES, DSL.name("fk_summonses_reason_id"), new TableField[] { ImpositionTmpMeasures.IMPOSITION_TMP_MEASURES.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<InfoSentToLkEpguRecord, SummonsesReasonRecord> INFO_SENT_TO_LK_EPGU__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU, DSL.name("fk_summonses_reason_id"), new TableField[] { InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<RecruitOfficeVisitRecord, SummonsesReasonRecord> RECRUIT_OFFICE_VISIT__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(RecruitOfficeVisit.RECRUIT_OFFICE_VISIT, DSL.name("fk_summonses_reason_id"), new TableField[] { RecruitOfficeVisit.RECRUIT_OFFICE_VISIT.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<RemoveTmpMeasuresRecord, SummonsesReasonRecord> REMOVE_TMP_MEASURES__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(RemoveTmpMeasures.REMOVE_TMP_MEASURES, DSL.name("fk_summonses_reason_id"), new TableField[] { RemoveTmpMeasures.REMOVE_TMP_MEASURES.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<RfLeavingBanRecord, SummonsesReasonRecord> RF_LEAVING_BAN__FK_SUMMONSES_REASON_ID = Internal.createForeignKey(RfLeavingBan.RF_LEAVING_BAN, DSL.name("fk_summonses_reason_id"), new TableField[] { RfLeavingBan.RF_LEAVING_BAN.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<InfoSentToLkEpguStorageRecord, SummonsesReasonRecord> INFO_SENT_TO_LK_EPGU_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE = Internal.createForeignKey(InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE, DSL.name("fk_summonses_reason_id_storage"), new TableField[] { InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<RemoveTmpMeasuresStorageRecord, SummonsesReasonRecord> REMOVE_TMP_MEASURES_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE = Internal.createForeignKey(RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE, DSL.name("fk_summonses_reason_id_storage"), new TableField[] { RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE.SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
public static final ForeignKey<SummonsesReasonRecord, SummonsesReasonRecord> SUMMONSES_REASON__FK_PARENT_SUMMONSES_REASON_ID = Internal.createForeignKey(SummonsesReason.SUMMONSES_REASON, DSL.name("fk_parent_summonses_reason_id"), new TableField[] { SummonsesReason.SUMMONSES_REASON.PARENT_SUMMONSES_REASON_ID }, Keys.SUMMONSES_REASON_PKEY, new TableField[] { SummonsesReason.SUMMONSES_REASON.SUMMONSES_REASON_ID }, true);
}

View file

@ -0,0 +1,29 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list;
import org.jooq.Sequence;
import org.jooq.impl.Internal;
import org.jooq.impl.SQLDataType;
/**
* Convenience access to all sequences in summonses_list.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class Sequences {
/**
* The sequence
* <code>summonses_list.imposition_tmp_measures_stora_imposition_tmp_measures_stora_seq</code>
*/
public static final Sequence<Long> IMPOSITION_TMP_MEASURES_STORA_IMPOSITION_TMP_MEASURES_STORA_SEQ = Internal.createSequence("imposition_tmp_measures_stora_imposition_tmp_measures_stora_seq", SummonsesList.SUMMONSES_LIST, SQLDataType.BIGINT.nullable(false), null, null, null, null, false, null);
/**
* The sequence
* <code>summonses_list.info_sent_to_lk_epgu_storage_info_sent_to_lk_epgu_storage_i_seq</code>
*/
public static final Sequence<Long> INFO_SENT_TO_LK_EPGU_STORAGE_INFO_SENT_TO_LK_EPGU_STORAGE_I_SEQ = Internal.createSequence("info_sent_to_lk_epgu_storage_info_sent_to_lk_epgu_storage_i_seq", SummonsesList.SUMMONSES_LIST, SQLDataType.BIGINT.nullable(false), null, null, null, null, false, null);
}

View file

@ -8,6 +8,7 @@ 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;
@ -16,10 +17,14 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.All
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.DownloadForPrint;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.FormedSummonses;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasures;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasuresStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpgu;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpguStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RecruitOfficeVisit;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasures;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasuresStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBan;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBanStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SupportLk;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ViewAllSummonses;
@ -64,11 +69,21 @@ public class SummonsesList extends SchemaImpl {
*/
public final ImpositionTmpMeasures IMPOSITION_TMP_MEASURES = ImpositionTmpMeasures.IMPOSITION_TMP_MEASURES;
/**
* The table <code>summonses_list.imposition_tmp_measures_storage</code>.
*/
public final ImpositionTmpMeasuresStorage IMPOSITION_TMP_MEASURES_STORAGE = ImpositionTmpMeasuresStorage.IMPOSITION_TMP_MEASURES_STORAGE;
/**
* Реестр повесток. Отправка уведомлений в ЛК на ЕПГУ
*/
public final InfoSentToLkEpgu INFO_SENT_TO_LK_EPGU = InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU;
/**
* The table <code>summonses_list.info_sent_to_lk_epgu_storage</code>.
*/
public final InfoSentToLkEpguStorage INFO_SENT_TO_LK_EPGU_STORAGE = InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE;
/**
* Реестр повесток. Явка в военный комиссариат
*/
@ -79,12 +94,22 @@ public class SummonsesList extends SchemaImpl {
*/
public final RemoveTmpMeasures REMOVE_TMP_MEASURES = RemoveTmpMeasures.REMOVE_TMP_MEASURES;
/**
* The table <code>summonses_list.remove_tmp_measures_storage</code>.
*/
public final RemoveTmpMeasuresStorage REMOVE_TMP_MEASURES_STORAGE = RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE;
/**
* Реестр повесток. Решение о применении временной меры - запрет на выезд из
* РФ
*/
public final RfLeavingBan RF_LEAVING_BAN = RfLeavingBan.RF_LEAVING_BAN;
/**
* The table <code>summonses_list.rf_leaving_ban_storage</code>.
*/
public final RfLeavingBanStorage RF_LEAVING_BAN_STORAGE = RfLeavingBanStorage.RF_LEAVING_BAN_STORAGE;
/**
* Реестр повесток. Причины выдачи повестки
*/
@ -143,6 +168,14 @@ public class SummonsesList extends SchemaImpl {
return DefaultCatalog.DEFAULT_CATALOG;
}
@Override
public final List<Sequence<?>> getSequences() {
return Arrays.asList(
Sequences.IMPOSITION_TMP_MEASURES_STORA_IMPOSITION_TMP_MEASURES_STORA_SEQ,
Sequences.INFO_SENT_TO_LK_EPGU_STORAGE_INFO_SENT_TO_LK_EPGU_STORAGE_I_SEQ
);
}
@Override
public final List<Table<?>> getTables() {
return Arrays.asList(
@ -150,10 +183,14 @@ public class SummonsesList extends SchemaImpl {
DownloadForPrint.DOWNLOAD_FOR_PRINT,
FormedSummonses.FORMED_SUMMONSES,
ImpositionTmpMeasures.IMPOSITION_TMP_MEASURES,
ImpositionTmpMeasuresStorage.IMPOSITION_TMP_MEASURES_STORAGE,
InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU,
InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE,
RecruitOfficeVisit.RECRUIT_OFFICE_VISIT,
RemoveTmpMeasures.REMOVE_TMP_MEASURES,
RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE,
RfLeavingBan.RF_LEAVING_BAN,
RfLeavingBanStorage.RF_LEAVING_BAN_STORAGE,
SummonsesReason.SUMMONSES_REASON,
SupportLk.SUPPORT_LK,
ViewAllSummonses.VIEW_ALL_SUMMONSES,

View file

@ -8,10 +8,14 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.All
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.DownloadForPrint;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.FormedSummonses;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasures;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasuresStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpgu;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpguStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RecruitOfficeVisit;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasures;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasuresStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBan;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBanStorage;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SupportLk;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ViewAllSummonses;
@ -49,11 +53,21 @@ public class Tables {
*/
public static final ImpositionTmpMeasures IMPOSITION_TMP_MEASURES = ImpositionTmpMeasures.IMPOSITION_TMP_MEASURES;
/**
* The table <code>summonses_list.imposition_tmp_measures_storage</code>.
*/
public static final ImpositionTmpMeasuresStorage IMPOSITION_TMP_MEASURES_STORAGE = ImpositionTmpMeasuresStorage.IMPOSITION_TMP_MEASURES_STORAGE;
/**
* Реестр повесток. Отправка уведомлений в ЛК на ЕПГУ
*/
public static final InfoSentToLkEpgu INFO_SENT_TO_LK_EPGU = InfoSentToLkEpgu.INFO_SENT_TO_LK_EPGU;
/**
* The table <code>summonses_list.info_sent_to_lk_epgu_storage</code>.
*/
public static final InfoSentToLkEpguStorage INFO_SENT_TO_LK_EPGU_STORAGE = InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE;
/**
* Реестр повесток. Явка в военный комиссариат
*/
@ -64,12 +78,22 @@ public class Tables {
*/
public static final RemoveTmpMeasures REMOVE_TMP_MEASURES = RemoveTmpMeasures.REMOVE_TMP_MEASURES;
/**
* The table <code>summonses_list.remove_tmp_measures_storage</code>.
*/
public static final RemoveTmpMeasuresStorage REMOVE_TMP_MEASURES_STORAGE = RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE;
/**
* Реестр повесток. Решение о применении временной меры - запрет на выезд из
* РФ
*/
public static final RfLeavingBan RF_LEAVING_BAN = RfLeavingBan.RF_LEAVING_BAN;
/**
* The table <code>summonses_list.rf_leaving_ban_storage</code>.
*/
public static final RfLeavingBanStorage RF_LEAVING_BAN_STORAGE = RfLeavingBanStorage.RF_LEAVING_BAN_STORAGE;
/**
* Реестр повесток. Причины выдачи повестки
*/

View file

@ -6,20 +6,14 @@ package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -34,7 +28,6 @@ import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.FormedSummonsesRecord;
@ -162,37 +155,6 @@ public class FormedSummonses extends TableImpl<FormedSummonsesRecord> {
this(DSL.name("formed_summonses"), null);
}
public <O extends Record> FormedSummonses(Table<O> path, ForeignKey<O, FormedSummonsesRecord> childPath, InverseForeignKey<O, FormedSummonsesRecord> parentPath) {
super(path, childPath, parentPath, FORMED_SUMMONSES);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class FormedSummonsesPath extends FormedSummonses implements Path<FormedSummonsesRecord> {
public <O extends Record> FormedSummonsesPath(Table<O> path, ForeignKey<O, FormedSummonsesRecord> childPath, InverseForeignKey<O, FormedSummonsesRecord> parentPath) {
super(path, childPath, parentPath);
}
private FormedSummonsesPath(Name alias, Table<FormedSummonsesRecord> aliased) {
super(alias, aliased);
}
@Override
public FormedSummonsesPath as(String alias) {
return new FormedSummonsesPath(DSL.name(alias), this);
}
@Override
public FormedSummonsesPath as(Name alias) {
return new FormedSummonsesPath(alias, this);
}
@Override
public FormedSummonsesPath as(Table<?> alias) {
return new FormedSummonsesPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
@ -208,24 +170,6 @@ public class FormedSummonses extends TableImpl<FormedSummonsesRecord> {
return Keys.FORMED_SUMMONSES_PKEY;
}
@Override
public List<ForeignKey<FormedSummonsesRecord, ?>> getReferences() {
return Arrays.asList(Keys.FORMED_SUMMONSES__FK_SUMMONSES_REASON_ID);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.FORMED_SUMMONSES__FK_SUMMONSES_REASON_ID, null);
return _summonsesReason;
}
@Override
public FormedSummonses as(String alias) {
return new FormedSummonses(DSL.name(alias), this);

View file

@ -6,20 +6,14 @@ package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -34,7 +28,6 @@ import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.ImpositionTmpMeasuresRecord;
@ -142,37 +135,6 @@ public class ImpositionTmpMeasures extends TableImpl<ImpositionTmpMeasuresRecord
this(DSL.name("imposition_tmp_measures"), null);
}
public <O extends Record> ImpositionTmpMeasures(Table<O> path, ForeignKey<O, ImpositionTmpMeasuresRecord> childPath, InverseForeignKey<O, ImpositionTmpMeasuresRecord> parentPath) {
super(path, childPath, parentPath, IMPOSITION_TMP_MEASURES);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class ImpositionTmpMeasuresPath extends ImpositionTmpMeasures implements Path<ImpositionTmpMeasuresRecord> {
public <O extends Record> ImpositionTmpMeasuresPath(Table<O> path, ForeignKey<O, ImpositionTmpMeasuresRecord> childPath, InverseForeignKey<O, ImpositionTmpMeasuresRecord> parentPath) {
super(path, childPath, parentPath);
}
private ImpositionTmpMeasuresPath(Name alias, Table<ImpositionTmpMeasuresRecord> aliased) {
super(alias, aliased);
}
@Override
public ImpositionTmpMeasuresPath as(String alias) {
return new ImpositionTmpMeasuresPath(DSL.name(alias), this);
}
@Override
public ImpositionTmpMeasuresPath as(Name alias) {
return new ImpositionTmpMeasuresPath(alias, this);
}
@Override
public ImpositionTmpMeasuresPath as(Table<?> alias) {
return new ImpositionTmpMeasuresPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
@ -188,24 +150,6 @@ public class ImpositionTmpMeasures extends TableImpl<ImpositionTmpMeasuresRecord
return Keys.IMPOSITION_TMP_MEASURES_PKEY;
}
@Override
public List<ForeignKey<ImpositionTmpMeasuresRecord, ?>> getReferences() {
return Arrays.asList(Keys.IMPOSITION_TMP_MEASURES__FK_SUMMONSES_REASON_ID);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.IMPOSITION_TMP_MEASURES__FK_SUMMONSES_REASON_ID, null);
return _summonsesReason;
}
@Override
public ImpositionTmpMeasures as(String alias) {
return new ImpositionTmpMeasures(DSL.name(alias), this);

View file

@ -0,0 +1,275 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Collection;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Identity;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
import org.jooq.Stringly;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.ImpositionTmpMeasuresStorageRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class ImpositionTmpMeasuresStorage extends TableImpl<ImpositionTmpMeasuresStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of
* <code>summonses_list.imposition_tmp_measures_storage</code>
*/
public static final ImpositionTmpMeasuresStorage IMPOSITION_TMP_MEASURES_STORAGE = new ImpositionTmpMeasuresStorage();
/**
* The class holding records for this type
*/
@Override
public Class<ImpositionTmpMeasuresStorageRecord> getRecordType() {
return ImpositionTmpMeasuresStorageRecord.class;
}
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.imposition_tmp_measures_storage_id</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, Long> IMPOSITION_TMP_MEASURES_STORAGE_ID = createField(DSL.name("imposition_tmp_measures_storage_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.recruitment_id</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, String> RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, "");
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.update_date</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, Timestamp> UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.info_date</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, Date> INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, "");
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.summonses_reason_id</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, Long> SUMMONSES_REASON_ID = createField(DSL.name("summonses_reason_id"), SQLDataType.BIGINT.nullable(false), this, "");
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.count_for_sign</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, Long> COUNT_FOR_SIGN = createField(DSL.name("count_for_sign"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.count_apply</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, Long> COUNT_APPLY = createField(DSL.name("count_apply"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.imposition_tmp_measures_storage.count_enter</code>.
*/
public final TableField<ImpositionTmpMeasuresStorageRecord, Long> COUNT_ENTER = createField(DSL.name("count_enter"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
private ImpositionTmpMeasuresStorage(Name alias, Table<ImpositionTmpMeasuresStorageRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private ImpositionTmpMeasuresStorage(Name alias, Table<ImpositionTmpMeasuresStorageRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased
* <code>summonses_list.imposition_tmp_measures_storage</code> table
* reference
*/
public ImpositionTmpMeasuresStorage(String alias) {
this(DSL.name(alias), IMPOSITION_TMP_MEASURES_STORAGE);
}
/**
* Create an aliased
* <code>summonses_list.imposition_tmp_measures_storage</code> table
* reference
*/
public ImpositionTmpMeasuresStorage(Name alias) {
this(alias, IMPOSITION_TMP_MEASURES_STORAGE);
}
/**
* Create a <code>summonses_list.imposition_tmp_measures_storage</code>
* table reference
*/
public ImpositionTmpMeasuresStorage() {
this(DSL.name("imposition_tmp_measures_storage"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
}
@Override
public Identity<ImpositionTmpMeasuresStorageRecord, Long> getIdentity() {
return (Identity<ImpositionTmpMeasuresStorageRecord, Long>) super.getIdentity();
}
@Override
public UniqueKey<ImpositionTmpMeasuresStorageRecord> getPrimaryKey() {
return Keys.IMPOSITION_TMP_MEASURES_STORAGE_PKEY;
}
@Override
public ImpositionTmpMeasuresStorage as(String alias) {
return new ImpositionTmpMeasuresStorage(DSL.name(alias), this);
}
@Override
public ImpositionTmpMeasuresStorage as(Name alias) {
return new ImpositionTmpMeasuresStorage(alias, this);
}
@Override
public ImpositionTmpMeasuresStorage as(Table<?> alias) {
return new ImpositionTmpMeasuresStorage(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public ImpositionTmpMeasuresStorage rename(String name) {
return new ImpositionTmpMeasuresStorage(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public ImpositionTmpMeasuresStorage rename(Name name) {
return new ImpositionTmpMeasuresStorage(name, null);
}
/**
* Rename this table
*/
@Override
public ImpositionTmpMeasuresStorage rename(Table<?> name) {
return new ImpositionTmpMeasuresStorage(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public ImpositionTmpMeasuresStorage where(Condition condition) {
return new ImpositionTmpMeasuresStorage(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public ImpositionTmpMeasuresStorage where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public ImpositionTmpMeasuresStorage where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public ImpositionTmpMeasuresStorage where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public ImpositionTmpMeasuresStorage where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public ImpositionTmpMeasuresStorage where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public ImpositionTmpMeasuresStorage where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public ImpositionTmpMeasuresStorage where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public ImpositionTmpMeasuresStorage whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public ImpositionTmpMeasuresStorage whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -6,20 +6,14 @@ package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -34,7 +28,6 @@ import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.InfoSentToLkEpguRecord;
@ -172,37 +165,6 @@ public class InfoSentToLkEpgu extends TableImpl<InfoSentToLkEpguRecord> {
this(DSL.name("info_sent_to_lk_epgu"), null);
}
public <O extends Record> InfoSentToLkEpgu(Table<O> path, ForeignKey<O, InfoSentToLkEpguRecord> childPath, InverseForeignKey<O, InfoSentToLkEpguRecord> 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<InfoSentToLkEpguRecord> {
public <O extends Record> InfoSentToLkEpguPath(Table<O> path, ForeignKey<O, InfoSentToLkEpguRecord> childPath, InverseForeignKey<O, InfoSentToLkEpguRecord> parentPath) {
super(path, childPath, parentPath);
}
private InfoSentToLkEpguPath(Name alias, Table<InfoSentToLkEpguRecord> 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 : SummonsesList.SUMMONSES_LIST;
@ -218,24 +180,6 @@ public class InfoSentToLkEpgu extends TableImpl<InfoSentToLkEpguRecord> {
return Keys.INFO_SENT_TO_LK_EPGU_PKEY;
}
@Override
public List<ForeignKey<InfoSentToLkEpguRecord, ?>> getReferences() {
return Arrays.asList(Keys.INFO_SENT_TO_LK_EPGU__FK_SUMMONSES_REASON_ID);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.INFO_SENT_TO_LK_EPGU__FK_SUMMONSES_REASON_ID, null);
return _summonsesReason;
}
@Override
public InfoSentToLkEpgu as(String alias) {
return new InfoSentToLkEpgu(DSL.name(alias), this);

View file

@ -0,0 +1,365 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
import org.jooq.Stringly;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.InfoSentToLkEpguStorageRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class InfoSentToLkEpguStorage extends TableImpl<InfoSentToLkEpguStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of
* <code>summonses_list.info_sent_to_lk_epgu_storage</code>
*/
public static final InfoSentToLkEpguStorage INFO_SENT_TO_LK_EPGU_STORAGE = new InfoSentToLkEpguStorage();
/**
* The class holding records for this type
*/
@Override
public Class<InfoSentToLkEpguStorageRecord> getRecordType() {
return InfoSentToLkEpguStorageRecord.class;
}
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.info_sent_to_lk_epgu_storage_id</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> INFO_SENT_TO_LK_EPGU_STORAGE_ID = createField(DSL.name("info_sent_to_lk_epgu_storage_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.recruitment_id</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, String> RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.update_date</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Timestamp> UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.info_date</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Date> INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.summonses_reason_id</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> SUMMONSES_REASON_ID = createField(DSL.name("summonses_reason_id"), SQLDataType.BIGINT.nullable(false), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_status_formed</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_STATUS_FORMED = createField(DSL.name("count_status_formed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_sended</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_SENDED = createField(DSL.name("count_sended"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_delivered</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_DELIVERED = createField(DSL.name("count_delivered"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_error</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_ERROR = createField(DSL.name("count_error"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_viewed</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_VIEWED = createField(DSL.name("count_viewed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_not_viewed</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_NOT_VIEWED = createField(DSL.name("count_not_viewed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_status_not_formed</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_STATUS_NOT_FORMED = createField(DSL.name("count_status_not_formed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_exceeded_send</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_EXCEEDED_SEND = createField(DSL.name("count_exceeded_send"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_exceeded_delivered</code>.
*/
public final TableField<InfoSentToLkEpguStorageRecord, Long> COUNT_EXCEEDED_DELIVERED = createField(DSL.name("count_exceeded_delivered"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
private InfoSentToLkEpguStorage(Name alias, Table<InfoSentToLkEpguStorageRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private InfoSentToLkEpguStorage(Name alias, Table<InfoSentToLkEpguStorageRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased
* <code>summonses_list.info_sent_to_lk_epgu_storage</code> table reference
*/
public InfoSentToLkEpguStorage(String alias) {
this(DSL.name(alias), INFO_SENT_TO_LK_EPGU_STORAGE);
}
/**
* Create an aliased
* <code>summonses_list.info_sent_to_lk_epgu_storage</code> table reference
*/
public InfoSentToLkEpguStorage(Name alias) {
this(alias, INFO_SENT_TO_LK_EPGU_STORAGE);
}
/**
* Create a <code>summonses_list.info_sent_to_lk_epgu_storage</code> table
* reference
*/
public InfoSentToLkEpguStorage() {
this(DSL.name("info_sent_to_lk_epgu_storage"), null);
}
public <O extends Record> InfoSentToLkEpguStorage(Table<O> path, ForeignKey<O, InfoSentToLkEpguStorageRecord> childPath, InverseForeignKey<O, InfoSentToLkEpguStorageRecord> parentPath) {
super(path, childPath, parentPath, INFO_SENT_TO_LK_EPGU_STORAGE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class InfoSentToLkEpguStoragePath extends InfoSentToLkEpguStorage implements Path<InfoSentToLkEpguStorageRecord> {
public <O extends Record> InfoSentToLkEpguStoragePath(Table<O> path, ForeignKey<O, InfoSentToLkEpguStorageRecord> childPath, InverseForeignKey<O, InfoSentToLkEpguStorageRecord> parentPath) {
super(path, childPath, parentPath);
}
private InfoSentToLkEpguStoragePath(Name alias, Table<InfoSentToLkEpguStorageRecord> aliased) {
super(alias, aliased);
}
@Override
public InfoSentToLkEpguStoragePath as(String alias) {
return new InfoSentToLkEpguStoragePath(DSL.name(alias), this);
}
@Override
public InfoSentToLkEpguStoragePath as(Name alias) {
return new InfoSentToLkEpguStoragePath(alias, this);
}
@Override
public InfoSentToLkEpguStoragePath as(Table<?> alias) {
return new InfoSentToLkEpguStoragePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
}
@Override
public Identity<InfoSentToLkEpguStorageRecord, Long> getIdentity() {
return (Identity<InfoSentToLkEpguStorageRecord, Long>) super.getIdentity();
}
@Override
public UniqueKey<InfoSentToLkEpguStorageRecord> getPrimaryKey() {
return Keys.INFO_SENT_TO_LK_EPGU_STORAGE_PKEY;
}
@Override
public List<ForeignKey<InfoSentToLkEpguStorageRecord, ?>> getReferences() {
return Arrays.asList(Keys.INFO_SENT_TO_LK_EPGU_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.INFO_SENT_TO_LK_EPGU_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE, null);
return _summonsesReason;
}
@Override
public InfoSentToLkEpguStorage as(String alias) {
return new InfoSentToLkEpguStorage(DSL.name(alias), this);
}
@Override
public InfoSentToLkEpguStorage as(Name alias) {
return new InfoSentToLkEpguStorage(alias, this);
}
@Override
public InfoSentToLkEpguStorage as(Table<?> alias) {
return new InfoSentToLkEpguStorage(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public InfoSentToLkEpguStorage rename(String name) {
return new InfoSentToLkEpguStorage(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public InfoSentToLkEpguStorage rename(Name name) {
return new InfoSentToLkEpguStorage(name, null);
}
/**
* Rename this table
*/
@Override
public InfoSentToLkEpguStorage rename(Table<?> name) {
return new InfoSentToLkEpguStorage(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public InfoSentToLkEpguStorage where(Condition condition) {
return new InfoSentToLkEpguStorage(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public InfoSentToLkEpguStorage where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public InfoSentToLkEpguStorage where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public InfoSentToLkEpguStorage where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InfoSentToLkEpguStorage where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InfoSentToLkEpguStorage where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InfoSentToLkEpguStorage where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public InfoSentToLkEpguStorage where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public InfoSentToLkEpguStorage whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public InfoSentToLkEpguStorage whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -6,20 +6,14 @@ package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -34,7 +28,6 @@ import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RecruitOfficeVisitRecord;
@ -152,37 +145,6 @@ public class RecruitOfficeVisit extends TableImpl<RecruitOfficeVisitRecord> {
this(DSL.name("recruit_office_visit"), null);
}
public <O extends Record> RecruitOfficeVisit(Table<O> path, ForeignKey<O, RecruitOfficeVisitRecord> childPath, InverseForeignKey<O, RecruitOfficeVisitRecord> parentPath) {
super(path, childPath, parentPath, RECRUIT_OFFICE_VISIT);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class RecruitOfficeVisitPath extends RecruitOfficeVisit implements Path<RecruitOfficeVisitRecord> {
public <O extends Record> RecruitOfficeVisitPath(Table<O> path, ForeignKey<O, RecruitOfficeVisitRecord> childPath, InverseForeignKey<O, RecruitOfficeVisitRecord> parentPath) {
super(path, childPath, parentPath);
}
private RecruitOfficeVisitPath(Name alias, Table<RecruitOfficeVisitRecord> aliased) {
super(alias, aliased);
}
@Override
public RecruitOfficeVisitPath as(String alias) {
return new RecruitOfficeVisitPath(DSL.name(alias), this);
}
@Override
public RecruitOfficeVisitPath as(Name alias) {
return new RecruitOfficeVisitPath(alias, this);
}
@Override
public RecruitOfficeVisitPath as(Table<?> alias) {
return new RecruitOfficeVisitPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
@ -198,24 +160,6 @@ public class RecruitOfficeVisit extends TableImpl<RecruitOfficeVisitRecord> {
return Keys.RECRUIT_OFFICE_VISIT_PKEY;
}
@Override
public List<ForeignKey<RecruitOfficeVisitRecord, ?>> getReferences() {
return Arrays.asList(Keys.RECRUIT_OFFICE_VISIT__FK_SUMMONSES_REASON_ID);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.RECRUIT_OFFICE_VISIT__FK_SUMMONSES_REASON_ID, null);
return _summonsesReason;
}
@Override
public RecruitOfficeVisit as(String alias) {
return new RecruitOfficeVisit(DSL.name(alias), this);

View file

@ -6,20 +6,14 @@ package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -34,7 +28,6 @@ import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RemoveTmpMeasuresRecord;
@ -143,37 +136,6 @@ public class RemoveTmpMeasures extends TableImpl<RemoveTmpMeasuresRecord> {
this(DSL.name("remove_tmp_measures"), null);
}
public <O extends Record> RemoveTmpMeasures(Table<O> path, ForeignKey<O, RemoveTmpMeasuresRecord> childPath, InverseForeignKey<O, RemoveTmpMeasuresRecord> parentPath) {
super(path, childPath, parentPath, REMOVE_TMP_MEASURES);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class RemoveTmpMeasuresPath extends RemoveTmpMeasures implements Path<RemoveTmpMeasuresRecord> {
public <O extends Record> RemoveTmpMeasuresPath(Table<O> path, ForeignKey<O, RemoveTmpMeasuresRecord> childPath, InverseForeignKey<O, RemoveTmpMeasuresRecord> parentPath) {
super(path, childPath, parentPath);
}
private RemoveTmpMeasuresPath(Name alias, Table<RemoveTmpMeasuresRecord> aliased) {
super(alias, aliased);
}
@Override
public RemoveTmpMeasuresPath as(String alias) {
return new RemoveTmpMeasuresPath(DSL.name(alias), this);
}
@Override
public RemoveTmpMeasuresPath as(Name alias) {
return new RemoveTmpMeasuresPath(alias, this);
}
@Override
public RemoveTmpMeasuresPath as(Table<?> alias) {
return new RemoveTmpMeasuresPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
@ -189,24 +151,6 @@ public class RemoveTmpMeasures extends TableImpl<RemoveTmpMeasuresRecord> {
return Keys.REMOVE_TMP_MEASURES_PKEY;
}
@Override
public List<ForeignKey<RemoveTmpMeasuresRecord, ?>> getReferences() {
return Arrays.asList(Keys.REMOVE_TMP_MEASURES__FK_SUMMONSES_REASON_ID);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.REMOVE_TMP_MEASURES__FK_SUMMONSES_REASON_ID, null);
return _summonsesReason;
}
@Override
public RemoveTmpMeasures as(String alias) {
return new RemoveTmpMeasures(DSL.name(alias), this);

View file

@ -0,0 +1,335 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
import org.jooq.Stringly;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RemoveTmpMeasuresStorageRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class RemoveTmpMeasuresStorage extends TableImpl<RemoveTmpMeasuresStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of
* <code>summonses_list.remove_tmp_measures_storage</code>
*/
public static final RemoveTmpMeasuresStorage REMOVE_TMP_MEASURES_STORAGE = new RemoveTmpMeasuresStorage();
/**
* The class holding records for this type
*/
@Override
public Class<RemoveTmpMeasuresStorageRecord> getRecordType() {
return RemoveTmpMeasuresStorageRecord.class;
}
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.remove_tmp_measures_storage_id</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Long> REMOVE_TMP_MEASURES_STORAGE_ID = createField(DSL.name("remove_tmp_measures_storage_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.recruitment_id</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, String> RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.update_date</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Timestamp> UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.info_date</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Date> INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.summonses_reason_id</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Long> SUMMONSES_REASON_ID = createField(DSL.name("summonses_reason_id"), SQLDataType.BIGINT.nullable(false), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.count_formed</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Long> COUNT_FORMED = createField(DSL.name("count_formed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.count_for_sign</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Long> COUNT_FOR_SIGN = createField(DSL.name("count_for_sign"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.count_signed</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Long> COUNT_SIGNED = createField(DSL.name("count_signed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.remove_tmp_measures_storage.count_removed</code>.
*/
public final TableField<RemoveTmpMeasuresStorageRecord, Long> COUNT_REMOVED = createField(DSL.name("count_removed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
private RemoveTmpMeasuresStorage(Name alias, Table<RemoveTmpMeasuresStorageRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private RemoveTmpMeasuresStorage(Name alias, Table<RemoveTmpMeasuresStorageRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>summonses_list.remove_tmp_measures_storage</code>
* table reference
*/
public RemoveTmpMeasuresStorage(String alias) {
this(DSL.name(alias), REMOVE_TMP_MEASURES_STORAGE);
}
/**
* Create an aliased <code>summonses_list.remove_tmp_measures_storage</code>
* table reference
*/
public RemoveTmpMeasuresStorage(Name alias) {
this(alias, REMOVE_TMP_MEASURES_STORAGE);
}
/**
* Create a <code>summonses_list.remove_tmp_measures_storage</code> table
* reference
*/
public RemoveTmpMeasuresStorage() {
this(DSL.name("remove_tmp_measures_storage"), null);
}
public <O extends Record> RemoveTmpMeasuresStorage(Table<O> path, ForeignKey<O, RemoveTmpMeasuresStorageRecord> childPath, InverseForeignKey<O, RemoveTmpMeasuresStorageRecord> parentPath) {
super(path, childPath, parentPath, REMOVE_TMP_MEASURES_STORAGE);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class RemoveTmpMeasuresStoragePath extends RemoveTmpMeasuresStorage implements Path<RemoveTmpMeasuresStorageRecord> {
public <O extends Record> RemoveTmpMeasuresStoragePath(Table<O> path, ForeignKey<O, RemoveTmpMeasuresStorageRecord> childPath, InverseForeignKey<O, RemoveTmpMeasuresStorageRecord> parentPath) {
super(path, childPath, parentPath);
}
private RemoveTmpMeasuresStoragePath(Name alias, Table<RemoveTmpMeasuresStorageRecord> aliased) {
super(alias, aliased);
}
@Override
public RemoveTmpMeasuresStoragePath as(String alias) {
return new RemoveTmpMeasuresStoragePath(DSL.name(alias), this);
}
@Override
public RemoveTmpMeasuresStoragePath as(Name alias) {
return new RemoveTmpMeasuresStoragePath(alias, this);
}
@Override
public RemoveTmpMeasuresStoragePath as(Table<?> alias) {
return new RemoveTmpMeasuresStoragePath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
}
@Override
public Identity<RemoveTmpMeasuresStorageRecord, Long> getIdentity() {
return (Identity<RemoveTmpMeasuresStorageRecord, Long>) super.getIdentity();
}
@Override
public UniqueKey<RemoveTmpMeasuresStorageRecord> getPrimaryKey() {
return Keys.REMOVE_TMP_MEASURES_STORAGE_PKEY;
}
@Override
public List<ForeignKey<RemoveTmpMeasuresStorageRecord, ?>> getReferences() {
return Arrays.asList(Keys.REMOVE_TMP_MEASURES_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.REMOVE_TMP_MEASURES_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE, null);
return _summonsesReason;
}
@Override
public RemoveTmpMeasuresStorage as(String alias) {
return new RemoveTmpMeasuresStorage(DSL.name(alias), this);
}
@Override
public RemoveTmpMeasuresStorage as(Name alias) {
return new RemoveTmpMeasuresStorage(alias, this);
}
@Override
public RemoveTmpMeasuresStorage as(Table<?> alias) {
return new RemoveTmpMeasuresStorage(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public RemoveTmpMeasuresStorage rename(String name) {
return new RemoveTmpMeasuresStorage(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public RemoveTmpMeasuresStorage rename(Name name) {
return new RemoveTmpMeasuresStorage(name, null);
}
/**
* Rename this table
*/
@Override
public RemoveTmpMeasuresStorage rename(Table<?> name) {
return new RemoveTmpMeasuresStorage(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public RemoveTmpMeasuresStorage where(Condition condition) {
return new RemoveTmpMeasuresStorage(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public RemoveTmpMeasuresStorage where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public RemoveTmpMeasuresStorage where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public RemoveTmpMeasuresStorage where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RemoveTmpMeasuresStorage where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RemoveTmpMeasuresStorage where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RemoveTmpMeasuresStorage where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RemoveTmpMeasuresStorage where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public RemoveTmpMeasuresStorage whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public RemoveTmpMeasuresStorage whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -6,20 +6,14 @@ package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Arrays;
import java.util.Collection;
import java.util.List;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.ForeignKey;
import org.jooq.Identity;
import org.jooq.InverseForeignKey;
import org.jooq.Name;
import org.jooq.Path;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.Record;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
@ -34,7 +28,6 @@ import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RfLeavingBanRecord;
@ -134,37 +127,6 @@ public class RfLeavingBan extends TableImpl<RfLeavingBanRecord> {
this(DSL.name("rf_leaving_ban"), null);
}
public <O extends Record> RfLeavingBan(Table<O> path, ForeignKey<O, RfLeavingBanRecord> childPath, InverseForeignKey<O, RfLeavingBanRecord> parentPath) {
super(path, childPath, parentPath, RF_LEAVING_BAN);
}
/**
* A subtype implementing {@link Path} for simplified path-based joins.
*/
public static class RfLeavingBanPath extends RfLeavingBan implements Path<RfLeavingBanRecord> {
public <O extends Record> RfLeavingBanPath(Table<O> path, ForeignKey<O, RfLeavingBanRecord> childPath, InverseForeignKey<O, RfLeavingBanRecord> parentPath) {
super(path, childPath, parentPath);
}
private RfLeavingBanPath(Name alias, Table<RfLeavingBanRecord> aliased) {
super(alias, aliased);
}
@Override
public RfLeavingBanPath as(String alias) {
return new RfLeavingBanPath(DSL.name(alias), this);
}
@Override
public RfLeavingBanPath as(Name alias) {
return new RfLeavingBanPath(alias, this);
}
@Override
public RfLeavingBanPath as(Table<?> alias) {
return new RfLeavingBanPath(alias.getQualifiedName(), this);
}
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
@ -180,24 +142,6 @@ public class RfLeavingBan extends TableImpl<RfLeavingBanRecord> {
return Keys.RF_LEAVING_BAN_PKEY;
}
@Override
public List<ForeignKey<RfLeavingBanRecord, ?>> getReferences() {
return Arrays.asList(Keys.RF_LEAVING_BAN__FK_SUMMONSES_REASON_ID);
}
private transient SummonsesReasonPath _summonsesReason;
/**
* Get the implicit join path to the
* <code>summonses_list.summonses_reason</code> table.
*/
public SummonsesReasonPath summonsesReason() {
if (_summonsesReason == null)
_summonsesReason = new SummonsesReasonPath(this, Keys.RF_LEAVING_BAN__FK_SUMMONSES_REASON_ID, null);
return _summonsesReason;
}
@Override
public RfLeavingBan as(String alias) {
return new RfLeavingBan(DSL.name(alias), this);

View file

@ -0,0 +1,272 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables;
import java.sql.Date;
import java.sql.Timestamp;
import java.util.Collection;
import org.jooq.Condition;
import org.jooq.Field;
import org.jooq.Identity;
import org.jooq.Name;
import org.jooq.PlainSQL;
import org.jooq.QueryPart;
import org.jooq.SQL;
import org.jooq.Schema;
import org.jooq.Select;
import org.jooq.Stringly;
import org.jooq.Table;
import org.jooq.TableField;
import org.jooq.TableOptions;
import org.jooq.UniqueKey;
import org.jooq.impl.DSL;
import org.jooq.impl.SQLDataType;
import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.RfLeavingBanStorageRecord;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class RfLeavingBanStorage extends TableImpl<RfLeavingBanStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* The reference instance of
* <code>summonses_list.rf_leaving_ban_storage</code>
*/
public static final RfLeavingBanStorage RF_LEAVING_BAN_STORAGE = new RfLeavingBanStorage();
/**
* The class holding records for this type
*/
@Override
public Class<RfLeavingBanStorageRecord> getRecordType() {
return RfLeavingBanStorageRecord.class;
}
/**
* The column
* <code>summonses_list.rf_leaving_ban_storage.rf_leaving_ban_storage_id</code>.
*/
public final TableField<RfLeavingBanStorageRecord, Long> RF_LEAVING_BAN_STORAGE_ID = createField(DSL.name("rf_leaving_ban_storage_id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
/**
* The column
* <code>summonses_list.rf_leaving_ban_storage.recruitment_id</code>.
*/
public final TableField<RfLeavingBanStorageRecord, String> RECRUITMENT_ID = createField(DSL.name("recruitment_id"), SQLDataType.VARCHAR(36).nullable(false), this, "");
/**
* The column
* <code>summonses_list.rf_leaving_ban_storage.update_date</code>.
*/
public final TableField<RfLeavingBanStorageRecord, Timestamp> UPDATE_DATE = createField(DSL.name("update_date"), SQLDataType.TIMESTAMP(0).nullable(false).defaultValue(DSL.field(DSL.raw("now()"), SQLDataType.TIMESTAMP)), this, "");
/**
* The column <code>summonses_list.rf_leaving_ban_storage.info_date</code>.
*/
public final TableField<RfLeavingBanStorageRecord, Date> INFO_DATE = createField(DSL.name("info_date"), SQLDataType.DATE.nullable(false), this, "");
/**
* The column
* <code>summonses_list.rf_leaving_ban_storage.summonses_reason_id</code>.
*/
public final TableField<RfLeavingBanStorageRecord, Long> SUMMONSES_REASON_ID = createField(DSL.name("summonses_reason_id"), SQLDataType.BIGINT.nullable(false), this, "");
/**
* The column
* <code>summonses_list.rf_leaving_ban_storage.count_for_sign</code>.
*/
public final TableField<RfLeavingBanStorageRecord, Long> COUNT_FOR_SIGN = createField(DSL.name("count_for_sign"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.rf_leaving_ban_storage.count_signed</code>.
*/
public final TableField<RfLeavingBanStorageRecord, Long> COUNT_SIGNED = createField(DSL.name("count_signed"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
/**
* The column
* <code>summonses_list.rf_leaving_ban_storage.count_enter</code>.
*/
public final TableField<RfLeavingBanStorageRecord, Long> COUNT_ENTER = createField(DSL.name("count_enter"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
private RfLeavingBanStorage(Name alias, Table<RfLeavingBanStorageRecord> aliased) {
this(alias, aliased, (Field<?>[]) null, null);
}
private RfLeavingBanStorage(Name alias, Table<RfLeavingBanStorageRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
}
/**
* Create an aliased <code>summonses_list.rf_leaving_ban_storage</code>
* table reference
*/
public RfLeavingBanStorage(String alias) {
this(DSL.name(alias), RF_LEAVING_BAN_STORAGE);
}
/**
* Create an aliased <code>summonses_list.rf_leaving_ban_storage</code>
* table reference
*/
public RfLeavingBanStorage(Name alias) {
this(alias, RF_LEAVING_BAN_STORAGE);
}
/**
* Create a <code>summonses_list.rf_leaving_ban_storage</code> table
* reference
*/
public RfLeavingBanStorage() {
this(DSL.name("rf_leaving_ban_storage"), null);
}
@Override
public Schema getSchema() {
return aliased() ? null : SummonsesList.SUMMONSES_LIST;
}
@Override
public Identity<RfLeavingBanStorageRecord, Long> getIdentity() {
return (Identity<RfLeavingBanStorageRecord, Long>) super.getIdentity();
}
@Override
public UniqueKey<RfLeavingBanStorageRecord> getPrimaryKey() {
return Keys.RF_LEAVING_BAN_STORAGE_PKEY;
}
@Override
public RfLeavingBanStorage as(String alias) {
return new RfLeavingBanStorage(DSL.name(alias), this);
}
@Override
public RfLeavingBanStorage as(Name alias) {
return new RfLeavingBanStorage(alias, this);
}
@Override
public RfLeavingBanStorage as(Table<?> alias) {
return new RfLeavingBanStorage(alias.getQualifiedName(), this);
}
/**
* Rename this table
*/
@Override
public RfLeavingBanStorage rename(String name) {
return new RfLeavingBanStorage(DSL.name(name), null);
}
/**
* Rename this table
*/
@Override
public RfLeavingBanStorage rename(Name name) {
return new RfLeavingBanStorage(name, null);
}
/**
* Rename this table
*/
@Override
public RfLeavingBanStorage rename(Table<?> name) {
return new RfLeavingBanStorage(name.getQualifiedName(), null);
}
/**
* Create an inline derived table from this table
*/
@Override
public RfLeavingBanStorage where(Condition condition) {
return new RfLeavingBanStorage(getQualifiedName(), aliased() ? this : null, null, condition);
}
/**
* Create an inline derived table from this table
*/
@Override
public RfLeavingBanStorage where(Collection<? extends Condition> conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public RfLeavingBanStorage where(Condition... conditions) {
return where(DSL.and(conditions));
}
/**
* Create an inline derived table from this table
*/
@Override
public RfLeavingBanStorage where(Field<Boolean> condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RfLeavingBanStorage where(SQL condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RfLeavingBanStorage where(@Stringly.SQL String condition) {
return where(DSL.condition(condition));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RfLeavingBanStorage where(@Stringly.SQL String condition, Object... binds) {
return where(DSL.condition(condition, binds));
}
/**
* Create an inline derived table from this table
*/
@Override
@PlainSQL
public RfLeavingBanStorage where(@Stringly.SQL String condition, QueryPart... parts) {
return where(DSL.condition(condition, parts));
}
/**
* Create an inline derived table from this table
*/
@Override
public RfLeavingBanStorage whereExists(Select<?> select) {
return where(DSL.exists(select));
}
/**
* Create an inline derived table from this table
*/
@Override
public RfLeavingBanStorage whereNotExists(Select<?> select) {
return where(DSL.notExists(select));
}
}

View file

@ -33,12 +33,8 @@ import org.jooq.impl.TableImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.Keys;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.SummonsesList;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.DownloadForPrint.DownloadForPrintPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.FormedSummonses.FormedSummonsesPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasures.ImpositionTmpMeasuresPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpgu.InfoSentToLkEpguPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RecruitOfficeVisit.RecruitOfficeVisitPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasures.RemoveTmpMeasuresPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBan.RfLeavingBanPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpguStorage.InfoSentToLkEpguStoragePath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasuresStorage.RemoveTmpMeasuresStoragePath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.SummonsesReason.SummonsesReasonPath;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records.SummonsesReasonRecord;
@ -201,82 +197,30 @@ public class SummonsesReason extends TableImpl<SummonsesReasonRecord> {
return _downloadForPrint;
}
private transient FormedSummonsesPath _formedSummonses;
private transient InfoSentToLkEpguStoragePath _infoSentToLkEpguStorage;
/**
* Get the implicit to-many join path to the
* <code>summonses_list.formed_summonses</code> table
* <code>summonses_list.info_sent_to_lk_epgu_storage</code> table
*/
public FormedSummonsesPath formedSummonses() {
if (_formedSummonses == null)
_formedSummonses = new FormedSummonsesPath(this, null, Keys.FORMED_SUMMONSES__FK_SUMMONSES_REASON_ID.getInverseKey());
public InfoSentToLkEpguStoragePath infoSentToLkEpguStorage() {
if (_infoSentToLkEpguStorage == null)
_infoSentToLkEpguStorage = new InfoSentToLkEpguStoragePath(this, null, Keys.INFO_SENT_TO_LK_EPGU_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE.getInverseKey());
return _formedSummonses;
return _infoSentToLkEpguStorage;
}
private transient ImpositionTmpMeasuresPath _impositionTmpMeasures;
private transient RemoveTmpMeasuresStoragePath _removeTmpMeasuresStorage;
/**
* Get the implicit to-many join path to the
* <code>summonses_list.imposition_tmp_measures</code> table
* <code>summonses_list.remove_tmp_measures_storage</code> table
*/
public ImpositionTmpMeasuresPath impositionTmpMeasures() {
if (_impositionTmpMeasures == null)
_impositionTmpMeasures = new ImpositionTmpMeasuresPath(this, null, Keys.IMPOSITION_TMP_MEASURES__FK_SUMMONSES_REASON_ID.getInverseKey());
public RemoveTmpMeasuresStoragePath removeTmpMeasuresStorage() {
if (_removeTmpMeasuresStorage == null)
_removeTmpMeasuresStorage = new RemoveTmpMeasuresStoragePath(this, null, Keys.REMOVE_TMP_MEASURES_STORAGE__FK_SUMMONSES_REASON_ID_STORAGE.getInverseKey());
return _impositionTmpMeasures;
}
private transient InfoSentToLkEpguPath _infoSentToLkEpgu;
/**
* Get the implicit to-many join path to the
* <code>summonses_list.info_sent_to_lk_epgu</code> table
*/
public InfoSentToLkEpguPath infoSentToLkEpgu() {
if (_infoSentToLkEpgu == null)
_infoSentToLkEpgu = new InfoSentToLkEpguPath(this, null, Keys.INFO_SENT_TO_LK_EPGU__FK_SUMMONSES_REASON_ID.getInverseKey());
return _infoSentToLkEpgu;
}
private transient RecruitOfficeVisitPath _recruitOfficeVisit;
/**
* Get the implicit to-many join path to the
* <code>summonses_list.recruit_office_visit</code> table
*/
public RecruitOfficeVisitPath recruitOfficeVisit() {
if (_recruitOfficeVisit == null)
_recruitOfficeVisit = new RecruitOfficeVisitPath(this, null, Keys.RECRUIT_OFFICE_VISIT__FK_SUMMONSES_REASON_ID.getInverseKey());
return _recruitOfficeVisit;
}
private transient RemoveTmpMeasuresPath _removeTmpMeasures;
/**
* Get the implicit to-many join path to the
* <code>summonses_list.remove_tmp_measures</code> table
*/
public RemoveTmpMeasuresPath removeTmpMeasures() {
if (_removeTmpMeasures == null)
_removeTmpMeasures = new RemoveTmpMeasuresPath(this, null, Keys.REMOVE_TMP_MEASURES__FK_SUMMONSES_REASON_ID.getInverseKey());
return _removeTmpMeasures;
}
private transient RfLeavingBanPath _rfLeavingBan;
/**
* Get the implicit to-many join path to the
* <code>summonses_list.rf_leaving_ban</code> table
*/
public RfLeavingBanPath rfLeavingBan() {
if (_rfLeavingBan == null)
_rfLeavingBan = new RfLeavingBanPath(this, null, Keys.RF_LEAVING_BAN__FK_SUMMONSES_REASON_ID.getInverseKey());
return _rfLeavingBan;
return _removeTmpMeasuresStorage;
}
@Override

View file

@ -61,6 +61,24 @@ public class ViewImpositionTmpMeasures extends TableImpl<ViewImpositionTmpMeasur
*/
public final TableField<ViewImpositionTmpMeasuresRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_imposition_tmp_measures.count_for_sign</code>.
*/
public final TableField<ViewImpositionTmpMeasuresRecord, Long> COUNT_FOR_SIGN = createField(DSL.name("count_for_sign"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_imposition_tmp_measures.count_apply</code>.
*/
public final TableField<ViewImpositionTmpMeasuresRecord, Long> COUNT_APPLY = createField(DSL.name("count_apply"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_imposition_tmp_measures.count_enter</code>.
*/
public final TableField<ViewImpositionTmpMeasuresRecord, Long> COUNT_ENTER = createField(DSL.name("count_enter"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_imposition_tmp_measures.percent_for_sign</code>.
@ -85,12 +103,23 @@ public class ViewImpositionTmpMeasures extends TableImpl<ViewImpositionTmpMeasur
private ViewImpositionTmpMeasures(Name alias, Table<ViewImpositionTmpMeasuresRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_imposition_tmp_measures" as SELECT imposition_tmp_measures.imposition_tmp_measures_id,
((imposition_tmp_measures.count_for_sign + imposition_tmp_measures.count_apply) + imposition_tmp_measures.count_enter) AS count_all,
COALESCE(round((((imposition_tmp_measures.count_for_sign)::numeric * (100)::numeric) / NULLIF((((imposition_tmp_measures.count_for_sign + imposition_tmp_measures.count_apply) + imposition_tmp_measures.count_enter))::numeric, (0)::numeric))), (0)::numeric) AS percent_for_sign,
COALESCE(round((((imposition_tmp_measures.count_apply)::numeric * (100)::numeric) / NULLIF((((imposition_tmp_measures.count_for_sign + imposition_tmp_measures.count_apply) + imposition_tmp_measures.count_enter))::numeric, (0)::numeric))), (0)::numeric) AS percent_apply,
COALESCE(round((((imposition_tmp_measures.count_enter)::numeric * (100)::numeric) / NULLIF((((imposition_tmp_measures.count_for_sign + imposition_tmp_measures.count_apply) + imposition_tmp_measures.count_enter))::numeric, (0)::numeric))), (0)::numeric) AS percent_enter
FROM summonses_list.imposition_tmp_measures;
create view "view_imposition_tmp_measures" as SELECT m.imposition_tmp_measures_id,
(((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_apply) + COALESCE(s.count_apply, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)) AS count_all,
(m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) AS count_for_sign,
(m.count_apply + COALESCE(s.count_apply, (0)::bigint)) AS count_apply,
(m.count_enter + COALESCE(s.count_enter, (0)::bigint)) AS count_enter,
COALESCE(round(((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_apply) + COALESCE(s.count_apply, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_for_sign,
COALESCE(round(((((m.count_apply + COALESCE(s.count_apply, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_apply) + COALESCE(s.count_apply, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_apply,
COALESCE(round(((((m.count_enter + COALESCE(s.count_enter, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_apply) + COALESCE(s.count_apply, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_enter
FROM (summonses_list.imposition_tmp_measures m
LEFT JOIN ( SELECT DISTINCT ON (imposition_tmp_measures_storage.recruitment_id, imposition_tmp_measures_storage.summonses_reason_id, imposition_tmp_measures_storage.info_date) imposition_tmp_measures_storage.recruitment_id,
imposition_tmp_measures_storage.summonses_reason_id,
imposition_tmp_measures_storage.info_date,
imposition_tmp_measures_storage.count_for_sign,
imposition_tmp_measures_storage.count_apply,
imposition_tmp_measures_storage.count_enter
FROM summonses_list.imposition_tmp_measures_storage
ORDER BY imposition_tmp_measures_storage.recruitment_id, imposition_tmp_measures_storage.summonses_reason_id, imposition_tmp_measures_storage.info_date, imposition_tmp_measures_storage.update_date DESC) s ON ((((m.recruitment_id)::text = (s.recruitment_id)::text) AND (m.summonses_reason_id = s.summonses_reason_id) AND (m.info_date = s.info_date))));
"""), where);
}

View file

@ -55,6 +55,66 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> INFO_SENT_TO_LK_EPGU_ID = createField(DSL.name("info_sent_to_lk_epgu_id"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_status_formed</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_STATUS_FORMED = createField(DSL.name("count_status_formed"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_sended</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_SENDED = createField(DSL.name("count_sended"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_delivered</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_DELIVERED = createField(DSL.name("count_delivered"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_error</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ERROR = createField(DSL.name("count_error"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_viewed</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_VIEWED = createField(DSL.name("count_viewed"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_not_viewed</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_NOT_VIEWED = createField(DSL.name("count_not_viewed"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_status_not_formed</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_STATUS_NOT_FORMED = createField(DSL.name("count_status_not_formed"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_exceeded_send</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_EXCEEDED_SEND = createField(DSL.name("count_exceeded_send"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_exceeded_delivered</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_EXCEEDED_DELIVERED = createField(DSL.name("count_exceeded_delivered"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_all</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_formed</code>.
@ -97,12 +157,6 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
*/
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.count_all</code>.
*/
public final TableField<ViewInfoSentToLkEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_exceeded_send</code>.
@ -121,18 +175,41 @@ public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord>
private ViewInfoSentToLkEpgu(Name alias, Table<ViewInfoSentToLkEpguRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_info_sent_to_lk_epgu" as SELECT info_sent_to_lk_epgu.info_sent_to_lk_epgu_id,
COALESCE(round((((info_sent_to_lk_epgu.count_status_formed)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_status_formed,
COALESCE(round((((info_sent_to_lk_epgu.count_status_not_formed)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_status_not_formed,
COALESCE(round((((info_sent_to_lk_epgu.count_sended)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_sended,
COALESCE(round((((info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_delivered,
COALESCE(round((((info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_error,
COALESCE(round((((info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_viewed,
COALESCE(round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_not_viewed,
(info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed) AS count_all,
COALESCE(round((((info_sent_to_lk_epgu.count_exceeded_send)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_exceeded_send,
COALESCE(round((((info_sent_to_lk_epgu.count_exceeded_delivered)::numeric * (100)::numeric) / NULLIF(((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric, (0)::numeric))), (0)::numeric) AS percent_exceeded_delivered
FROM summonses_list.info_sent_to_lk_epgu;
create view "view_info_sent_to_lk_epgu" as SELECT m.info_sent_to_lk_epgu_id,
(m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) AS count_status_formed,
(m.count_sended + COALESCE(s.count_sended, (0)::bigint)) AS count_sended,
(m.count_delivered + COALESCE(s.count_delivered, (0)::bigint)) AS count_delivered,
(m.count_error + COALESCE(s.count_error, (0)::bigint)) AS count_error,
(m.count_viewed + COALESCE(s.count_viewed, (0)::bigint)) AS count_viewed,
(m.count_not_viewed + COALESCE(s.count_not_viewed, (0)::bigint)) AS count_not_viewed,
(m.count_status_not_formed + COALESCE(s.count_status_not_formed, (0)::bigint)) AS count_status_not_formed,
(m.count_exceeded_send + COALESCE(s.count_exceeded_send, (0)::bigint)) AS count_exceeded_send,
(m.count_exceeded_delivered + COALESCE(s.count_exceeded_delivered, (0)::bigint)) AS count_exceeded_delivered,
(((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)) AS count_all,
COALESCE(round(((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_status_formed,
COALESCE(round(((((m.count_status_not_formed + COALESCE(s.count_status_not_formed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_status_not_formed,
COALESCE(round(((((m.count_sended + COALESCE(s.count_sended, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_sended,
COALESCE(round(((((m.count_delivered + COALESCE(s.count_delivered, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_delivered,
COALESCE(round(((((m.count_error + COALESCE(s.count_error, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_error,
COALESCE(round(((((m.count_viewed + COALESCE(s.count_viewed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_viewed,
COALESCE(round(((((m.count_not_viewed + COALESCE(s.count_not_viewed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_not_viewed,
COALESCE(round(((((m.count_exceeded_send + COALESCE(s.count_exceeded_send, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_exceeded_send,
COALESCE(round(((((m.count_exceeded_delivered + COALESCE(s.count_exceeded_delivered, (0)::bigint)))::numeric * 100.0) / (NULLIF((((m.count_status_formed + COALESCE(s.count_status_formed, (0)::bigint)) + m.count_status_not_formed) + COALESCE(s.count_status_not_formed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_exceeded_delivered
FROM (summonses_list.info_sent_to_lk_epgu m
LEFT JOIN ( SELECT DISTINCT ON (info_sent_to_lk_epgu_storage.recruitment_id, info_sent_to_lk_epgu_storage.summonses_reason_id, info_sent_to_lk_epgu_storage.info_date) info_sent_to_lk_epgu_storage.recruitment_id,
info_sent_to_lk_epgu_storage.summonses_reason_id,
info_sent_to_lk_epgu_storage.info_date,
info_sent_to_lk_epgu_storage.count_status_formed,
info_sent_to_lk_epgu_storage.count_sended,
info_sent_to_lk_epgu_storage.count_delivered,
info_sent_to_lk_epgu_storage.count_error,
info_sent_to_lk_epgu_storage.count_viewed,
info_sent_to_lk_epgu_storage.count_not_viewed,
info_sent_to_lk_epgu_storage.count_status_not_formed,
info_sent_to_lk_epgu_storage.count_exceeded_send,
info_sent_to_lk_epgu_storage.count_exceeded_delivered
FROM summonses_list.info_sent_to_lk_epgu_storage
ORDER BY info_sent_to_lk_epgu_storage.recruitment_id, info_sent_to_lk_epgu_storage.summonses_reason_id, info_sent_to_lk_epgu_storage.info_date, info_sent_to_lk_epgu_storage.update_date DESC) s ON ((((m.recruitment_id)::text = (s.recruitment_id)::text) AND (m.summonses_reason_id = s.summonses_reason_id) AND (m.info_date = s.info_date))));
"""), where);
}

View file

@ -61,6 +61,30 @@ public class ViewRemoveTmpMeasures extends TableImpl<ViewRemoveTmpMeasuresRecord
*/
public final TableField<ViewRemoveTmpMeasuresRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_remove_tmp_measures.count_formed</code>.
*/
public final TableField<ViewRemoveTmpMeasuresRecord, Long> COUNT_FORMED = createField(DSL.name("count_formed"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_remove_tmp_measures.count_for_sign</code>.
*/
public final TableField<ViewRemoveTmpMeasuresRecord, Long> COUNT_FOR_SIGN = createField(DSL.name("count_for_sign"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_remove_tmp_measures.count_signed</code>.
*/
public final TableField<ViewRemoveTmpMeasuresRecord, Long> COUNT_SIGNED = createField(DSL.name("count_signed"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_remove_tmp_measures.count_removed</code>.
*/
public final TableField<ViewRemoveTmpMeasuresRecord, Long> COUNT_REMOVED = createField(DSL.name("count_removed"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_remove_tmp_measures.percent_formed</code>.
@ -91,13 +115,26 @@ public class ViewRemoveTmpMeasures extends TableImpl<ViewRemoveTmpMeasuresRecord
private ViewRemoveTmpMeasures(Name alias, Table<ViewRemoveTmpMeasuresRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_remove_tmp_measures" as SELECT remove_tmp_measures.remove_tmp_measures_id,
(((remove_tmp_measures.count_formed + remove_tmp_measures.count_for_sign) + remove_tmp_measures.count_signed) + remove_tmp_measures.count_removed) AS count_all,
COALESCE(round((((remove_tmp_measures.count_formed)::numeric * (100)::numeric) / NULLIF(((((remove_tmp_measures.count_formed + remove_tmp_measures.count_for_sign) + remove_tmp_measures.count_signed) + remove_tmp_measures.count_removed))::numeric, (0)::numeric))), (0)::numeric) AS percent_formed,
COALESCE(round((((remove_tmp_measures.count_for_sign)::numeric * (100)::numeric) / NULLIF(((((remove_tmp_measures.count_formed + remove_tmp_measures.count_for_sign) + remove_tmp_measures.count_signed) + remove_tmp_measures.count_removed))::numeric, (0)::numeric))), (0)::numeric) AS percent_for_sign,
COALESCE(round((((remove_tmp_measures.count_signed)::numeric * (100)::numeric) / NULLIF(((((remove_tmp_measures.count_formed + remove_tmp_measures.count_for_sign) + remove_tmp_measures.count_signed) + remove_tmp_measures.count_removed))::numeric, (0)::numeric))), (0)::numeric) AS percent_signed,
COALESCE(round((((remove_tmp_measures.count_removed)::numeric * (100)::numeric) / NULLIF(((((remove_tmp_measures.count_formed + remove_tmp_measures.count_for_sign) + remove_tmp_measures.count_signed) + remove_tmp_measures.count_removed))::numeric, (0)::numeric))), (0)::numeric) AS percent_removed
FROM summonses_list.remove_tmp_measures;
create view "view_remove_tmp_measures" as SELECT m.remove_tmp_measures_id,
(((((((m.count_formed + COALESCE(s.count_formed, (0)::bigint)) + m.count_for_sign) + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_removed) + COALESCE(s.count_removed, (0)::bigint)) AS count_all,
(m.count_formed + COALESCE(s.count_formed, (0)::bigint)) AS count_formed,
(m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) AS count_for_sign,
(m.count_signed + COALESCE(s.count_signed, (0)::bigint)) AS count_signed,
(m.count_removed + COALESCE(s.count_removed, (0)::bigint)) AS count_removed,
COALESCE(round(((((m.count_formed + COALESCE(s.count_formed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((((m.count_formed + COALESCE(s.count_formed, (0)::bigint)) + m.count_for_sign) + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_removed) + COALESCE(s.count_removed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_formed,
COALESCE(round(((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((((m.count_formed + COALESCE(s.count_formed, (0)::bigint)) + m.count_for_sign) + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_removed) + COALESCE(s.count_removed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_for_sign,
COALESCE(round(((((m.count_signed + COALESCE(s.count_signed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((((m.count_formed + COALESCE(s.count_formed, (0)::bigint)) + m.count_for_sign) + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_removed) + COALESCE(s.count_removed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_signed,
COALESCE(round(((((m.count_removed + COALESCE(s.count_removed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((((m.count_formed + COALESCE(s.count_formed, (0)::bigint)) + m.count_for_sign) + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_removed) + COALESCE(s.count_removed, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_removed
FROM (summonses_list.remove_tmp_measures m
LEFT JOIN ( SELECT DISTINCT ON (remove_tmp_measures_storage.recruitment_id, remove_tmp_measures_storage.summonses_reason_id, remove_tmp_measures_storage.info_date) remove_tmp_measures_storage.recruitment_id,
remove_tmp_measures_storage.summonses_reason_id,
remove_tmp_measures_storage.info_date,
remove_tmp_measures_storage.count_formed,
remove_tmp_measures_storage.count_for_sign,
remove_tmp_measures_storage.count_signed,
remove_tmp_measures_storage.count_removed
FROM summonses_list.remove_tmp_measures_storage
ORDER BY remove_tmp_measures_storage.recruitment_id, remove_tmp_measures_storage.summonses_reason_id, remove_tmp_measures_storage.info_date, remove_tmp_measures_storage.update_date DESC) s ON ((((m.recruitment_id)::text = (s.recruitment_id)::text) AND (m.summonses_reason_id = s.summonses_reason_id) AND (m.info_date = s.info_date))));
"""), where);
}

View file

@ -59,6 +59,22 @@ public class ViewRfLeavingBan extends TableImpl<ViewRfLeavingBanRecord> {
*/
public final TableField<ViewRfLeavingBanRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_rf_leaving_ban.count_for_sign</code>.
*/
public final TableField<ViewRfLeavingBanRecord, Long> COUNT_FOR_SIGN = createField(DSL.name("count_for_sign"), SQLDataType.BIGINT, this, "");
/**
* The column <code>summonses_list.view_rf_leaving_ban.count_signed</code>.
*/
public final TableField<ViewRfLeavingBanRecord, Long> COUNT_SIGNED = createField(DSL.name("count_signed"), SQLDataType.BIGINT, this, "");
/**
* The column <code>summonses_list.view_rf_leaving_ban.count_enter</code>.
*/
public final TableField<ViewRfLeavingBanRecord, Long> COUNT_ENTER = createField(DSL.name("count_enter"), SQLDataType.BIGINT, this, "");
/**
* The column
* <code>summonses_list.view_rf_leaving_ban.percent_for_sign</code>.
@ -82,12 +98,23 @@ public class ViewRfLeavingBan extends TableImpl<ViewRfLeavingBanRecord> {
private ViewRfLeavingBan(Name alias, Table<ViewRfLeavingBanRecord> aliased, Field<?>[] parameters, Condition where) {
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view("""
create view "view_rf_leaving_ban" as SELECT rf_leaving_ban.rf_leaving_ban_id,
((rf_leaving_ban.count_for_sign + rf_leaving_ban.count_signed) + rf_leaving_ban.count_enter) AS count_all,
COALESCE(round((((rf_leaving_ban.count_for_sign)::numeric * (100)::numeric) / NULLIF((((rf_leaving_ban.count_for_sign + rf_leaving_ban.count_signed) + rf_leaving_ban.count_enter))::numeric, (0)::numeric))), (0)::numeric) AS percent_for_sign,
COALESCE(round((((rf_leaving_ban.count_signed)::numeric * (100)::numeric) / NULLIF((((rf_leaving_ban.count_for_sign + rf_leaving_ban.count_signed) + rf_leaving_ban.count_enter))::numeric, (0)::numeric))), (0)::numeric) AS percent_signed,
COALESCE(round((((rf_leaving_ban.count_enter)::numeric * (100)::numeric) / NULLIF((((rf_leaving_ban.count_for_sign + rf_leaving_ban.count_signed) + rf_leaving_ban.count_enter))::numeric, (0)::numeric))), (0)::numeric) AS percent_enter
FROM summonses_list.rf_leaving_ban;
create view "view_rf_leaving_ban" as SELECT m.rf_leaving_ban_id,
(((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)) AS count_all,
(m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) AS count_for_sign,
(m.count_signed + COALESCE(s.count_signed, (0)::bigint)) AS count_signed,
(m.count_enter + COALESCE(s.count_enter, (0)::bigint)) AS count_enter,
COALESCE(round(((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_for_sign,
COALESCE(round(((((m.count_signed + COALESCE(s.count_signed, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_signed,
COALESCE(round(((((m.count_enter + COALESCE(s.count_enter, (0)::bigint)))::numeric * 100.0) / (NULLIF((((((m.count_for_sign + COALESCE(s.count_for_sign, (0)::bigint)) + m.count_signed) + COALESCE(s.count_signed, (0)::bigint)) + m.count_enter) + COALESCE(s.count_enter, (0)::bigint)), 0))::numeric)), (0)::numeric) AS percent_enter
FROM (summonses_list.rf_leaving_ban m
LEFT JOIN ( SELECT DISTINCT ON (rf_leaving_ban_storage.recruitment_id, rf_leaving_ban_storage.summonses_reason_id, rf_leaving_ban_storage.info_date) rf_leaving_ban_storage.recruitment_id,
rf_leaving_ban_storage.summonses_reason_id,
rf_leaving_ban_storage.info_date,
rf_leaving_ban_storage.count_for_sign,
rf_leaving_ban_storage.count_signed,
rf_leaving_ban_storage.count_enter
FROM summonses_list.rf_leaving_ban_storage
ORDER BY rf_leaving_ban_storage.recruitment_id, rf_leaving_ban_storage.summonses_reason_id, rf_leaving_ban_storage.info_date, rf_leaving_ban_storage.update_date DESC) s ON ((((m.recruitment_id)::text = (s.recruitment_id)::text) AND (m.summonses_reason_id = s.summonses_reason_id) AND (m.info_date = s.info_date))));
"""), where);
}

View file

@ -0,0 +1,188 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records;
import java.sql.Date;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.ImpositionTmpMeasuresStorage;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class ImpositionTmpMeasuresStorageRecord extends UpdatableRecordImpl<ImpositionTmpMeasuresStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.imposition_tmp_measures_storage_id</code>.
*/
public void setImpositionTmpMeasuresStorageId(Long value) {
set(0, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.imposition_tmp_measures_storage_id</code>.
*/
public Long getImpositionTmpMeasuresStorageId() {
return (Long) get(0);
}
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.recruitment_id</code>.
*/
public void setRecruitmentId(String value) {
set(1, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.recruitment_id</code>.
*/
public String getRecruitmentId() {
return (String) get(1);
}
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.update_date</code>.
*/
public void setUpdateDate(Timestamp value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.update_date</code>.
*/
public Timestamp getUpdateDate() {
return (Timestamp) get(2);
}
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.info_date</code>.
*/
public void setInfoDate(Date value) {
set(3, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.info_date</code>.
*/
public Date getInfoDate() {
return (Date) get(3);
}
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.summonses_reason_id</code>.
*/
public void setSummonsesReasonId(Long value) {
set(4, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.summonses_reason_id</code>.
*/
public Long getSummonsesReasonId() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.count_for_sign</code>.
*/
public void setCountForSign(Long value) {
set(5, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.count_for_sign</code>.
*/
public Long getCountForSign() {
return (Long) get(5);
}
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.count_apply</code>.
*/
public void setCountApply(Long value) {
set(6, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.count_apply</code>.
*/
public Long getCountApply() {
return (Long) get(6);
}
/**
* Setter for
* <code>summonses_list.imposition_tmp_measures_storage.count_enter</code>.
*/
public void setCountEnter(Long value) {
set(7, value);
}
/**
* Getter for
* <code>summonses_list.imposition_tmp_measures_storage.count_enter</code>.
*/
public Long getCountEnter() {
return (Long) get(7);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Long> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached ImpositionTmpMeasuresStorageRecord
*/
public ImpositionTmpMeasuresStorageRecord() {
super(ImpositionTmpMeasuresStorage.IMPOSITION_TMP_MEASURES_STORAGE);
}
/**
* Create a detached, initialised ImpositionTmpMeasuresStorageRecord
*/
public ImpositionTmpMeasuresStorageRecord(Long impositionTmpMeasuresStorageId, String recruitmentId, Timestamp updateDate, Date infoDate, Long summonsesReasonId, Long countForSign, Long countApply, Long countEnter) {
super(ImpositionTmpMeasuresStorage.IMPOSITION_TMP_MEASURES_STORAGE);
setImpositionTmpMeasuresStorageId(impositionTmpMeasuresStorageId);
setRecruitmentId(recruitmentId);
setUpdateDate(updateDate);
setInfoDate(infoDate);
setSummonsesReasonId(summonsesReasonId);
setCountForSign(countForSign);
setCountApply(countApply);
setCountEnter(countEnter);
resetChangedOnNotNull();
}
}

View file

@ -0,0 +1,290 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records;
import java.sql.Date;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.InfoSentToLkEpguStorage;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class InfoSentToLkEpguStorageRecord extends UpdatableRecordImpl<InfoSentToLkEpguStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.info_sent_to_lk_epgu_storage_id</code>.
*/
public void setInfoSentToLkEpguStorageId(Long value) {
set(0, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.info_sent_to_lk_epgu_storage_id</code>.
*/
public Long getInfoSentToLkEpguStorageId() {
return (Long) get(0);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.recruitment_id</code>.
*/
public void setRecruitmentId(String value) {
set(1, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.recruitment_id</code>.
*/
public String getRecruitmentId() {
return (String) get(1);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.update_date</code>.
*/
public void setUpdateDate(Timestamp value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.update_date</code>.
*/
public Timestamp getUpdateDate() {
return (Timestamp) get(2);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.info_date</code>.
*/
public void setInfoDate(Date value) {
set(3, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.info_date</code>.
*/
public Date getInfoDate() {
return (Date) get(3);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.summonses_reason_id</code>.
*/
public void setSummonsesReasonId(Long value) {
set(4, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.summonses_reason_id</code>.
*/
public Long getSummonsesReasonId() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_status_formed</code>.
*/
public void setCountStatusFormed(Long value) {
set(5, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_status_formed</code>.
*/
public Long getCountStatusFormed() {
return (Long) get(5);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_sended</code>.
*/
public void setCountSended(Long value) {
set(6, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_sended</code>.
*/
public Long getCountSended() {
return (Long) get(6);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_delivered</code>.
*/
public void setCountDelivered(Long value) {
set(7, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_delivered</code>.
*/
public Long getCountDelivered() {
return (Long) get(7);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_error</code>.
*/
public void setCountError(Long value) {
set(8, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_error</code>.
*/
public Long getCountError() {
return (Long) get(8);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_viewed</code>.
*/
public void setCountViewed(Long value) {
set(9, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_viewed</code>.
*/
public Long getCountViewed() {
return (Long) get(9);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_not_viewed</code>.
*/
public void setCountNotViewed(Long value) {
set(10, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_not_viewed</code>.
*/
public Long getCountNotViewed() {
return (Long) get(10);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_status_not_formed</code>.
*/
public void setCountStatusNotFormed(Long value) {
set(11, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_status_not_formed</code>.
*/
public Long getCountStatusNotFormed() {
return (Long) get(11);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_exceeded_send</code>.
*/
public void setCountExceededSend(Long value) {
set(12, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_exceeded_send</code>.
*/
public Long getCountExceededSend() {
return (Long) get(12);
}
/**
* Setter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_exceeded_delivered</code>.
*/
public void setCountExceededDelivered(Long value) {
set(13, value);
}
/**
* Getter for
* <code>summonses_list.info_sent_to_lk_epgu_storage.count_exceeded_delivered</code>.
*/
public Long getCountExceededDelivered() {
return (Long) get(13);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Long> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached InfoSentToLkEpguStorageRecord
*/
public InfoSentToLkEpguStorageRecord() {
super(InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE);
}
/**
* Create a detached, initialised InfoSentToLkEpguStorageRecord
*/
public InfoSentToLkEpguStorageRecord(Long infoSentToLkEpguStorageId, String recruitmentId, Timestamp updateDate, Date infoDate, Long summonsesReasonId, Long countStatusFormed, Long countSended, Long countDelivered, Long countError, Long countViewed, Long countNotViewed, Long countStatusNotFormed, Long countExceededSend, Long countExceededDelivered) {
super(InfoSentToLkEpguStorage.INFO_SENT_TO_LK_EPGU_STORAGE);
setInfoSentToLkEpguStorageId(infoSentToLkEpguStorageId);
setRecruitmentId(recruitmentId);
setUpdateDate(updateDate);
setInfoDate(infoDate);
setSummonsesReasonId(summonsesReasonId);
setCountStatusFormed(countStatusFormed);
setCountSended(countSended);
setCountDelivered(countDelivered);
setCountError(countError);
setCountViewed(countViewed);
setCountNotViewed(countNotViewed);
setCountStatusNotFormed(countStatusNotFormed);
setCountExceededSend(countExceededSend);
setCountExceededDelivered(countExceededDelivered);
resetChangedOnNotNull();
}
}

View file

@ -0,0 +1,205 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records;
import java.sql.Date;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RemoveTmpMeasuresStorage;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class RemoveTmpMeasuresStorageRecord extends UpdatableRecordImpl<RemoveTmpMeasuresStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.remove_tmp_measures_storage_id</code>.
*/
public void setRemoveTmpMeasuresStorageId(Long value) {
set(0, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.remove_tmp_measures_storage_id</code>.
*/
public Long getRemoveTmpMeasuresStorageId() {
return (Long) get(0);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.recruitment_id</code>.
*/
public void setRecruitmentId(String value) {
set(1, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.recruitment_id</code>.
*/
public String getRecruitmentId() {
return (String) get(1);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.update_date</code>.
*/
public void setUpdateDate(Timestamp value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.update_date</code>.
*/
public Timestamp getUpdateDate() {
return (Timestamp) get(2);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.info_date</code>.
*/
public void setInfoDate(Date value) {
set(3, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.info_date</code>.
*/
public Date getInfoDate() {
return (Date) get(3);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.summonses_reason_id</code>.
*/
public void setSummonsesReasonId(Long value) {
set(4, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.summonses_reason_id</code>.
*/
public Long getSummonsesReasonId() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.count_formed</code>.
*/
public void setCountFormed(Long value) {
set(5, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.count_formed</code>.
*/
public Long getCountFormed() {
return (Long) get(5);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.count_for_sign</code>.
*/
public void setCountForSign(Long value) {
set(6, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.count_for_sign</code>.
*/
public Long getCountForSign() {
return (Long) get(6);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.count_signed</code>.
*/
public void setCountSigned(Long value) {
set(7, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.count_signed</code>.
*/
public Long getCountSigned() {
return (Long) get(7);
}
/**
* Setter for
* <code>summonses_list.remove_tmp_measures_storage.count_removed</code>.
*/
public void setCountRemoved(Long value) {
set(8, value);
}
/**
* Getter for
* <code>summonses_list.remove_tmp_measures_storage.count_removed</code>.
*/
public Long getCountRemoved() {
return (Long) get(8);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Long> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached RemoveTmpMeasuresStorageRecord
*/
public RemoveTmpMeasuresStorageRecord() {
super(RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE);
}
/**
* Create a detached, initialised RemoveTmpMeasuresStorageRecord
*/
public RemoveTmpMeasuresStorageRecord(Long removeTmpMeasuresStorageId, String recruitmentId, Timestamp updateDate, Date infoDate, Long summonsesReasonId, Long countFormed, Long countForSign, Long countSigned, Long countRemoved) {
super(RemoveTmpMeasuresStorage.REMOVE_TMP_MEASURES_STORAGE);
setRemoveTmpMeasuresStorageId(removeTmpMeasuresStorageId);
setRecruitmentId(recruitmentId);
setUpdateDate(updateDate);
setInfoDate(infoDate);
setSummonsesReasonId(summonsesReasonId);
setCountFormed(countFormed);
setCountForSign(countForSign);
setCountSigned(countSigned);
setCountRemoved(countRemoved);
resetChangedOnNotNull();
}
}

View file

@ -0,0 +1,186 @@
/*
* This file is generated by jOOQ.
*/
package ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.records;
import java.sql.Date;
import java.sql.Timestamp;
import org.jooq.Record1;
import org.jooq.impl.UpdatableRecordImpl;
import ru.micord.webbpm.ervu.business_metrics.db_beans.summonses_list.tables.RfLeavingBanStorage;
/**
* This class is generated by jOOQ.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
public class RfLeavingBanStorageRecord extends UpdatableRecordImpl<RfLeavingBanStorageRecord> {
private static final long serialVersionUID = 1L;
/**
* Setter for
* <code>summonses_list.rf_leaving_ban_storage.rf_leaving_ban_storage_id</code>.
*/
public void setRfLeavingBanStorageId(Long value) {
set(0, value);
}
/**
* Getter for
* <code>summonses_list.rf_leaving_ban_storage.rf_leaving_ban_storage_id</code>.
*/
public Long getRfLeavingBanStorageId() {
return (Long) get(0);
}
/**
* Setter for
* <code>summonses_list.rf_leaving_ban_storage.recruitment_id</code>.
*/
public void setRecruitmentId(String value) {
set(1, value);
}
/**
* Getter for
* <code>summonses_list.rf_leaving_ban_storage.recruitment_id</code>.
*/
public String getRecruitmentId() {
return (String) get(1);
}
/**
* Setter for
* <code>summonses_list.rf_leaving_ban_storage.update_date</code>.
*/
public void setUpdateDate(Timestamp value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.rf_leaving_ban_storage.update_date</code>.
*/
public Timestamp getUpdateDate() {
return (Timestamp) get(2);
}
/**
* Setter for <code>summonses_list.rf_leaving_ban_storage.info_date</code>.
*/
public void setInfoDate(Date value) {
set(3, value);
}
/**
* Getter for <code>summonses_list.rf_leaving_ban_storage.info_date</code>.
*/
public Date getInfoDate() {
return (Date) get(3);
}
/**
* Setter for
* <code>summonses_list.rf_leaving_ban_storage.summonses_reason_id</code>.
*/
public void setSummonsesReasonId(Long value) {
set(4, value);
}
/**
* Getter for
* <code>summonses_list.rf_leaving_ban_storage.summonses_reason_id</code>.
*/
public Long getSummonsesReasonId() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.rf_leaving_ban_storage.count_for_sign</code>.
*/
public void setCountForSign(Long value) {
set(5, value);
}
/**
* Getter for
* <code>summonses_list.rf_leaving_ban_storage.count_for_sign</code>.
*/
public Long getCountForSign() {
return (Long) get(5);
}
/**
* Setter for
* <code>summonses_list.rf_leaving_ban_storage.count_signed</code>.
*/
public void setCountSigned(Long value) {
set(6, value);
}
/**
* Getter for
* <code>summonses_list.rf_leaving_ban_storage.count_signed</code>.
*/
public Long getCountSigned() {
return (Long) get(6);
}
/**
* Setter for
* <code>summonses_list.rf_leaving_ban_storage.count_enter</code>.
*/
public void setCountEnter(Long value) {
set(7, value);
}
/**
* Getter for
* <code>summonses_list.rf_leaving_ban_storage.count_enter</code>.
*/
public Long getCountEnter() {
return (Long) get(7);
}
// -------------------------------------------------------------------------
// Primary key information
// -------------------------------------------------------------------------
@Override
public Record1<Long> key() {
return (Record1) super.key();
}
// -------------------------------------------------------------------------
// Constructors
// -------------------------------------------------------------------------
/**
* Create a detached RfLeavingBanStorageRecord
*/
public RfLeavingBanStorageRecord() {
super(RfLeavingBanStorage.RF_LEAVING_BAN_STORAGE);
}
/**
* Create a detached, initialised RfLeavingBanStorageRecord
*/
public RfLeavingBanStorageRecord(Long rfLeavingBanStorageId, String recruitmentId, Timestamp updateDate, Date infoDate, Long summonsesReasonId, Long countForSign, Long countSigned, Long countEnter) {
super(RfLeavingBanStorage.RF_LEAVING_BAN_STORAGE);
setRfLeavingBanStorageId(rfLeavingBanStorageId);
setRecruitmentId(recruitmentId);
setUpdateDate(updateDate);
setInfoDate(infoDate);
setSummonsesReasonId(summonsesReasonId);
setCountForSign(countForSign);
setCountSigned(countSigned);
setCountEnter(countEnter);
resetChangedOnNotNull();
}
}

View file

@ -51,12 +51,60 @@ public class ViewImpositionTmpMeasuresRecord extends TableRecordImpl<ViewImposit
return (Long) get(1);
}
/**
* Setter for
* <code>summonses_list.view_imposition_tmp_measures.count_for_sign</code>.
*/
public void setCountForSign(Long value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.view_imposition_tmp_measures.count_for_sign</code>.
*/
public Long getCountForSign() {
return (Long) get(2);
}
/**
* Setter for
* <code>summonses_list.view_imposition_tmp_measures.count_apply</code>.
*/
public void setCountApply(Long value) {
set(3, value);
}
/**
* Getter for
* <code>summonses_list.view_imposition_tmp_measures.count_apply</code>.
*/
public Long getCountApply() {
return (Long) get(3);
}
/**
* Setter for
* <code>summonses_list.view_imposition_tmp_measures.count_enter</code>.
*/
public void setCountEnter(Long value) {
set(4, value);
}
/**
* Getter for
* <code>summonses_list.view_imposition_tmp_measures.count_enter</code>.
*/
public Long getCountEnter() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.view_imposition_tmp_measures.percent_for_sign</code>.
*/
public void setPercentForSign(BigDecimal value) {
set(2, value);
set(5, value);
}
/**
@ -64,7 +112,7 @@ public class ViewImpositionTmpMeasuresRecord extends TableRecordImpl<ViewImposit
* <code>summonses_list.view_imposition_tmp_measures.percent_for_sign</code>.
*/
public BigDecimal getPercentForSign() {
return (BigDecimal) get(2);
return (BigDecimal) get(5);
}
/**
@ -72,7 +120,7 @@ public class ViewImpositionTmpMeasuresRecord extends TableRecordImpl<ViewImposit
* <code>summonses_list.view_imposition_tmp_measures.percent_apply</code>.
*/
public void setPercentApply(BigDecimal value) {
set(3, value);
set(6, value);
}
/**
@ -80,7 +128,7 @@ public class ViewImpositionTmpMeasuresRecord extends TableRecordImpl<ViewImposit
* <code>summonses_list.view_imposition_tmp_measures.percent_apply</code>.
*/
public BigDecimal getPercentApply() {
return (BigDecimal) get(3);
return (BigDecimal) get(6);
}
/**
@ -88,7 +136,7 @@ public class ViewImpositionTmpMeasuresRecord extends TableRecordImpl<ViewImposit
* <code>summonses_list.view_imposition_tmp_measures.percent_enter</code>.
*/
public void setPercentEnter(BigDecimal value) {
set(4, value);
set(7, value);
}
/**
@ -96,7 +144,7 @@ public class ViewImpositionTmpMeasuresRecord extends TableRecordImpl<ViewImposit
* <code>summonses_list.view_imposition_tmp_measures.percent_enter</code>.
*/
public BigDecimal getPercentEnter() {
return (BigDecimal) get(4);
return (BigDecimal) get(7);
}
// -------------------------------------------------------------------------
@ -113,11 +161,14 @@ public class ViewImpositionTmpMeasuresRecord extends TableRecordImpl<ViewImposit
/**
* Create a detached, initialised ViewImpositionTmpMeasuresRecord
*/
public ViewImpositionTmpMeasuresRecord(Long impositionTmpMeasuresId, Long countAll, BigDecimal percentForSign, BigDecimal percentApply, BigDecimal percentEnter) {
public ViewImpositionTmpMeasuresRecord(Long impositionTmpMeasuresId, Long countAll, Long countForSign, Long countApply, Long countEnter, BigDecimal percentForSign, BigDecimal percentApply, BigDecimal percentEnter) {
super(ViewImpositionTmpMeasures.VIEW_IMPOSITION_TMP_MEASURES);
setImpositionTmpMeasuresId(impositionTmpMeasuresId);
setCountAll(countAll);
setCountForSign(countForSign);
setCountApply(countApply);
setCountEnter(countEnter);
setPercentForSign(percentForSign);
setPercentApply(percentApply);
setPercentEnter(percentEnter);

View file

@ -37,114 +37,146 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_formed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_status_formed</code>.
*/
public void setPercentStatusFormed(BigDecimal value) {
public void setCountStatusFormed(Long value) {
set(1, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_formed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_status_formed</code>.
*/
public BigDecimal getPercentStatusFormed() {
return (BigDecimal) get(1);
public Long getCountStatusFormed() {
return (Long) get(1);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_not_formed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_sended</code>.
*/
public void setPercentStatusNotFormed(BigDecimal value) {
public void setCountSended(Long value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_not_formed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_sended</code>.
*/
public BigDecimal getPercentStatusNotFormed() {
return (BigDecimal) get(2);
public Long getCountSended() {
return (Long) get(2);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_sended</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_delivered</code>.
*/
public void setPercentSended(BigDecimal value) {
public void setCountDelivered(Long value) {
set(3, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_sended</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_delivered</code>.
*/
public BigDecimal getPercentSended() {
return (BigDecimal) get(3);
public Long getCountDelivered() {
return (Long) get(3);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_delivered</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_error</code>.
*/
public void setPercentDelivered(BigDecimal value) {
public void setCountError(Long value) {
set(4, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_delivered</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_error</code>.
*/
public BigDecimal getPercentDelivered() {
return (BigDecimal) get(4);
public Long getCountError() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_error</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_viewed</code>.
*/
public void setPercentError(BigDecimal value) {
public void setCountViewed(Long value) {
set(5, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_error</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_viewed</code>.
*/
public BigDecimal getPercentError() {
return (BigDecimal) get(5);
public Long getCountViewed() {
return (Long) get(5);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_viewed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_not_viewed</code>.
*/
public void setPercentViewed(BigDecimal value) {
public void setCountNotViewed(Long value) {
set(6, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_viewed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_not_viewed</code>.
*/
public BigDecimal getPercentViewed() {
return (BigDecimal) get(6);
public Long getCountNotViewed() {
return (Long) get(6);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_not_viewed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_status_not_formed</code>.
*/
public void setPercentNotViewed(BigDecimal value) {
public void setCountStatusNotFormed(Long value) {
set(7, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_not_viewed</code>.
* <code>summonses_list.view_info_sent_to_lk_epgu.count_status_not_formed</code>.
*/
public BigDecimal getPercentNotViewed() {
return (BigDecimal) get(7);
public Long getCountStatusNotFormed() {
return (Long) get(7);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.count_exceeded_send</code>.
*/
public void setCountExceededSend(Long value) {
set(8, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.count_exceeded_send</code>.
*/
public Long getCountExceededSend() {
return (Long) get(8);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.count_exceeded_delivered</code>.
*/
public void setCountExceededDelivered(Long value) {
set(9, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.count_exceeded_delivered</code>.
*/
public Long getCountExceededDelivered() {
return (Long) get(9);
}
/**
@ -152,7 +184,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
* <code>summonses_list.view_info_sent_to_lk_epgu.count_all</code>.
*/
public void setCountAll(Long value) {
set(8, value);
set(10, value);
}
/**
@ -160,7 +192,119 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
* <code>summonses_list.view_info_sent_to_lk_epgu.count_all</code>.
*/
public Long getCountAll() {
return (Long) get(8);
return (Long) get(10);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_formed</code>.
*/
public void setPercentStatusFormed(BigDecimal value) {
set(11, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_formed</code>.
*/
public BigDecimal getPercentStatusFormed() {
return (BigDecimal) get(11);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_not_formed</code>.
*/
public void setPercentStatusNotFormed(BigDecimal value) {
set(12, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_status_not_formed</code>.
*/
public BigDecimal getPercentStatusNotFormed() {
return (BigDecimal) get(12);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_sended</code>.
*/
public void setPercentSended(BigDecimal value) {
set(13, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_sended</code>.
*/
public BigDecimal getPercentSended() {
return (BigDecimal) get(13);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_delivered</code>.
*/
public void setPercentDelivered(BigDecimal value) {
set(14, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_delivered</code>.
*/
public BigDecimal getPercentDelivered() {
return (BigDecimal) get(14);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_error</code>.
*/
public void setPercentError(BigDecimal value) {
set(15, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_error</code>.
*/
public BigDecimal getPercentError() {
return (BigDecimal) get(15);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_viewed</code>.
*/
public void setPercentViewed(BigDecimal value) {
set(16, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_viewed</code>.
*/
public BigDecimal getPercentViewed() {
return (BigDecimal) get(16);
}
/**
* Setter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_not_viewed</code>.
*/
public void setPercentNotViewed(BigDecimal value) {
set(17, value);
}
/**
* Getter for
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_not_viewed</code>.
*/
public BigDecimal getPercentNotViewed() {
return (BigDecimal) get(17);
}
/**
@ -168,7 +312,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_exceeded_send</code>.
*/
public void setPercentExceededSend(BigDecimal value) {
set(9, value);
set(18, value);
}
/**
@ -176,7 +320,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_exceeded_send</code>.
*/
public BigDecimal getPercentExceededSend() {
return (BigDecimal) get(9);
return (BigDecimal) get(18);
}
/**
@ -184,7 +328,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_exceeded_delivered</code>.
*/
public void setPercentExceededDelivered(BigDecimal value) {
set(10, value);
set(19, value);
}
/**
@ -192,7 +336,7 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
* <code>summonses_list.view_info_sent_to_lk_epgu.percent_exceeded_delivered</code>.
*/
public BigDecimal getPercentExceededDelivered() {
return (BigDecimal) get(10);
return (BigDecimal) get(19);
}
// -------------------------------------------------------------------------
@ -209,10 +353,20 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
/**
* Create a detached, initialised ViewInfoSentToLkEpguRecord
*/
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, Long countAll, BigDecimal percentExceededSend, BigDecimal percentExceededDelivered) {
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, Long countStatusFormed, Long countSended, Long countDelivered, Long countError, Long countViewed, Long countNotViewed, Long countStatusNotFormed, Long countExceededSend, Long countExceededDelivered, Long countAll, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed, BigDecimal percentExceededSend, BigDecimal percentExceededDelivered) {
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
setInfoSentToLkEpguId(infoSentToLkEpguId);
setCountStatusFormed(countStatusFormed);
setCountSended(countSended);
setCountDelivered(countDelivered);
setCountError(countError);
setCountViewed(countViewed);
setCountNotViewed(countNotViewed);
setCountStatusNotFormed(countStatusNotFormed);
setCountExceededSend(countExceededSend);
setCountExceededDelivered(countExceededDelivered);
setCountAll(countAll);
setPercentStatusFormed(percentStatusFormed);
setPercentStatusNotFormed(percentStatusNotFormed);
setPercentSended(percentSended);
@ -220,7 +374,6 @@ public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLk
setPercentError(percentError);
setPercentViewed(percentViewed);
setPercentNotViewed(percentNotViewed);
setCountAll(countAll);
setPercentExceededSend(percentExceededSend);
setPercentExceededDelivered(percentExceededDelivered);
resetChangedOnNotNull();

View file

@ -51,12 +51,76 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
return (Long) get(1);
}
/**
* Setter for
* <code>summonses_list.view_remove_tmp_measures.count_formed</code>.
*/
public void setCountFormed(Long value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.view_remove_tmp_measures.count_formed</code>.
*/
public Long getCountFormed() {
return (Long) get(2);
}
/**
* Setter for
* <code>summonses_list.view_remove_tmp_measures.count_for_sign</code>.
*/
public void setCountForSign(Long value) {
set(3, value);
}
/**
* Getter for
* <code>summonses_list.view_remove_tmp_measures.count_for_sign</code>.
*/
public Long getCountForSign() {
return (Long) get(3);
}
/**
* Setter for
* <code>summonses_list.view_remove_tmp_measures.count_signed</code>.
*/
public void setCountSigned(Long value) {
set(4, value);
}
/**
* Getter for
* <code>summonses_list.view_remove_tmp_measures.count_signed</code>.
*/
public Long getCountSigned() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.view_remove_tmp_measures.count_removed</code>.
*/
public void setCountRemoved(Long value) {
set(5, value);
}
/**
* Getter for
* <code>summonses_list.view_remove_tmp_measures.count_removed</code>.
*/
public Long getCountRemoved() {
return (Long) get(5);
}
/**
* Setter for
* <code>summonses_list.view_remove_tmp_measures.percent_formed</code>.
*/
public void setPercentFormed(BigDecimal value) {
set(2, value);
set(6, value);
}
/**
@ -64,7 +128,7 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
* <code>summonses_list.view_remove_tmp_measures.percent_formed</code>.
*/
public BigDecimal getPercentFormed() {
return (BigDecimal) get(2);
return (BigDecimal) get(6);
}
/**
@ -72,7 +136,7 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
* <code>summonses_list.view_remove_tmp_measures.percent_for_sign</code>.
*/
public void setPercentForSign(BigDecimal value) {
set(3, value);
set(7, value);
}
/**
@ -80,7 +144,7 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
* <code>summonses_list.view_remove_tmp_measures.percent_for_sign</code>.
*/
public BigDecimal getPercentForSign() {
return (BigDecimal) get(3);
return (BigDecimal) get(7);
}
/**
@ -88,7 +152,7 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
* <code>summonses_list.view_remove_tmp_measures.percent_signed</code>.
*/
public void setPercentSigned(BigDecimal value) {
set(4, value);
set(8, value);
}
/**
@ -96,7 +160,7 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
* <code>summonses_list.view_remove_tmp_measures.percent_signed</code>.
*/
public BigDecimal getPercentSigned() {
return (BigDecimal) get(4);
return (BigDecimal) get(8);
}
/**
@ -104,7 +168,7 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
* <code>summonses_list.view_remove_tmp_measures.percent_removed</code>.
*/
public void setPercentRemoved(BigDecimal value) {
set(5, value);
set(9, value);
}
/**
@ -112,7 +176,7 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
* <code>summonses_list.view_remove_tmp_measures.percent_removed</code>.
*/
public BigDecimal getPercentRemoved() {
return (BigDecimal) get(5);
return (BigDecimal) get(9);
}
// -------------------------------------------------------------------------
@ -129,11 +193,15 @@ public class ViewRemoveTmpMeasuresRecord extends TableRecordImpl<ViewRemoveTmpMe
/**
* Create a detached, initialised ViewRemoveTmpMeasuresRecord
*/
public ViewRemoveTmpMeasuresRecord(Long removeTmpMeasuresId, Long countAll, BigDecimal percentFormed, BigDecimal percentForSign, BigDecimal percentSigned, BigDecimal percentRemoved) {
public ViewRemoveTmpMeasuresRecord(Long removeTmpMeasuresId, Long countAll, Long countFormed, Long countForSign, Long countSigned, Long countRemoved, BigDecimal percentFormed, BigDecimal percentForSign, BigDecimal percentSigned, BigDecimal percentRemoved) {
super(ViewRemoveTmpMeasures.VIEW_REMOVE_TMP_MEASURES);
setRemoveTmpMeasuresId(removeTmpMeasuresId);
setCountAll(countAll);
setCountFormed(countFormed);
setCountForSign(countForSign);
setCountSigned(countSigned);
setCountRemoved(countRemoved);
setPercentFormed(percentFormed);
setPercentForSign(percentForSign);
setPercentSigned(percentSigned);

View file

@ -49,12 +49,56 @@ public class ViewRfLeavingBanRecord extends TableRecordImpl<ViewRfLeavingBanReco
return (Long) get(1);
}
/**
* Setter for
* <code>summonses_list.view_rf_leaving_ban.count_for_sign</code>.
*/
public void setCountForSign(Long value) {
set(2, value);
}
/**
* Getter for
* <code>summonses_list.view_rf_leaving_ban.count_for_sign</code>.
*/
public Long getCountForSign() {
return (Long) get(2);
}
/**
* Setter for <code>summonses_list.view_rf_leaving_ban.count_signed</code>.
*/
public void setCountSigned(Long value) {
set(3, value);
}
/**
* Getter for <code>summonses_list.view_rf_leaving_ban.count_signed</code>.
*/
public Long getCountSigned() {
return (Long) get(3);
}
/**
* Setter for <code>summonses_list.view_rf_leaving_ban.count_enter</code>.
*/
public void setCountEnter(Long value) {
set(4, value);
}
/**
* Getter for <code>summonses_list.view_rf_leaving_ban.count_enter</code>.
*/
public Long getCountEnter() {
return (Long) get(4);
}
/**
* Setter for
* <code>summonses_list.view_rf_leaving_ban.percent_for_sign</code>.
*/
public void setPercentForSign(BigDecimal value) {
set(2, value);
set(5, value);
}
/**
@ -62,7 +106,7 @@ public class ViewRfLeavingBanRecord extends TableRecordImpl<ViewRfLeavingBanReco
* <code>summonses_list.view_rf_leaving_ban.percent_for_sign</code>.
*/
public BigDecimal getPercentForSign() {
return (BigDecimal) get(2);
return (BigDecimal) get(5);
}
/**
@ -70,7 +114,7 @@ public class ViewRfLeavingBanRecord extends TableRecordImpl<ViewRfLeavingBanReco
* <code>summonses_list.view_rf_leaving_ban.percent_signed</code>.
*/
public void setPercentSigned(BigDecimal value) {
set(3, value);
set(6, value);
}
/**
@ -78,21 +122,21 @@ public class ViewRfLeavingBanRecord extends TableRecordImpl<ViewRfLeavingBanReco
* <code>summonses_list.view_rf_leaving_ban.percent_signed</code>.
*/
public BigDecimal getPercentSigned() {
return (BigDecimal) get(3);
return (BigDecimal) get(6);
}
/**
* Setter for <code>summonses_list.view_rf_leaving_ban.percent_enter</code>.
*/
public void setPercentEnter(BigDecimal value) {
set(4, value);
set(7, value);
}
/**
* Getter for <code>summonses_list.view_rf_leaving_ban.percent_enter</code>.
*/
public BigDecimal getPercentEnter() {
return (BigDecimal) get(4);
return (BigDecimal) get(7);
}
// -------------------------------------------------------------------------
@ -109,11 +153,14 @@ public class ViewRfLeavingBanRecord extends TableRecordImpl<ViewRfLeavingBanReco
/**
* Create a detached, initialised ViewRfLeavingBanRecord
*/
public ViewRfLeavingBanRecord(Long rfLeavingBanId, Long countAll, BigDecimal percentForSign, BigDecimal percentSigned, BigDecimal percentEnter) {
public ViewRfLeavingBanRecord(Long rfLeavingBanId, Long countAll, Long countForSign, Long countSigned, Long countEnter, BigDecimal percentForSign, BigDecimal percentSigned, BigDecimal percentEnter) {
super(ViewRfLeavingBan.VIEW_RF_LEAVING_BAN);
setRfLeavingBanId(rfLeavingBanId);
setCountAll(countAll);
setCountForSign(countForSign);
setCountSigned(countSigned);
setCountEnter(countEnter);
setPercentForSign(percentForSign);
setPercentSigned(percentSigned);
setPercentEnter(percentEnter);

View file

@ -396,13 +396,6 @@
</properties>
</scripts>
</children>
<children id="8088a112-0582-401e-9cac-cf870a12d543">
<prototypeId>b310f98a-69c6-4e7b-8cdb-f1ab9f9c0d94</prototypeId>
<componentRootId>8088a112-0582-401e-9cac-cf870a12d543</componentRootId>
<name>Дата</name>
<container>false</container>
<removed>true</removed>
</children>
<children id="1f0f60cb-76fc-43c1-af7e-269d2e6fd322">
<prototypeId>be0e38c3-01c2-4122-85dd-1b6e176f543d</prototypeId>
<componentRootId>1f0f60cb-76fc-43c1-af7e-269d2e6fd322</componentRootId>
@ -9788,7 +9781,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"imposition_tmp_measures","entity":"imposition_tmp_measures","name":"count_for_sign"}</simple>
<simple>{"schema":"summonses_list","table":"view_imposition_tmp_measures","entity":"view_imposition_tmp_measures","name":"count_for_sign"}</simple>
</value>
</entry>
<entry>
@ -9810,7 +9803,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"imposition_tmp_measures","entity":"imposition_tmp_measures","name":"count_for_sign"}</simple>
<simple>{"schema":"summonses_list","table":"view_imposition_tmp_measures","entity":"view_imposition_tmp_measures","name":"count_for_sign"}</simple>
</value>
</entry>
</properties>
@ -9860,7 +9853,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"imposition_tmp_measures","entity":"imposition_tmp_measures","name":"count_apply"}</simple>
<simple>{"schema":"summonses_list","table":"view_imposition_tmp_measures","entity":"view_imposition_tmp_measures","name":"count_apply"}</simple>
</value>
</entry>
<entry>
@ -9882,7 +9875,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"imposition_tmp_measures","entity":"imposition_tmp_measures","name":"count_apply"}</simple>
<simple>{"schema":"summonses_list","table":"view_imposition_tmp_measures","entity":"view_imposition_tmp_measures","name":"count_apply"}</simple>
</value>
</entry>
</properties>
@ -9932,7 +9925,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"imposition_tmp_measures","entity":"imposition_tmp_measures","name":"count_enter"}</simple>
<simple>{"schema":"summonses_list","table":"view_imposition_tmp_measures","entity":"view_imposition_tmp_measures","name":"count_enter"}</simple>
</value>
</entry>
<entry>
@ -9954,7 +9947,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"imposition_tmp_measures","entity":"imposition_tmp_measures","name":"count_enter"}</simple>
<simple>{"schema":"summonses_list","table":"view_imposition_tmp_measures","entity":"view_imposition_tmp_measures","name":"count_enter"}</simple>
</value>
</entry>
</properties>
@ -11599,7 +11592,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"remove_tmp_measures","entity":"remove_tmp_measures","name":"count_for_sign"}</simple>
<simple>{"schema":"summonses_list","table":"view_remove_tmp_measures","entity":"view_remove_tmp_measures","name":"count_for_sign"}</simple>
</value>
</entry>
<entry>
@ -11621,7 +11614,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"remove_tmp_measures","entity":"remove_tmp_measures","name":"count_for_sign"}</simple>
<simple>{"schema":"summonses_list","table":"view_remove_tmp_measures","entity":"view_remove_tmp_measures","name":"count_for_sign"}</simple>
</value>
</entry>
</properties>
@ -11671,7 +11664,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"remove_tmp_measures","entity":"remove_tmp_measures","name":"count_signed"}</simple>
<simple>{"schema":"summonses_list","table":"view_remove_tmp_measures","entity":"view_remove_tmp_measures","name":"count_signed"}</simple>
</value>
</entry>
<entry>
@ -11693,7 +11686,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"remove_tmp_measures","entity":"remove_tmp_measures","name":"count_signed"}</simple>
<simple>{"schema":"summonses_list","table":"view_remove_tmp_measures","entity":"view_remove_tmp_measures","name":"count_signed"}</simple>
</value>
</entry>
</properties>
@ -11743,7 +11736,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"remove_tmp_measures","entity":"remove_tmp_measures","name":"count_removed"}</simple>
<simple>{"schema":"summonses_list","table":"view_remove_tmp_measures","entity":"view_remove_tmp_measures","name":"count_removed"}</simple>
</value>
</entry>
<entry>
@ -11765,7 +11758,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"remove_tmp_measures","entity":"remove_tmp_measures","name":"count_removed"}</simple>
<simple>{"schema":"summonses_list","table":"view_remove_tmp_measures","entity":"view_remove_tmp_measures","name":"count_removed"}</simple>
</value>
</entry>
</properties>
@ -13441,7 +13434,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"rf_leaving_ban","entity":"rf_leaving_ban","name":"count_for_sign"}</simple>
<simple>{"schema":"summonses_list","table":"view_rf_leaving_ban","entity":"view_rf_leaving_ban","name":"count_for_sign"}</simple>
</value>
</entry>
<entry>
@ -13463,7 +13456,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"rf_leaving_ban","entity":"rf_leaving_ban","name":"count_for_sign"}</simple>
<simple>{"schema":"summonses_list","table":"view_rf_leaving_ban","entity":"view_rf_leaving_ban","name":"count_for_sign"}</simple>
</value>
</entry>
</properties>
@ -13513,7 +13506,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"rf_leaving_ban","entity":"rf_leaving_ban","name":"count_signed"}</simple>
<simple>{"schema":"summonses_list","table":"view_rf_leaving_ban","entity":"view_rf_leaving_ban","name":"count_signed"}</simple>
</value>
</entry>
<entry>
@ -13535,7 +13528,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"rf_leaving_ban","entity":"rf_leaving_ban","name":"count_signed"}</simple>
<simple>{"schema":"summonses_list","table":"view_rf_leaving_ban","entity":"view_rf_leaving_ban","name":"count_signed"}</simple>
</value>
</entry>
</properties>
@ -13585,7 +13578,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"rf_leaving_ban","entity":"rf_leaving_ban","name":"count_enter"}</simple>
<simple>{"schema":"summonses_list","table":"view_rf_leaving_ban","entity":"view_rf_leaving_ban","name":"count_enter"}</simple>
</value>
</entry>
<entry>
@ -13607,7 +13600,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"rf_leaving_ban","entity":"rf_leaving_ban","name":"count_enter"}</simple>
<simple>{"schema":"summonses_list","table":"view_rf_leaving_ban","entity":"view_rf_leaving_ban","name":"count_enter"}</simple>
</value>
</entry>
</properties>
@ -17273,7 +17266,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_status_formed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_status_formed"}</simple>
</value>
</entry>
<entry>
@ -17295,7 +17288,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_status_formed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_status_formed"}</simple>
</value>
</entry>
</properties>
@ -17352,7 +17345,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_sended"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_sended"}</simple>
</value>
</entry>
<entry>
@ -17374,7 +17367,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_sended"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_sended"}</simple>
</value>
</entry>
</properties>
@ -17431,7 +17424,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_delivered"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_delivered"}</simple>
</value>
</entry>
<entry>
@ -17453,7 +17446,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_delivered"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_delivered"}</simple>
</value>
</entry>
</properties>
@ -17510,7 +17503,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_viewed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_viewed"}</simple>
</value>
</entry>
<entry>
@ -17532,7 +17525,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_viewed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_viewed"}</simple>
</value>
</entry>
</properties>
@ -17589,7 +17582,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_not_viewed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_not_viewed"}</simple>
</value>
</entry>
<entry>
@ -17611,7 +17604,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_not_viewed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_not_viewed"}</simple>
</value>
</entry>
</properties>
@ -17668,7 +17661,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_exceeded_delivered"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_exceeded_delivered"}</simple>
</value>
</entry>
<entry>
@ -17690,7 +17683,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_exceeded_delivered"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_exceeded_delivered"}</simple>
</value>
</entry>
</properties>
@ -17747,7 +17740,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_error"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_error"}</simple>
</value>
</entry>
<entry>
@ -17769,7 +17762,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_error"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_error"}</simple>
</value>
</entry>
</properties>
@ -17826,7 +17819,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_exceeded_send"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_exceeded_send"}</simple>
</value>
</entry>
<entry>
@ -17848,7 +17841,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_exceeded_send"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_exceeded_send"}</simple>
</value>
</entry>
</properties>
@ -17906,7 +17899,7 @@
<entry>
<key>defaultValueColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_status_not_formed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_status_not_formed"}</simple>
</value>
</entry>
<entry>
@ -17928,7 +17921,7 @@
<entry>
<key>valueByEventColumn</key>
<value>
<simple>{"schema":"summonses_list","table":"info_sent_to_lk_epgu","entity":"info_sent_to_lk_epgu","name":"count_status_not_formed"}</simple>
<simple>{"schema":"summonses_list","table":"view_info_sent_to_lk_epgu","entity":"view_info_sent_to_lk_epgu","name":"count_status_not_formed"}</simple>
</value>
</entry>
</properties>