IMDG добавил все Dictionary по meta 19.08.2022 (2 закоментированные)
This commit is contained in:
parent
601417b833
commit
eef8c543cf
43 changed files with 916 additions and 46 deletions
|
|
@ -0,0 +1,12 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
|
||||
/**
|
||||
* Справочник типов счетов
|
||||
*
|
||||
* Dictionary DB table: ACCOUNT_TYPE_DICTIONARY
|
||||
**/
|
||||
public class AccountTypeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник типов лимитов
|
||||
*
|
||||
* Dictionary DB table: BALANCE_ACCOUNT_TYPE_DICTIONARY
|
||||
**/
|
||||
public class BalanceAccountTypeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник категорий участника клиринга
|
||||
*
|
||||
* Dictionary DB table: CLEARING_CATEGORY_DICTIONARY
|
||||
**/
|
||||
public class ClearingCategoryDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
//package ru.clearing.platform.dictionary;
|
||||
//
|
||||
//
|
||||
///**
|
||||
// * Справочник результатов клиринга
|
||||
// *
|
||||
// * Dictionary DB table: CLEARING_STATUS_DICTIONARY
|
||||
// **/
|
||||
//public class ClearingStatusDictionary extends AbstractDictionary {
|
||||
// private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
//
|
||||
//}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
|
||||
/**
|
||||
* Справочник кодов валют
|
||||
*
|
||||
* Dictionary DB table: CURRENCY_CODE_DICTIONARY
|
||||
**/
|
||||
public class CurrencyCodeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* Dictionary DB table: EXT_ERROR_DICTIONARY
|
||||
**/
|
||||
public class ExtErrorDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
|
||||
/**
|
||||
* Справочник значений направления денежного потока
|
||||
*
|
||||
* Dictionary DB table: IN_OUT_DIRECTION_DICTIONARY
|
||||
**/
|
||||
public class InOutDirectionDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
|
||||
/**
|
||||
* Справочник типов инструмента
|
||||
*
|
||||
* Dictionary DB table: INSTRUMENT_TYPE_DICTIONARY
|
||||
**/
|
||||
public class InstrumentTypeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник статусов возваращения процентов
|
||||
*
|
||||
* Dictionary DB table: INTEREST_STATUS_DICTIONARY
|
||||
**/
|
||||
public class InterestStatusDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
|
||||
}
|
||||
//package ru.clearing.platform.dictionary;
|
||||
//
|
||||
///**
|
||||
// * Справочник статусов возваращения процентов
|
||||
// *
|
||||
// * Dictionary DB table: INTEREST_STATUS_DICTIONARY
|
||||
// **/
|
||||
//public class InterestStatusDictionary extends AbstractDictionary {
|
||||
// private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
//
|
||||
//
|
||||
//}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник целей записей в журнале мониторинга и контроля
|
||||
*
|
||||
* Dictionary DB table: MANAGEMENT_JOURNAL_PURPOSE_DICTIONARY
|
||||
**/
|
||||
public class ManagementJournalPurposeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
|
||||
/**
|
||||
* Справочник статусов журнала мониторинга и контроля
|
||||
*
|
||||
* Dictionary DB table: MANAGEMENT_JOURNAL_STATUS_DICTIONARY
|
||||
**/
|
||||
public class ManagementJournalStatusDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник типов записей в журнале мониторинга и контроля
|
||||
*
|
||||
* Dictionary DB table: MANAGEMENT_JOURNAL_TYPE_DICTIONARY
|
||||
**/
|
||||
public class ManagementJournalTypeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Направление заявки
|
||||
*
|
||||
* Dictionary DB table: MONEY_FLOW_SIDE_DICTIONARY
|
||||
**/
|
||||
public class MoneyFlowSideDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник статусов операций
|
||||
*
|
||||
* Dictionary DB table: OPERATION_STATUS_DICTIONARY
|
||||
**/
|
||||
public class OperationStatusDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник типов операций
|
||||
*
|
||||
* Dictionary DB table: OPERATION_TYPE_DICTIONARY
|
||||
**/
|
||||
public class OperationTypeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Статус обработки
|
||||
*
|
||||
* Dictionary DB table: RESULT_STATUS_DICTIONARY
|
||||
**/
|
||||
public class ResultStatusDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник секторов
|
||||
*
|
||||
* Dictionary DB table: SECTOR_DICTIONARY
|
||||
**/
|
||||
public class SectorDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник услуги
|
||||
*
|
||||
* Dictionary DB table: SERVICE_DICTIONARY
|
||||
**/
|
||||
public class ServiceDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник продукта для услуги
|
||||
*
|
||||
* Dictionary DB table: SERVICE_PRODUCT_DICTIONARY
|
||||
**/
|
||||
public class ServiceProductDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
/**
|
||||
* Справочник услуги
|
||||
*
|
||||
* Dictionary DB table: SERVICE_STATUS_DICTIONARY
|
||||
**/
|
||||
public class ServiceStatusDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
package ru.clearing.platform.dictionary;
|
||||
|
||||
|
||||
/**
|
||||
* Справочник типов поступлений/списаний от ПРЦ
|
||||
*
|
||||
* Dictionary DB table: STATEMENT_TYPE_DICTIONARY
|
||||
**/
|
||||
public class StatementTypeDictionary extends AbstractDictionary {
|
||||
private static final long serialVersionUID = ConstDictionarySerializable.serialVersionUID;
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.AccountTypeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class AccountTypeDictionaryMapStore extends DictionaryTMapStore<AccountTypeDictionary> {
|
||||
|
||||
public AccountTypeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_AccountTypeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "ACCOUNT_TYPE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public AccountTypeDictionary getDictionaryObject() {
|
||||
return new AccountTypeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.BalanceAccountTypeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class BalanceAccountTypeDictionaryMapStore extends DictionaryTMapStore<BalanceAccountTypeDictionary> {
|
||||
|
||||
public BalanceAccountTypeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_BalanceAccountTypeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "BALANCE_ACCOUNT_TYPE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public BalanceAccountTypeDictionary getDictionaryObject() {
|
||||
return new BalanceAccountTypeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ClearingCategoryDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ClearingCategoryDictionaryMapStore extends DictionaryTMapStore<ClearingCategoryDictionary> {
|
||||
|
||||
public ClearingCategoryDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ClearingCategoryDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "CLEARING_CATEGORY_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ClearingCategoryDictionary getDictionaryObject() {
|
||||
return new ClearingCategoryDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
//package ru.spcex.clearing.imdg.dictionary;
|
||||
//
|
||||
//import org.springframework.jdbc.core.JdbcTemplate;
|
||||
//import org.springframework.stereotype.Component;
|
||||
//import ru.clearing.platform.dictionary.ClearingStatusDictionary;
|
||||
//import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
//import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
//
|
||||
//@Component
|
||||
//public class ClearingStatusDictionaryMapStore extends DictionaryTMapStore<ClearingStatusDictionary> {
|
||||
//
|
||||
// public ClearingStatusDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
// super(jdbcTemplate);
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public String getMapName() {
|
||||
// return IMDGDistributedNames.Map_ClearingStatusDictionary;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public String getTableName() {
|
||||
// return "CLEARING_STATUS_DICTIONARY";
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public ClearingStatusDictionary getDictionaryObject() {
|
||||
// return new ClearingStatusDictionary();
|
||||
// }
|
||||
//
|
||||
//}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.CurrencyCodeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class CurrencyCodeDictionaryMapStore extends DictionaryTMapStore<CurrencyCodeDictionary> {
|
||||
|
||||
public CurrencyCodeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_CurrencyCodeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "CURRENCY_CODE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public CurrencyCodeDictionary getDictionaryObject() {
|
||||
return new CurrencyCodeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ExtErrorDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ExtErrorDictionaryMapStore extends DictionaryTMapStore<ExtErrorDictionary> {
|
||||
|
||||
public ExtErrorDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ExtErrorDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "EXT_ERROR_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ExtErrorDictionary getDictionaryObject() {
|
||||
return new ExtErrorDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.InOutDirectionDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class InOutDirectionDictionaryMapStore extends DictionaryTMapStore<InOutDirectionDictionary> {
|
||||
|
||||
public InOutDirectionDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_InOutDirectionDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "IN_OUT_DIRECTION_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public InOutDirectionDictionary getDictionaryObject() {
|
||||
return new InOutDirectionDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.InstrumentTypeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class InstrumentTypeDictionaryMapStore extends DictionaryTMapStore<InstrumentTypeDictionary> {
|
||||
|
||||
public InstrumentTypeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_InstrumentTypeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "INSTRUMENT_TYPE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public InstrumentTypeDictionary getDictionaryObject() {
|
||||
return new InstrumentTypeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,31 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.InterestStatusDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class InterestStatusDictionaryMapStore extends DictionaryTMapStore<InterestStatusDictionary> {
|
||||
|
||||
public InterestStatusDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_InterestStatusDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "INTEREST_STATUS_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public InterestStatusDictionary getDictionaryObject() {
|
||||
return new InterestStatusDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
//package ru.spcex.clearing.imdg.dictionary;
|
||||
//
|
||||
//import org.springframework.jdbc.core.JdbcTemplate;
|
||||
//import org.springframework.stereotype.Component;
|
||||
//import ru.clearing.platform.dictionary.InterestStatusDictionary;
|
||||
//import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
//import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
//
|
||||
//@Component
|
||||
//public class InterestStatusDictionaryMapStore extends DictionaryTMapStore<InterestStatusDictionary> {
|
||||
//
|
||||
// public InterestStatusDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
// super(jdbcTemplate);
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public String getMapName() {
|
||||
// return IMDGDistributedNames.Map_InterestStatusDictionary;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public String getTableName() {
|
||||
// return "INTEREST_STATUS_DICTIONARY";
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public InterestStatusDictionary getDictionaryObject() {
|
||||
// return new InterestStatusDictionary();
|
||||
// }
|
||||
//
|
||||
//}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ManagementJournalPurposeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ManagementJournalPurposeDictionaryMapStore extends DictionaryTMapStore<ManagementJournalPurposeDictionary> {
|
||||
|
||||
public ManagementJournalPurposeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ManagementJournalPurposeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "MANAGEMENT_JOURNAL_PURPOSE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ManagementJournalPurposeDictionary getDictionaryObject() {
|
||||
return new ManagementJournalPurposeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ManagementJournalStatusDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ManagementJournalStatusDictionaryMapStore extends DictionaryTMapStore<ManagementJournalStatusDictionary> {
|
||||
|
||||
public ManagementJournalStatusDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ManagementJournalStatusDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "MANAGEMENT_JOURNAL_STATUS_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ManagementJournalStatusDictionary getDictionaryObject() {
|
||||
return new ManagementJournalStatusDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ManagementJournalTypeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ManagementJournalTypeDictionaryMapStore extends DictionaryTMapStore<ManagementJournalTypeDictionary> {
|
||||
|
||||
public ManagementJournalTypeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ManagementJournalTypeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "MANAGEMENT_JOURNAL_TYPE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ManagementJournalTypeDictionary getDictionaryObject() {
|
||||
return new ManagementJournalTypeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.MoneyFlowSideDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class MoneyFlowSideDictionaryMapStore extends DictionaryTMapStore<MoneyFlowSideDictionary> {
|
||||
|
||||
public MoneyFlowSideDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_MoneyFlowSideDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "MONEY_FLOW_SIDE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public MoneyFlowSideDictionary getDictionaryObject() {
|
||||
return new MoneyFlowSideDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.OperationStatusDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class OperationStatusDictionaryMapStore extends DictionaryTMapStore<OperationStatusDictionary> {
|
||||
|
||||
public OperationStatusDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_OperationStatusDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "OPERATION_STATUS_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public OperationStatusDictionary getDictionaryObject() {
|
||||
return new OperationStatusDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.OperationTypeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class OperationTypeDictionaryMapStore extends DictionaryTMapStore<OperationTypeDictionary> {
|
||||
|
||||
public OperationTypeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_OperationTypeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "OPERATION_TYPE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public OperationTypeDictionary getDictionaryObject() {
|
||||
return new OperationTypeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ResultStatusDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ResultStatusDictionaryMapStore extends DictionaryTMapStore<ResultStatusDictionary> {
|
||||
|
||||
public ResultStatusDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ResultStatusDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "RESULT_STATUS_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ResultStatusDictionary getDictionaryObject() {
|
||||
return new ResultStatusDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.SectorDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class SectorDictionaryMapStore extends DictionaryTMapStore<SectorDictionary> {
|
||||
|
||||
public SectorDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_SectorDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "SECTOR_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public SectorDictionary getDictionaryObject() {
|
||||
return new SectorDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ServiceDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ServiceDictionaryMapStore extends DictionaryTMapStore<ServiceDictionary> {
|
||||
|
||||
public ServiceDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ServiceDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "SERVICE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ServiceDictionary getDictionaryObject() {
|
||||
return new ServiceDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ServiceProductDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ServiceProductDictionaryMapStore extends DictionaryTMapStore<ServiceProductDictionary> {
|
||||
|
||||
public ServiceProductDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ServiceProductDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "SERVICE_PRODUCT_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ServiceProductDictionary getDictionaryObject() {
|
||||
return new ServiceProductDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.ServiceStatusDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class ServiceStatusDictionaryMapStore extends DictionaryTMapStore<ServiceStatusDictionary> {
|
||||
|
||||
public ServiceStatusDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_ServiceStatusDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "SERVICE_STATUS_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public ServiceStatusDictionary getDictionaryObject() {
|
||||
return new ServiceStatusDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
package ru.spcex.clearing.imdg.dictionary;
|
||||
|
||||
import org.springframework.jdbc.core.JdbcTemplate;
|
||||
import org.springframework.stereotype.Component;
|
||||
import ru.clearing.platform.dictionary.StatementTypeDictionary;
|
||||
import ru.spcex.clearing.imdg.base.DictionaryTMapStore;
|
||||
import ru.spcex.clearing.imdg.IMDGDistributedNames;
|
||||
|
||||
@Component
|
||||
public class StatementTypeDictionaryMapStore extends DictionaryTMapStore<StatementTypeDictionary> {
|
||||
|
||||
public StatementTypeDictionaryMapStore(JdbcTemplate jdbcTemplate) {
|
||||
super(jdbcTemplate);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getMapName() {
|
||||
return IMDGDistributedNames.Map_StatementTypeDictionary;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTableName() {
|
||||
return "STATEMENT_TYPE_DICTIONARY";
|
||||
}
|
||||
|
||||
@Override
|
||||
public StatementTypeDictionary getDictionaryObject() {
|
||||
return new StatementTypeDictionary();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -11,13 +11,13 @@ public final class IMDGDistributedNames {
|
|||
public static final String Map_CompanyUpdate = "Map_CompanyUpdate";
|
||||
public static final String Map_CompanyRoleSet = "Map_CompanyRoleSet";
|
||||
public static final String Map_CompanySymbols = "Map_CompanySymbols";
|
||||
// public static final String Map_CompanyInfo = "Map_CompanyInfo"; интегрировано в Map_Company
|
||||
// public static final String Map_CompanyInfo = "Map_CompanyInfo"; интегрировано в Map_Company
|
||||
public static final String Map_Contact = "Map_Contact";
|
||||
public static final String Map_ProfileDocument = "Map_ProfileDocument";
|
||||
|
||||
public static final String Map_InterestStatusDictionary = "Map_InterestStatusDictionary";
|
||||
// public static final String Map_InterestStatusDictionary = "Map_InterestStatusDictionary"; future
|
||||
public static final String Map_AllowedDictionary = "Map_AllowedDictionary";
|
||||
public static final String Map_ClearingMemberCategoryDictionary = "Map_ClearingMemberCategoryDictionary";
|
||||
// public static final String Map_ClearingMemberCategoryDictionary = "Map_ClearingMemberCategoryDictionary"; future
|
||||
public static final String Map_CompanyRoleDictionary = "Map_CompanyRoleDictionary";
|
||||
public static final String Map_CompanySymbolDictionary = "Map_CompanySymbolDictionary";
|
||||
public static final String Map_ContactTypeDictionary = "Map_ContactTypeDictionary";
|
||||
|
|
@ -27,6 +27,26 @@ public final class IMDGDistributedNames {
|
|||
public static final String Map_LegalKindDictionary = "Map_LegalKindDictionary";
|
||||
public static final String Map_OrganizationTypeDictionary = "Map_OrganizationTypeDictionary";
|
||||
public static final String Map_WorkflowStatusDictionary = "Map_WorkflowStatusDictionary";
|
||||
public static final String Map_AccountTypeDictionary = "Map_AccountTypeDictionary";
|
||||
public static final String Map_BalanceAccountTypeDictionary = "Map_BalanceAccountTypeDictionary";
|
||||
public static final String Map_ClearingCategoryDictionary = "Map_ClearingCategoryDictionary";
|
||||
public static final String Map_ClearingStatusDictionary = "Map_ClearingStatusDictionary";
|
||||
public static final String Map_CurrencyCodeDictionary = "Map_CurrencyCodeDictionary";
|
||||
public static final String Map_ExtErrorDictionary = "Map_ExtErrorDictionary";
|
||||
public static final String Map_InOutDirectionDictionary = "Map_InOutDirectionDictionary";
|
||||
public static final String Map_InstrumentTypeDictionary = "Map_InstrumentTypeDictionary";
|
||||
public static final String Map_ManagementJournalPurposeDictionary = "Map_ManagementJournalPurposeDictionary";
|
||||
public static final String Map_ManagementJournalStatusDictionary = "Map_ManagementJournalStatusDictionary";
|
||||
public static final String Map_ManagementJournalTypeDictionary = "Map_ManagementJournalTypeDictionary";
|
||||
public static final String Map_MoneyFlowSideDictionary = "Map_MoneyFlowSideDictionary";
|
||||
public static final String Map_OperationStatusDictionary = "Map_OperationStatusDictionary";
|
||||
public static final String Map_OperationTypeDictionary = "Map_OperationTypeDictionary";
|
||||
public static final String Map_ResultStatusDictionary = "Map_ResultStatusDictionary";
|
||||
public static final String Map_SectorDictionary = "Map_SectorDictionary";
|
||||
public static final String Map_ServiceDictionary = "Map_ServiceDictionary";
|
||||
public static final String Map_ServiceProductDictionary = "Map_ServiceProductDictionary";
|
||||
public static final String Map_ServiceStatusDictionary = "Map_ServiceStatusDictionary";
|
||||
public static final String Map_StatementTypeDictionary = "Map_StatementTypeDictionary";
|
||||
|
||||
public static final String Map_KeyRate = "Map_KeyRate";
|
||||
public static final String Map_MoneyMarketSecurity = "Map_MoneyMarketSecurity";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue