Merge remote-tracking branch 'origin/master' into feature/new-design-test
This commit is contained in:
commit
2736f576fc
11 changed files with 2958 additions and 638 deletions
|
|
@ -0,0 +1,56 @@
|
||||||
|
/*
|
||||||
|
* This file is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans;
|
||||||
|
|
||||||
|
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.Public;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.jooq.Constants;
|
||||||
|
import org.jooq.Schema;
|
||||||
|
import org.jooq.impl.CatalogImpl;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||||
|
public class DefaultCatalog extends CatalogImpl {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The reference instance of <code>DEFAULT_CATALOG</code>
|
||||||
|
*/
|
||||||
|
public static final DefaultCatalog DEFAULT_CATALOG = new DefaultCatalog();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The schema <code>public</code>.
|
||||||
|
*/
|
||||||
|
public final Public PUBLIC = Public.PUBLIC;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* No further instances allowed
|
||||||
|
*/
|
||||||
|
private DefaultCatalog() {
|
||||||
|
super("");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public final List<Schema> getSchemas() {
|
||||||
|
return Arrays.asList(
|
||||||
|
Public.PUBLIC
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A reference to the 3.19 minor release of the code generator. If this
|
||||||
|
* doesn't compile, it's because the runtime library uses an older minor
|
||||||
|
* release, namely: 3.19. You can turn off the generation of this reference
|
||||||
|
* by specifying /configuration/generator/generate/jooqVersionReference
|
||||||
|
*/
|
||||||
|
private static final String REQUIRE_RUNTIME_JOOQ_VERSION = Constants.VERSION_3_19;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,28 @@
|
||||||
|
/*
|
||||||
|
* This file is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_;
|
||||||
|
|
||||||
|
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records.InteractionLogRecord;
|
||||||
|
|
||||||
|
import org.jooq.TableField;
|
||||||
|
import org.jooq.UniqueKey;
|
||||||
|
import org.jooq.impl.DSL;
|
||||||
|
import org.jooq.impl.Internal;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class modelling foreign key relationships and constraints of tables in
|
||||||
|
* public.
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||||
|
public class Keys {
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// UNIQUE and PRIMARY KEY definitions
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
public static final UniqueKey<InteractionLogRecord> INTERACTION_LOG_PKEY = Internal.createUniqueKey(InteractionLog.INTERACTION_LOG, DSL.name("interaction_log_pkey"), new TableField[] { InteractionLog.INTERACTION_LOG.ID }, true);
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,55 @@
|
||||||
|
/*
|
||||||
|
* This file is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_;
|
||||||
|
|
||||||
|
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.DefaultCatalog;
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import org.jooq.Catalog;
|
||||||
|
import org.jooq.Table;
|
||||||
|
import org.jooq.impl.SchemaImpl;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||||
|
public class Public extends SchemaImpl {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The reference instance of <code>public</code>
|
||||||
|
*/
|
||||||
|
public static final Public PUBLIC = new Public();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The table <code>public.interaction_log</code>.
|
||||||
|
*/
|
||||||
|
public final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* No further instances allowed
|
||||||
|
*/
|
||||||
|
private Public() {
|
||||||
|
super("public", null);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Catalog getCatalog() {
|
||||||
|
return DefaultCatalog.DEFAULT_CATALOG;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public final List<Table<?>> getTables() {
|
||||||
|
return Arrays.asList(
|
||||||
|
InteractionLog.INTERACTION_LOG
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,20 @@
|
||||||
|
/*
|
||||||
|
* This file is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_;
|
||||||
|
|
||||||
|
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Convenience access to all tables in public.
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||||
|
public class Tables {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The table <code>public.interaction_log</code>.
|
||||||
|
*/
|
||||||
|
public static final InteractionLog INTERACTION_LOG = InteractionLog.INTERACTION_LOG;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,260 @@
|
||||||
|
/*
|
||||||
|
* This file is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables;
|
||||||
|
|
||||||
|
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.Keys;
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.Public;
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records.InteractionLogRecord;
|
||||||
|
|
||||||
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||||
|
public class InteractionLog extends TableImpl<InteractionLogRecord> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The reference instance of <code>public.interaction_log</code>
|
||||||
|
*/
|
||||||
|
public static final InteractionLog INTERACTION_LOG = new InteractionLog();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The class holding records for this type
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public Class<InteractionLogRecord> getRecordType() {
|
||||||
|
return InteractionLogRecord.class;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.id</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, Long> ID = createField(DSL.name("id"), SQLDataType.BIGINT.nullable(false).identity(true), this, "");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.sent_date</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, Timestamp> SENT_DATE = createField(DSL.name("sent_date"), SQLDataType.TIMESTAMP(0), this, "");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.file_name</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, String> FILE_NAME = createField(DSL.name("file_name"), SQLDataType.CLOB, this, "");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.form</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, String> FORM = createField(DSL.name("form"), SQLDataType.CLOB, this, "");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.sender</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, String> SENDER = createField(DSL.name("sender"), SQLDataType.CLOB, this, "");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.status</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, String> STATUS = createField(DSL.name("status"), SQLDataType.CLOB, this, "");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.records_sent</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, Integer> RECORDS_SENT = createField(DSL.name("records_sent"), SQLDataType.INTEGER, this, "");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The column <code>public.interaction_log.records_accepted</code>.
|
||||||
|
*/
|
||||||
|
public final TableField<InteractionLogRecord, Integer> RECORDS_ACCEPTED = createField(DSL.name("records_accepted"), SQLDataType.INTEGER, this, "");
|
||||||
|
|
||||||
|
private InteractionLog(Name alias, Table<InteractionLogRecord> aliased) {
|
||||||
|
this(alias, aliased, (Field<?>[]) null, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
private InteractionLog(Name alias, Table<InteractionLogRecord> aliased, Field<?>[] parameters, Condition where) {
|
||||||
|
super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an aliased <code>public.interaction_log</code> table reference
|
||||||
|
*/
|
||||||
|
public InteractionLog(String alias) {
|
||||||
|
this(DSL.name(alias), INTERACTION_LOG);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an aliased <code>public.interaction_log</code> table reference
|
||||||
|
*/
|
||||||
|
public InteractionLog(Name alias) {
|
||||||
|
this(alias, INTERACTION_LOG);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a <code>public.interaction_log</code> table reference
|
||||||
|
*/
|
||||||
|
public InteractionLog() {
|
||||||
|
this(DSL.name("interaction_log"), null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Schema getSchema() {
|
||||||
|
return aliased() ? null : Public.PUBLIC;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Identity<InteractionLogRecord, Long> getIdentity() {
|
||||||
|
return (Identity<InteractionLogRecord, Long>) super.getIdentity();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public UniqueKey<InteractionLogRecord> getPrimaryKey() {
|
||||||
|
return Keys.INTERACTION_LOG_PKEY;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public InteractionLog as(String alias) {
|
||||||
|
return new InteractionLog(DSL.name(alias), this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public InteractionLog as(Name alias) {
|
||||||
|
return new InteractionLog(alias, this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public InteractionLog as(Table<?> alias) {
|
||||||
|
return new InteractionLog(alias.getQualifiedName(), this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rename this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog rename(String name) {
|
||||||
|
return new InteractionLog(DSL.name(name), null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rename this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog rename(Name name) {
|
||||||
|
return new InteractionLog(name, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Rename this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog rename(Table<?> name) {
|
||||||
|
return new InteractionLog(name.getQualifiedName(), null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog where(Condition condition) {
|
||||||
|
return new InteractionLog(getQualifiedName(), aliased() ? this : null, null, condition);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog where(Collection<? extends Condition> conditions) {
|
||||||
|
return where(DSL.and(conditions));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog where(Condition... conditions) {
|
||||||
|
return where(DSL.and(conditions));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog where(Field<Boolean> condition) {
|
||||||
|
return where(DSL.condition(condition));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
@PlainSQL
|
||||||
|
public InteractionLog where(SQL condition) {
|
||||||
|
return where(DSL.condition(condition));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
@PlainSQL
|
||||||
|
public InteractionLog where(@Stringly.SQL String condition) {
|
||||||
|
return where(DSL.condition(condition));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
@PlainSQL
|
||||||
|
public InteractionLog where(@Stringly.SQL String condition, Object... binds) {
|
||||||
|
return where(DSL.condition(condition, binds));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
@PlainSQL
|
||||||
|
public InteractionLog where(@Stringly.SQL String condition, QueryPart... parts) {
|
||||||
|
return where(DSL.condition(condition, parts));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog whereExists(Select<?> select) {
|
||||||
|
return where(DSL.exists(select));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create an inline derived table from this table
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public InteractionLog whereNotExists(Select<?> select) {
|
||||||
|
return where(DSL.notExists(select));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,171 @@
|
||||||
|
/*
|
||||||
|
* This file is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
package ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.records;
|
||||||
|
|
||||||
|
|
||||||
|
import ervu_lkrp_ul.ervu_lkrp_ul.db_beans.public_.tables.InteractionLog;
|
||||||
|
|
||||||
|
import java.sql.Timestamp;
|
||||||
|
|
||||||
|
import org.jooq.Record1;
|
||||||
|
import org.jooq.impl.UpdatableRecordImpl;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class is generated by jOOQ.
|
||||||
|
*/
|
||||||
|
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||||
|
public class InteractionLogRecord extends UpdatableRecordImpl<InteractionLogRecord> {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.id</code>.
|
||||||
|
*/
|
||||||
|
public void setId(Long value) {
|
||||||
|
set(0, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.id</code>.
|
||||||
|
*/
|
||||||
|
public Long getId() {
|
||||||
|
return (Long) get(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.sent_date</code>.
|
||||||
|
*/
|
||||||
|
public void setSentDate(Timestamp value) {
|
||||||
|
set(1, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.sent_date</code>.
|
||||||
|
*/
|
||||||
|
public Timestamp getSentDate() {
|
||||||
|
return (Timestamp) get(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.file_name</code>.
|
||||||
|
*/
|
||||||
|
public void setFileName(String value) {
|
||||||
|
set(2, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.file_name</code>.
|
||||||
|
*/
|
||||||
|
public String getFileName() {
|
||||||
|
return (String) get(2);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.form</code>.
|
||||||
|
*/
|
||||||
|
public void setForm(String value) {
|
||||||
|
set(3, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.form</code>.
|
||||||
|
*/
|
||||||
|
public String getForm() {
|
||||||
|
return (String) get(3);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.sender</code>.
|
||||||
|
*/
|
||||||
|
public void setSender(String value) {
|
||||||
|
set(4, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.sender</code>.
|
||||||
|
*/
|
||||||
|
public String getSender() {
|
||||||
|
return (String) get(4);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.status</code>.
|
||||||
|
*/
|
||||||
|
public void setStatus(String value) {
|
||||||
|
set(5, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.status</code>.
|
||||||
|
*/
|
||||||
|
public String getStatus() {
|
||||||
|
return (String) get(5);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.records_sent</code>.
|
||||||
|
*/
|
||||||
|
public void setRecordsSent(Integer value) {
|
||||||
|
set(6, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.records_sent</code>.
|
||||||
|
*/
|
||||||
|
public Integer getRecordsSent() {
|
||||||
|
return (Integer) get(6);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter for <code>public.interaction_log.records_accepted</code>.
|
||||||
|
*/
|
||||||
|
public void setRecordsAccepted(Integer value) {
|
||||||
|
set(7, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for <code>public.interaction_log.records_accepted</code>.
|
||||||
|
*/
|
||||||
|
public Integer getRecordsAccepted() {
|
||||||
|
return (Integer) get(7);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// Primary key information
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Record1<Long> key() {
|
||||||
|
return (Record1) super.key();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// Constructors
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a detached InteractionLogRecord
|
||||||
|
*/
|
||||||
|
public InteractionLogRecord() {
|
||||||
|
super(InteractionLog.INTERACTION_LOG);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a detached, initialised InteractionLogRecord
|
||||||
|
*/
|
||||||
|
public InteractionLogRecord(Long id, Timestamp sentDate, String fileName, String form, String sender, String status, Integer recordsSent, Integer recordsAccepted) {
|
||||||
|
super(InteractionLog.INTERACTION_LOG);
|
||||||
|
|
||||||
|
setId(id);
|
||||||
|
setSentDate(sentDate);
|
||||||
|
setFileName(fileName);
|
||||||
|
setForm(form);
|
||||||
|
setSender(sender);
|
||||||
|
setStatus(status);
|
||||||
|
setRecordsSent(recordsSent);
|
||||||
|
setRecordsAccepted(recordsAccepted);
|
||||||
|
resetChangedOnNotNull();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -60,7 +60,17 @@ const appRoutes: Routes = [
|
||||||
component: TaskListComponent,
|
component: TaskListComponent,
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'mydata',
|
||||||
|
loadChildren: 'generated-sources/page-mydata.module#PagemydataModule',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'filesentlog',
|
||||||
|
loadChildren: 'generated-sources/page-filesentlog.module#PagefilesentlogModule',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
@NgModule({
|
@NgModule({
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,654 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<xmlPage>
|
||||||
|
<id>filesentlog</id>
|
||||||
|
<versions>
|
||||||
|
<studioVersion>3.172.3</studioVersion>
|
||||||
|
<packageVersions>
|
||||||
|
<entry>
|
||||||
|
<key>ru.cg.webbpm.packages.base.resources</key>
|
||||||
|
<value>3.172.4</value>
|
||||||
|
</entry>
|
||||||
|
</packageVersions>
|
||||||
|
</versions>
|
||||||
|
<rootObjects id="e1edd211-4015-48a5-967d-622c40f614ae">
|
||||||
|
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
|
||||||
|
<componentRootId>e1edd211-4015-48a5-967d-622c40f614ae</componentRootId>
|
||||||
|
<name>Кнопка - назад </name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>caption</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Назад"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>cssClasses</key>
|
||||||
|
<value>
|
||||||
|
<item id="0db8b05f-0f51-454e-b525-84620c1e08b0" removed="false">
|
||||||
|
<value>
|
||||||
|
<simple>"link-back"</simple>
|
||||||
|
</value>
|
||||||
|
</item>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</rootObjects>
|
||||||
|
<rootObjects id="ea34ec37-36bf-4216-b3e5-7b103ab00614">
|
||||||
|
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||||
|
<componentRootId>ea34ec37-36bf-4216-b3e5-7b103ab00614</componentRootId>
|
||||||
|
<name>Текст</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>cssClasses</key>
|
||||||
|
<value>
|
||||||
|
<item id="d7cc0086-eea2-4c67-90e4-d6a16b1f90c4" removed="false">
|
||||||
|
<value>
|
||||||
|
<simple>"title"</simple>
|
||||||
|
</value>
|
||||||
|
</item>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>initialValue</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Журнал взаимодействий с Реестром ВУ"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||||
|
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
|
||||||
|
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
|
||||||
|
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</scripts>
|
||||||
|
</rootObjects>
|
||||||
|
<rootObjects id="886cf610-682c-4b8b-94e7-56b6f47fd5a3">
|
||||||
|
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
|
||||||
|
<componentRootId>886cf610-682c-4b8b-94e7-56b6f47fd5a3</componentRootId>
|
||||||
|
<name>Горизонтальный контейнер</name>
|
||||||
|
<container>true</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f"/>
|
||||||
|
<scripts id="b6068710-0f31-48ec-8e03-c0c1480a40c0"/>
|
||||||
|
<scripts id="fe04d7fb-6c5b-46c4-b723-667732d81f4f"/>
|
||||||
|
<scripts id="5c566210-2a60-4048-a2d1-84c7dd023248"/>
|
||||||
|
<scripts id="3171b2e1-b4af-4335-95fa-1b2592604b84"/>
|
||||||
|
<children id="a107c5a0-5bc2-482f-b225-a20aaa4ab00c">
|
||||||
|
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||||
|
<componentRootId>a107c5a0-5bc2-482f-b225-a20aaa4ab00c</componentRootId>
|
||||||
|
<name>Текст</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>initialValue</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Найдено 5 файлов"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||||
|
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
|
||||||
|
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
|
||||||
|
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="9721959c-be2f-4ec1-8c8e-8fdcd930b794">
|
||||||
|
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||||
|
<componentRootId>9721959c-be2f-4ec1-8c8e-8fdcd930b794</componentRootId>
|
||||||
|
<name>Текст</name>
|
||||||
|
<container>false</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="26242dda-11df-42f0-be93-9fe67ccc016e">
|
||||||
|
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
|
||||||
|
<componentRootId>26242dda-11df-42f0-be93-9fe67ccc016e</componentRootId>
|
||||||
|
<name>Кнопка</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>caption</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Сбросить фильтры"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
</rootObjects>
|
||||||
|
<rootObjects id="7d63e0d5-c23d-4c32-8311-25b40e713c79">
|
||||||
|
<prototypeId>16071adb-3bdf-4c33-b29b-886876016415</prototypeId>
|
||||||
|
<componentRootId>7d63e0d5-c23d-4c32-8311-25b40e713c79</componentRootId>
|
||||||
|
<name>Таблица</name>
|
||||||
|
<container>true</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="07201df9-ff33-4c71-9aae-a2cfdd028234">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>autoStretchColumns</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
<scripts id="1996166f-7922-4f28-a571-9646d956ef37">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>gridService</key>
|
||||||
|
<value>
|
||||||
|
<complex>
|
||||||
|
<entry>
|
||||||
|
<key>loadDao</key>
|
||||||
|
<value>
|
||||||
|
<complex>
|
||||||
|
<entry>
|
||||||
|
<key>graph</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"nodeByIndex":{"0":{"tableName":"interaction_log","schemaName":"public","x":519.0,"y":269.0,"alias":"interaction_log","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"nodes":[{"tableName":"interaction_log","schemaName":"public","x":519.0,"y":269.0,"alias":"interaction_log","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}],"nodeByEntityName":{"interaction_log":{"tableName":"interaction_log","schemaName":"public","x":519.0,"y":269.0,"alias":"interaction_log","conditionGroup":{"operator":"AND","conditions":[],"groups":[]},"emptyEntityAction":"IGNORE_OR_DELETE"}},"matrix":[[null]],"mainNodeIndex":0}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</complex>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</complex>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
<scripts id="be8fe0e1-4909-4224-8664-be55168595c6"/>
|
||||||
|
<children id="e4763783-817a-4573-99b4-8921636e06fa">
|
||||||
|
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
|
||||||
|
<componentRootId>e4763783-817a-4573-99b4-8921636e06fa</componentRootId>
|
||||||
|
<name>Дата и время направления</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
|
||||||
|
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>displayName</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Дата и время направления"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayPopup</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayType</key>
|
||||||
|
<value>
|
||||||
|
<simple>"ONE_COLUMN"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>field</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"sent_date"}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>filter</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>sortable</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="814aab37-ef69-435f-8e12-1ffe37f4a69f">
|
||||||
|
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
|
||||||
|
<componentRootId>814aab37-ef69-435f-8e12-1ffe37f4a69f</componentRootId>
|
||||||
|
<name>Название файла</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
|
||||||
|
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>displayName</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Название файла"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayPopup</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayType</key>
|
||||||
|
<value>
|
||||||
|
<simple>"ONE_COLUMN"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>field</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"file_name"}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>filter</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>sortable</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="4e56e660-7f83-449c-be6b-bf525aba1142">
|
||||||
|
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
|
||||||
|
<componentRootId>4e56e660-7f83-449c-be6b-bf525aba1142</componentRootId>
|
||||||
|
<name>Форма</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
|
||||||
|
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>displayName</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Форма"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayPopup</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayType</key>
|
||||||
|
<value>
|
||||||
|
<simple>"ONE_COLUMN"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>field</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"form"}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>filter</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>sortable</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="b1bc7945-9748-4b15-8385-c9f1da337fac">
|
||||||
|
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
|
||||||
|
<componentRootId>b1bc7945-9748-4b15-8385-c9f1da337fac</componentRootId>
|
||||||
|
<name>Отправитель</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
|
||||||
|
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>displayName</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Отправитель"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayPopup</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayType</key>
|
||||||
|
<value>
|
||||||
|
<simple>"ONE_COLUMN"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>field</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"sender"}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>filter</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>sortable</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="321f142f-e9e0-436c-a41d-9fb7b06578f0">
|
||||||
|
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
|
||||||
|
<componentRootId>321f142f-e9e0-436c-a41d-9fb7b06578f0</componentRootId>
|
||||||
|
<name>Статус</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
|
||||||
|
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>displayName</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Статус"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayPopup</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayType</key>
|
||||||
|
<value>
|
||||||
|
<simple>"ONE_COLUMN"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>field</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"status"}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>filter</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>sortable</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="d8b5a9b1-fd07-41e6-b2d0-572d5f06de9a">
|
||||||
|
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
|
||||||
|
<componentRootId>d8b5a9b1-fd07-41e6-b2d0-572d5f06de9a</componentRootId>
|
||||||
|
<name>Записей отправлено</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
|
||||||
|
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>displayName</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Записей отправлено"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayPopup</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayType</key>
|
||||||
|
<value>
|
||||||
|
<simple>"ONE_COLUMN"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>field</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"records_sent"}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>filter</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>sortable</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="5b6704c5-1e75-41a5-b61e-0facb663d032">
|
||||||
|
<prototypeId>364c8faa-5e56-46cd-9203-d2ec6ef2dc74</prototypeId>
|
||||||
|
<componentRootId>5b6704c5-1e75-41a5-b61e-0facb663d032</componentRootId>
|
||||||
|
<name>Записей принято</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="9c5c7a86-dc40-4b30-a5a7-5e7b4c7ea1e1"/>
|
||||||
|
<scripts id="fd653fca-12f9-4e35-baa4-b6b5dd3f6d59">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>displayName</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Записей принято"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayPopup</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>displayType</key>
|
||||||
|
<value>
|
||||||
|
<simple>"ONE_COLUMN"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>field</key>
|
||||||
|
<value>
|
||||||
|
<simple>{"schema":"public","table":"interaction_log","entity":"interaction_log","name":"records_accepted"}</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>filter</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>sortable</key>
|
||||||
|
<value>
|
||||||
|
<simple>true</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
</rootObjects>
|
||||||
|
<rootObjects id="f5798a57-676a-4a95-9437-265717a8d644">
|
||||||
|
<prototypeId>f7504fc9-f501-43fe-a678-5c6ba756ba5c</prototypeId>
|
||||||
|
<componentRootId>f5798a57-676a-4a95-9437-265717a8d644</componentRootId>
|
||||||
|
<name>Группа полей</name>
|
||||||
|
<container>true</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="46f20297-81d1-4786-bb17-2a78ca6fda6f">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>cssClasses</key>
|
||||||
|
<value>
|
||||||
|
<item id="44ee1f16-1045-4cd9-9314-1efbc447d7db" removed="false">
|
||||||
|
<value>
|
||||||
|
<simple>"group"</simple>
|
||||||
|
</value>
|
||||||
|
</item>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>heading</key>
|
||||||
|
<value>
|
||||||
|
<simple>null</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
<scripts id="7fe2f82f-5028-401e-941f-e92df36538a6"/>
|
||||||
|
<scripts id="73f52c22-5182-4860-8ee6-b9ba164ed460"/>
|
||||||
|
<scripts id="2129eba5-aac3-41d1-ba50-0a2f4b5f0a32"/>
|
||||||
|
<scripts id="865a51e1-80f5-4064-a7d2-2b251b33bdec"/>
|
||||||
|
<children id="358d1918-2e9b-4123-a8b5-8189a1789291">
|
||||||
|
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
|
||||||
|
<componentRootId>358d1918-2e9b-4123-a8b5-8189a1789291</componentRootId>
|
||||||
|
<name>Горизонтальный контейнер</name>
|
||||||
|
<container>true</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="097a2141-13d0-4b15-ac5f-5c310b3753f7">
|
||||||
|
<prototypeId>ba24d307-0b91-4299-ba82-9d0b52384ff2</prototypeId>
|
||||||
|
<componentRootId>097a2141-13d0-4b15-ac5f-5c310b3753f7</componentRootId>
|
||||||
|
<name>Текст</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="cf4526a1-96ab-4820-8aa9-62fb54c2b64c">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>cssClasses</key>
|
||||||
|
<value>
|
||||||
|
<item id="e82af49b-78b1-4c4e-9c9f-7f6afb76a1a2" removed="true"/>
|
||||||
|
<item id="633b0a83-ad8e-4b77-8de6-e168bc259852" removed="true"/>
|
||||||
|
<item id="b714e743-c151-44d6-9bb0-73128652ef6a" removed="true"/>
|
||||||
|
<item id="1d9468cf-d5b9-4a44-a93b-66d0ab93bf67" removed="true"/>
|
||||||
|
<item id="c663a654-405f-4e92-8d8d-015bc9d3f68a" removed="true"/>
|
||||||
|
<item id="9eaf8023-8bf9-4bf2-8cd9-d1a3394837dd" removed="true"/>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>initialValue</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Запросите выписку, чтобы посмотреть журнал взаимодействий за весь период"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
<scripts id="737b67e2-295f-4356-a1e1-9419344d8c85"/>
|
||||||
|
<scripts id="a6ccccd9-354c-4725-9d34-c716cf626048"/>
|
||||||
|
<scripts id="d38c1af5-2bfe-41cd-ab0f-67040f498127"/>
|
||||||
|
<scripts id="f203f156-be32-4131-9c86-4d6bac6d5d56">
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="2528ea8a-3e3f-4968-a973-8e9ac1ca4326">
|
||||||
|
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
|
||||||
|
<componentRootId>2528ea8a-3e3f-4968-a973-8e9ac1ca4326</componentRootId>
|
||||||
|
<name>Кнопка</name>
|
||||||
|
<container>false</container>
|
||||||
|
<childrenReordered>false</childrenReordered>
|
||||||
|
<scripts id="bf098f19-480e-44e4-9084-aa42955c4d0f">
|
||||||
|
<properties>
|
||||||
|
<entry>
|
||||||
|
<key>caption</key>
|
||||||
|
<value>
|
||||||
|
<simple>"Запросить выписку"</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
<entry>
|
||||||
|
<key>tooltip</key>
|
||||||
|
<value>
|
||||||
|
<simple>null</simple>
|
||||||
|
</value>
|
||||||
|
</entry>
|
||||||
|
</properties>
|
||||||
|
</scripts>
|
||||||
|
</children>
|
||||||
|
<children id="f4d7dfb7-67e6-41bd-bef6-ae9751ce2088">
|
||||||
|
<prototypeId>3057d447-6d17-48a8-b096-b14ea88d17e8</prototypeId>
|
||||||
|
<componentRootId>f4d7dfb7-67e6-41bd-bef6-ae9751ce2088</componentRootId>
|
||||||
|
<name>Изображение</name>
|
||||||
|
<container>false</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="484748b4-a03d-4254-a7f3-fec2402e7866">
|
||||||
|
<prototypeId>d7d54cfb-26b5-4dba-b56f-b6247183c24d</prototypeId>
|
||||||
|
<componentRootId>484748b4-a03d-4254-a7f3-fec2402e7866</componentRootId>
|
||||||
|
<name>Горизонтальный контейнер</name>
|
||||||
|
<container>true</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="87481ea6-30aa-4002-81d0-421e066298ff">
|
||||||
|
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
|
||||||
|
<componentRootId>87481ea6-30aa-4002-81d0-421e066298ff</componentRootId>
|
||||||
|
<name>Гиперссылка</name>
|
||||||
|
<container>false</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="069eddbe-f59a-4d8e-8152-66de3e3aca71">
|
||||||
|
<prototypeId>e32ae1f5-5b14-45f1-abb6-f52c34b3b570</prototypeId>
|
||||||
|
<componentRootId>069eddbe-f59a-4d8e-8152-66de3e3aca71</componentRootId>
|
||||||
|
<name>Гиперссылка</name>
|
||||||
|
<container>false</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="e3a0dfae-0e39-4a61-9453-163facf74b69">
|
||||||
|
<prototypeId>fd7e47b9-dce1-4d14-9f3a-580c79f59579</prototypeId>
|
||||||
|
<componentRootId>e3a0dfae-0e39-4a61-9453-163facf74b69</componentRootId>
|
||||||
|
<name>Кнопка</name>
|
||||||
|
<container>false</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="88961b2a-f42b-4e09-9a06-022a2b9757f2">
|
||||||
|
<prototypeId>86f297f1-ab3d-40e0-ac2f-89cc944b7f0a</prototypeId>
|
||||||
|
<componentRootId>88961b2a-f42b-4e09-9a06-022a2b9757f2</componentRootId>
|
||||||
|
<name>Диалог - выбор файла и отправка</name>
|
||||||
|
<container>true</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
<children id="7e79df8e-f480-4387-922c-5ddfd92986ed">
|
||||||
|
<prototypeId>9d1b5af1-0b8f-4b1b-b9a5-c2e6acf72d91</prototypeId>
|
||||||
|
<componentRootId>7e79df8e-f480-4387-922c-5ddfd92986ed</componentRootId>
|
||||||
|
<name>Вертикальный контейнер</name>
|
||||||
|
<container>true</container>
|
||||||
|
<removed>true</removed>
|
||||||
|
</children>
|
||||||
|
</rootObjects>
|
||||||
|
</xmlPage>
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -3,13 +3,13 @@
|
||||||
<dbBeanPackage>ervu_lkrp_ul.ervu_lkrp_ul.db_beans</dbBeanPackage>
|
<dbBeanPackage>ervu_lkrp_ul.ervu_lkrp_ul.db_beans</dbBeanPackage>
|
||||||
<dbName>ervu-lkrp-ul</dbName>
|
<dbName>ervu-lkrp-ul</dbName>
|
||||||
<driverClassName>org.postgresql.Driver</driverClassName>
|
<driverClassName>org.postgresql.Driver</driverClassName>
|
||||||
<host>10.10.31.121</host>
|
<host>10.10.31.119</host>
|
||||||
<manually>false</manually>
|
<manually>false</manually>
|
||||||
<password>ervu-lkrp-ul</password>
|
<password>ervu-lkrp-ul</password>
|
||||||
<port>5432</port>
|
<port>5432</port>
|
||||||
<schemas>public</schemas>
|
<schemas>public</schemas>
|
||||||
<sqlDialect>POSTGRES</sqlDialect>
|
<sqlDialect>POSTGRES</sqlDialect>
|
||||||
<url>jdbc:postgresql://10.10.31.121:5432/ervu-lkrp-ul</url>
|
<url>jdbc:postgresql://10.10.31.119:5432/ervu-lkrp-ul</url>
|
||||||
<urlPrefix>jdbc:postgresql:</urlPrefix>
|
<urlPrefix>jdbc:postgresql:</urlPrefix>
|
||||||
<user>ervu-lkrp-ul</user>
|
<user>ervu-lkrp-ul</user>
|
||||||
</datasource>
|
</datasource>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue