Merge remote-tracking branch 'origin/ervu/tmp_makets' into ervu/tmp_makets
* origin/ervu/tmp_makets: 1 вкладка
This commit is contained in:
commit
f1ff52018c
7 changed files with 2342 additions and 500 deletions
|
|
@ -24,6 +24,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.ta
|
|||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewApplicationsReceivedFromEpgu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewDecisionFormationStatus;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewIncidentsInfo;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewInfoSentToLkEpgu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewRecordsInfoIdUkIdErn;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewStatusesDecisionsOnEpgu;
|
||||
|
||||
|
|
@ -101,6 +102,11 @@ public class InitRegistrationInfo extends SchemaImpl {
|
|||
*/
|
||||
public final ViewIncidentsInfo VIEW_INCIDENTS_INFO = ViewIncidentsInfo.VIEW_INCIDENTS_INFO;
|
||||
|
||||
/**
|
||||
* The table <code>init_registration_info.view_info_sent_to_lk_epgu</code>.
|
||||
*/
|
||||
public final ViewInfoSentToLkEpgu VIEW_INFO_SENT_TO_LK_EPGU = ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU;
|
||||
|
||||
/**
|
||||
* The table
|
||||
* <code>init_registration_info.view_records_info_id_uk_id_ern</code>.
|
||||
|
|
@ -148,6 +154,7 @@ public class InitRegistrationInfo extends SchemaImpl {
|
|||
ViewApplicationsReceivedFromEpgu.VIEW_APPLICATIONS_RECEIVED_FROM_EPGU,
|
||||
ViewDecisionFormationStatus.VIEW_DECISION_FORMATION_STATUS,
|
||||
ViewIncidentsInfo.VIEW_INCIDENTS_INFO,
|
||||
ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU,
|
||||
ViewRecordsInfoIdUkIdErn.VIEW_RECORDS_INFO_ID_UK_ID_ERN,
|
||||
ViewStatusesDecisionsOnEpgu.VIEW_STATUSES_DECISIONS_ON_EPGU
|
||||
);
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.ta
|
|||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewApplicationsReceivedFromEpgu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewDecisionFormationStatus;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewIncidentsInfo;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewInfoSentToLkEpgu;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewRecordsInfoIdUkIdErn;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewStatusesDecisionsOnEpgu;
|
||||
|
||||
|
|
@ -85,6 +86,11 @@ public class Tables {
|
|||
*/
|
||||
public static final ViewIncidentsInfo VIEW_INCIDENTS_INFO = ViewIncidentsInfo.VIEW_INCIDENTS_INFO;
|
||||
|
||||
/**
|
||||
* The table <code>init_registration_info.view_info_sent_to_lk_epgu</code>.
|
||||
*/
|
||||
public static final ViewInfoSentToLkEpgu VIEW_INFO_SENT_TO_LK_EPGU = ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU;
|
||||
|
||||
/**
|
||||
* The table
|
||||
* <code>init_registration_info.view_records_info_id_uk_id_ern</code>.
|
||||
|
|
|
|||
|
|
@ -144,6 +144,13 @@ public class ApplicationsReceivedFromEpgu extends TableImpl<ApplicationsReceived
|
|||
*/
|
||||
public final TableField<ApplicationsReceivedFromEpguRecord, Long> COUNT_ALL = createField(DSL.name("count_all"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("0"), SQLDataType.BIGINT)), this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.applications_received_from_epgu.info_source</code>.
|
||||
* информация об источнике - 17_YEARS, 18_YEARS, CHANGE_ADDRESS
|
||||
*/
|
||||
public final TableField<ApplicationsReceivedFromEpguRecord, String> INFO_SOURCE = createField(DSL.name("info_source"), SQLDataType.VARCHAR.nullable(false), this, "информация об источнике - 17_YEARS, 18_YEARS, CHANGE_ADDRESS");
|
||||
|
||||
private ApplicationsReceivedFromEpgu(Name alias, Table<ApplicationsReceivedFromEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,271 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Collection;
|
||||
|
||||
import org.jooq.Condition;
|
||||
import org.jooq.Field;
|
||||
import org.jooq.Name;
|
||||
import org.jooq.PlainSQL;
|
||||
import org.jooq.QueryPart;
|
||||
import org.jooq.SQL;
|
||||
import org.jooq.Schema;
|
||||
import org.jooq.Select;
|
||||
import org.jooq.Stringly;
|
||||
import org.jooq.Table;
|
||||
import org.jooq.TableField;
|
||||
import org.jooq.TableOptions;
|
||||
import org.jooq.impl.DSL;
|
||||
import org.jooq.impl.SQLDataType;
|
||||
import org.jooq.impl.TableImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.InitRegistrationInfo;
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.records.ViewInfoSentToLkEpguRecord;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ViewInfoSentToLkEpgu extends TableImpl<ViewInfoSentToLkEpguRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* The reference instance of
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu</code>
|
||||
*/
|
||||
public static final ViewInfoSentToLkEpgu VIEW_INFO_SENT_TO_LK_EPGU = new ViewInfoSentToLkEpgu();
|
||||
|
||||
/**
|
||||
* The class holding records for this type
|
||||
*/
|
||||
@Override
|
||||
public Class<ViewInfoSentToLkEpguRecord> getRecordType() {
|
||||
return ViewInfoSentToLkEpguRecord.class;
|
||||
}
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.info_sent_to_lk_epgu_id</code>.
|
||||
*/
|
||||
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>init_registration_info.view_info_sent_to_lk_epgu.percent_status_formed</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_STATUS_FORMED = createField(DSL.name("percent_status_formed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_status_not_formed</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_STATUS_NOT_FORMED = createField(DSL.name("percent_status_not_formed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_sended</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_SENDED = createField(DSL.name("percent_sended"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_delivered</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_DELIVERED = createField(DSL.name("percent_delivered"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_error</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_ERROR = createField(DSL.name("percent_error"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_viewed</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_VIEWED = createField(DSL.name("percent_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
/**
|
||||
* The column
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_not_viewed</code>.
|
||||
*/
|
||||
public final TableField<ViewInfoSentToLkEpguRecord, BigDecimal> PERCENT_NOT_VIEWED = createField(DSL.name("percent_not_viewed"), SQLDataType.NUMERIC, this, "");
|
||||
|
||||
private ViewInfoSentToLkEpgu(Name alias, Table<ViewInfoSentToLkEpguRecord> aliased) {
|
||||
this(alias, aliased, (Field<?>[]) null, null);
|
||||
}
|
||||
|
||||
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,
|
||||
round((((info_sent_to_lk_epgu.count_status_formed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_status_formed,
|
||||
round((((info_sent_to_lk_epgu.count_status_not_formed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_status_not_formed,
|
||||
round((((info_sent_to_lk_epgu.count_sended)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_sended,
|
||||
round((((info_sent_to_lk_epgu.count_delivered)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_delivered,
|
||||
round((((info_sent_to_lk_epgu.count_error)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_error,
|
||||
round((((info_sent_to_lk_epgu.count_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_viewed,
|
||||
round((((info_sent_to_lk_epgu.count_not_viewed)::numeric * (100)::numeric) / ((info_sent_to_lk_epgu.count_status_formed + info_sent_to_lk_epgu.count_status_not_formed))::numeric)) AS percent_not_viewed
|
||||
FROM init_registration_info.info_sent_to_lk_epgu;
|
||||
"""), where);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu</code> table
|
||||
* reference
|
||||
*/
|
||||
public ViewInfoSentToLkEpgu(String alias) {
|
||||
this(DSL.name(alias), VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an aliased
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu</code> table
|
||||
* reference
|
||||
*/
|
||||
public ViewInfoSentToLkEpgu(Name alias) {
|
||||
this(alias, VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a <code>init_registration_info.view_info_sent_to_lk_epgu</code>
|
||||
* table reference
|
||||
*/
|
||||
public ViewInfoSentToLkEpgu() {
|
||||
this(DSL.name("view_info_sent_to_lk_epgu"), null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Schema getSchema() {
|
||||
return aliased() ? null : InitRegistrationInfo.INIT_REGISTRATION_INFO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu as(String alias) {
|
||||
return new ViewInfoSentToLkEpgu(DSL.name(alias), this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu as(Name alias) {
|
||||
return new ViewInfoSentToLkEpgu(alias, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu as(Table<?> alias) {
|
||||
return new ViewInfoSentToLkEpgu(alias.getQualifiedName(), this);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu rename(String name) {
|
||||
return new ViewInfoSentToLkEpgu(DSL.name(name), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu rename(Name name) {
|
||||
return new ViewInfoSentToLkEpgu(name, null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Rename this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu rename(Table<?> name) {
|
||||
return new ViewInfoSentToLkEpgu(name.getQualifiedName(), null);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu where(Condition condition) {
|
||||
return new ViewInfoSentToLkEpgu(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu where(Collection<? extends Condition> conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu where(Condition... conditions) {
|
||||
return where(DSL.and(conditions));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu where(Field<Boolean> condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewInfoSentToLkEpgu where(SQL condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewInfoSentToLkEpgu where(@Stringly.SQL String condition) {
|
||||
return where(DSL.condition(condition));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewInfoSentToLkEpgu where(@Stringly.SQL String condition, Object... binds) {
|
||||
return where(DSL.condition(condition, binds));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
@PlainSQL
|
||||
public ViewInfoSentToLkEpgu where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||
return where(DSL.condition(condition, parts));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu whereExists(Select<?> select) {
|
||||
return where(DSL.exists(select));
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an inline derived table from this table
|
||||
*/
|
||||
@Override
|
||||
public ViewInfoSentToLkEpgu whereNotExists(Select<?> select) {
|
||||
return where(DSL.notExists(select));
|
||||
}
|
||||
}
|
||||
|
|
@ -241,6 +241,24 @@ public class ApplicationsReceivedFromEpguRecord extends UpdatableRecordImpl<Appl
|
|||
return (Long) get(12);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.applications_received_from_epgu.info_source</code>.
|
||||
* информация об источнике - 17_YEARS, 18_YEARS, CHANGE_ADDRESS
|
||||
*/
|
||||
public void setInfoSource(String value) {
|
||||
set(13, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.applications_received_from_epgu.info_source</code>.
|
||||
* информация об источнике - 17_YEARS, 18_YEARS, CHANGE_ADDRESS
|
||||
*/
|
||||
public String getInfoSource() {
|
||||
return (String) get(13);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Primary key information
|
||||
// -------------------------------------------------------------------------
|
||||
|
|
@ -264,7 +282,7 @@ public class ApplicationsReceivedFromEpguRecord extends UpdatableRecordImpl<Appl
|
|||
/**
|
||||
* Create a detached, initialised ApplicationsReceivedFromEpguRecord
|
||||
*/
|
||||
public ApplicationsReceivedFromEpguRecord(Long applicationsReceivedFromEpguId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countExecutorAppointed, Long countRegistered, Long countRegistrationRefusal, Long countRefusalProvideService, Long countExecutorNotAppointedExpired, Long countExecutorNotAppointedOnTime, Long countReceived, Long countProvided, Long countAll) {
|
||||
public ApplicationsReceivedFromEpguRecord(Long applicationsReceivedFromEpguId, String recruitmentId, Timestamp updateDate, Date infoDate, Long countExecutorAppointed, Long countRegistered, Long countRegistrationRefusal, Long countRefusalProvideService, Long countExecutorNotAppointedExpired, Long countExecutorNotAppointedOnTime, Long countReceived, Long countProvided, Long countAll, String infoSource) {
|
||||
super(ApplicationsReceivedFromEpgu.APPLICATIONS_RECEIVED_FROM_EPGU);
|
||||
|
||||
setApplicationsReceivedFromEpguId(applicationsReceivedFromEpguId);
|
||||
|
|
@ -280,6 +298,7 @@ public class ApplicationsReceivedFromEpguRecord extends UpdatableRecordImpl<Appl
|
|||
setCountReceived(countReceived);
|
||||
setCountProvided(countProvided);
|
||||
setCountAll(countAll);
|
||||
setInfoSource(infoSource);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,177 @@
|
|||
/*
|
||||
* This file is generated by jOOQ.
|
||||
*/
|
||||
package ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.records;
|
||||
|
||||
|
||||
import java.math.BigDecimal;
|
||||
|
||||
import org.jooq.impl.TableRecordImpl;
|
||||
|
||||
import ru.micord.webbpm.ervu.business_metrics.db_beans.init_registration_info.tables.ViewInfoSentToLkEpgu;
|
||||
|
||||
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class ViewInfoSentToLkEpguRecord extends TableRecordImpl<ViewInfoSentToLkEpguRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.info_sent_to_lk_epgu_id</code>.
|
||||
*/
|
||||
public void setInfoSentToLkEpguId(Long value) {
|
||||
set(0, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.info_sent_to_lk_epgu_id</code>.
|
||||
*/
|
||||
public Long getInfoSentToLkEpguId() {
|
||||
return (Long) get(0);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_status_formed</code>.
|
||||
*/
|
||||
public void setPercentStatusFormed(BigDecimal value) {
|
||||
set(1, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_status_formed</code>.
|
||||
*/
|
||||
public BigDecimal getPercentStatusFormed() {
|
||||
return (BigDecimal) get(1);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_status_not_formed</code>.
|
||||
*/
|
||||
public void setPercentStatusNotFormed(BigDecimal value) {
|
||||
set(2, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_status_not_formed</code>.
|
||||
*/
|
||||
public BigDecimal getPercentStatusNotFormed() {
|
||||
return (BigDecimal) get(2);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_sended</code>.
|
||||
*/
|
||||
public void setPercentSended(BigDecimal value) {
|
||||
set(3, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_sended</code>.
|
||||
*/
|
||||
public BigDecimal getPercentSended() {
|
||||
return (BigDecimal) get(3);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_delivered</code>.
|
||||
*/
|
||||
public void setPercentDelivered(BigDecimal value) {
|
||||
set(4, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_delivered</code>.
|
||||
*/
|
||||
public BigDecimal getPercentDelivered() {
|
||||
return (BigDecimal) get(4);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_error</code>.
|
||||
*/
|
||||
public void setPercentError(BigDecimal value) {
|
||||
set(5, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_error</code>.
|
||||
*/
|
||||
public BigDecimal getPercentError() {
|
||||
return (BigDecimal) get(5);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_viewed</code>.
|
||||
*/
|
||||
public void setPercentViewed(BigDecimal value) {
|
||||
set(6, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_viewed</code>.
|
||||
*/
|
||||
public BigDecimal getPercentViewed() {
|
||||
return (BigDecimal) get(6);
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_not_viewed</code>.
|
||||
*/
|
||||
public void setPercentNotViewed(BigDecimal value) {
|
||||
set(7, value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for
|
||||
* <code>init_registration_info.view_info_sent_to_lk_epgu.percent_not_viewed</code>.
|
||||
*/
|
||||
public BigDecimal getPercentNotViewed() {
|
||||
return (BigDecimal) get(7);
|
||||
}
|
||||
|
||||
// -------------------------------------------------------------------------
|
||||
// Constructors
|
||||
// -------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Create a detached ViewInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewInfoSentToLkEpguRecord() {
|
||||
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a detached, initialised ViewInfoSentToLkEpguRecord
|
||||
*/
|
||||
public ViewInfoSentToLkEpguRecord(Long infoSentToLkEpguId, BigDecimal percentStatusFormed, BigDecimal percentStatusNotFormed, BigDecimal percentSended, BigDecimal percentDelivered, BigDecimal percentError, BigDecimal percentViewed, BigDecimal percentNotViewed) {
|
||||
super(ViewInfoSentToLkEpgu.VIEW_INFO_SENT_TO_LK_EPGU);
|
||||
|
||||
setInfoSentToLkEpguId(infoSentToLkEpguId);
|
||||
setPercentStatusFormed(percentStatusFormed);
|
||||
setPercentStatusNotFormed(percentStatusNotFormed);
|
||||
setPercentSended(percentSended);
|
||||
setPercentDelivered(percentDelivered);
|
||||
setPercentError(percentError);
|
||||
setPercentViewed(percentViewed);
|
||||
setPercentNotViewed(percentNotViewed);
|
||||
resetChangedOnNotNull();
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue