fix OvernightSettings
This commit is contained in:
parent
ce53d268ae
commit
96b00a84ab
4 changed files with 22 additions and 11 deletions
|
|
@ -4,22 +4,31 @@ import ru.spcex.platform.classes.base.SpcexObjectBase;
|
||||||
|
|
||||||
|
|
||||||
public class OvernightSettings extends SpcexObjectBase {
|
public class OvernightSettings extends SpcexObjectBase {
|
||||||
private String countryCode;
|
private String market;
|
||||||
private String currencyCode;
|
private String overnightType;
|
||||||
|
private Long companyId;
|
||||||
|
|
||||||
public String getCountryCode() {
|
public String getMarket() {
|
||||||
return countryCode;
|
return market;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCountryCode(String countryCode) {
|
public void setMarket(String market) {
|
||||||
this.countryCode = countryCode;
|
this.market = market;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getCurrencyCode() {
|
public String getOvernightType() {
|
||||||
return currencyCode;
|
return overnightType;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCurrencyCode(String currencyCode) {
|
public void setOvernightType(String overnightType) {
|
||||||
this.currencyCode = currencyCode;
|
this.overnightType = overnightType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getCompanyId() {
|
||||||
|
return companyId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCompanyId(Long companyId) {
|
||||||
|
this.companyId = companyId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ package ru.spcex.platform.enumeration;
|
||||||
import ru.spcex.platform.utils.enumeration.IEnumKey;
|
import ru.spcex.platform.utils.enumeration.IEnumKey;
|
||||||
|
|
||||||
public enum Market implements IEnumKey {
|
public enum Market implements IEnumKey {
|
||||||
mkrs("MKRS"), fond("FOND");
|
mkrs("MKRS"), fond("FOND"), curr("CURR");
|
||||||
|
|
||||||
private final String key;
|
private final String key;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -63,6 +63,7 @@ public enum Task implements IEnumKey {
|
||||||
CX84("CX84"), // Формирование отчета CCX84
|
CX84("CX84"), // Формирование отчета CCX84
|
||||||
GVTF("GVTF"), // Проведение сверки по регистрам AMAT и AMAF
|
GVTF("GVTF"), // Проведение сверки по регистрам AMAT и AMAF
|
||||||
LORT("LORT"), // Загрузка курсов валют
|
LORT("LORT"), // Загрузка курсов валют
|
||||||
|
CROR("CROR"), // Загрузка курсов валют
|
||||||
;
|
;
|
||||||
|
|
||||||
private final String key;
|
private final String key;
|
||||||
|
|
|
||||||
|
|
@ -194,6 +194,7 @@ public final class IMDGDistributedNames {
|
||||||
public static final String Map_DigitalCertificateSecurityHistory = "Map_DigitalCertificateSecurityHistory";
|
public static final String Map_DigitalCertificateSecurityHistory = "Map_DigitalCertificateSecurityHistory";
|
||||||
public static final String Map_UtilitarianDigitalRight = "Map_UtilitarianDigitalRight";
|
public static final String Map_UtilitarianDigitalRight = "Map_UtilitarianDigitalRight";
|
||||||
public static final String Map_UtilitarianDigitalRightHistory = "Map_UtilitarianDigitalRightHistory";
|
public static final String Map_UtilitarianDigitalRightHistory = "Map_UtilitarianDigitalRightHistory";
|
||||||
|
public static final String Map_OvernightSettings = "Map_OvernightSettings";
|
||||||
|
|
||||||
//----------------SPECIFIC REGISTRY MAP STORES BY STATUS AND DESIGNATION---------------
|
//----------------SPECIFIC REGISTRY MAP STORES BY STATUS AND DESIGNATION---------------
|
||||||
public static final String Map_OkObligationRegistry = "Map_OkObligationRegistry";
|
public static final String Map_OkObligationRegistry = "Map_OkObligationRegistry";
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue