http://jira.mfd.msk:8088/browse/CLS-740 add BlacklistMarket (1/2)
This commit is contained in:
parent
2183ff953a
commit
fa01562a9c
2 changed files with 31 additions and 0 deletions
|
|
@ -0,0 +1,30 @@
|
|||
package ru.clearing.classes.statics.data.misc;
|
||||
|
||||
import ru.clearing.classes.ConstSerializable;
|
||||
import ru.spcex.platform.classes.base.SpcexObjectBase;
|
||||
|
||||
/**
|
||||
* DB table: BLACKLIST_MARKET
|
||||
**/
|
||||
public class BlacklistMarket extends SpcexObjectBase {
|
||||
private static final long serialVersionUID = ConstSerializable.serialVersionUID;
|
||||
|
||||
private String code;
|
||||
private String section;
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setCode(String value) {
|
||||
this.code = value;
|
||||
}
|
||||
|
||||
public String getSection() {
|
||||
return section;
|
||||
}
|
||||
|
||||
public void setSection(String value) {
|
||||
this.section = value;
|
||||
}
|
||||
}
|
||||
|
|
@ -215,6 +215,7 @@ public final class IMDGDistributedNames {
|
|||
public static final String Map_SettlementHousePropertiesHistory = "Map_SettlementHousePropertiesHistory";
|
||||
public static final String Map_PairSdf = "Map_PairSdf";
|
||||
public static final String Map_GatewayResult = "Map_GatewayResult";
|
||||
public static final String Map_BlacklistMarket = "Map_BlacklistMarket";
|
||||
|
||||
//-------------------history and search tables
|
||||
public static final String Map_SearchExecutionDeposit = "Map_SearchDeposit";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue