Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
ecbb5d1ed9
4 changed files with 44 additions and 0 deletions
|
|
@ -30,6 +30,9 @@ public class MoneyMarketSecurityNewAction implements IAction<MoneyMarketSecurity
|
||||||
@ApiModelProperty(value = "Полное наименование инструмента", example = "NAME A")
|
@ApiModelProperty(value = "Полное наименование инструмента", example = "NAME A")
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public String fullName;
|
public String fullName;
|
||||||
|
@ApiModelProperty(value = "Нотация наименования инструмента", example = "NOTE")
|
||||||
|
@JsonProperty
|
||||||
|
public String convention;
|
||||||
@ApiModelProperty(value = "Размер лота", example = "21.55")
|
@ApiModelProperty(value = "Размер лота", example = "21.55")
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public BigDecimal lotSize;
|
public BigDecimal lotSize;
|
||||||
|
|
@ -84,6 +87,7 @@ public class MoneyMarketSecurityNewAction implements IAction<MoneyMarketSecurity
|
||||||
req.setNominalCurrency(this.getNominalCurrency());
|
req.setNominalCurrency(this.getNominalCurrency());
|
||||||
req.setInstrumentType(this.getInstrumentType());
|
req.setInstrumentType(this.getInstrumentType());
|
||||||
req.setFullName(this.getFullName());
|
req.setFullName(this.getFullName());
|
||||||
|
req.setConvention(this.getConvention());
|
||||||
req.setSecuritySymbol(this.getSecuritySymbol());
|
req.setSecuritySymbol(this.getSecuritySymbol());
|
||||||
req.setLotSize(this.getLotSize());
|
req.setLotSize(this.getLotSize());
|
||||||
req.setShortName(this.getShortName());
|
req.setShortName(this.getShortName());
|
||||||
|
|
@ -128,6 +132,14 @@ public class MoneyMarketSecurityNewAction implements IAction<MoneyMarketSecurity
|
||||||
this.fullName = fullName;
|
this.fullName = fullName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getConvention() {
|
||||||
|
return convention;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setConvention(String convention) {
|
||||||
|
this.convention = convention;
|
||||||
|
}
|
||||||
|
|
||||||
public BigDecimal getLotSize() {
|
public BigDecimal getLotSize() {
|
||||||
return lotSize;
|
return lotSize;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -32,6 +32,9 @@ public class MoneyMarketSecurityUpdateAction implements IAction<MoneyMarketSecur
|
||||||
@ApiModelProperty(value = "Полное наименование инструмента", example = "NAME A")
|
@ApiModelProperty(value = "Полное наименование инструмента", example = "NAME A")
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public String fullName;
|
public String fullName;
|
||||||
|
@ApiModelProperty(value = "Нотация наименования инструмента", example = "NOTE")
|
||||||
|
@JsonProperty
|
||||||
|
public String convention;
|
||||||
@ApiModelProperty(value = "Размер лота", example = "21.55")
|
@ApiModelProperty(value = "Размер лота", example = "21.55")
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public BigDecimal lotSize;
|
public BigDecimal lotSize;
|
||||||
|
|
@ -86,6 +89,7 @@ public class MoneyMarketSecurityUpdateAction implements IAction<MoneyMarketSecur
|
||||||
req.setNominalCurrency(this.getNominalCurrency());
|
req.setNominalCurrency(this.getNominalCurrency());
|
||||||
req.setInstrumentType(this.getInstrumentType());
|
req.setInstrumentType(this.getInstrumentType());
|
||||||
req.setFullName(this.getFullName());
|
req.setFullName(this.getFullName());
|
||||||
|
req.setConvention(this.getConvention());
|
||||||
req.setSecuritySymbol(this.getSecuritySymbol());
|
req.setSecuritySymbol(this.getSecuritySymbol());
|
||||||
req.setLotSize(this.getLotSize());
|
req.setLotSize(this.getLotSize());
|
||||||
req.setShortName(this.getShortName());
|
req.setShortName(this.getShortName());
|
||||||
|
|
@ -139,6 +143,14 @@ public class MoneyMarketSecurityUpdateAction implements IAction<MoneyMarketSecur
|
||||||
this.fullName = fullName;
|
this.fullName = fullName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getConvention() {
|
||||||
|
return convention;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setConvention(String convention) {
|
||||||
|
this.convention = convention;
|
||||||
|
}
|
||||||
|
|
||||||
public BigDecimal getLotSize() {
|
public BigDecimal getLotSize() {
|
||||||
return lotSize;
|
return lotSize;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -33,6 +33,8 @@ public class MoneyMarketSecurityNewRequest implements WithStartDt, WithEndDt, Wi
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public String fullName;
|
public String fullName;
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
|
public String convention;
|
||||||
|
@JsonProperty
|
||||||
public String shortNameEng;
|
public String shortNameEng;
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public String fullNameEng;
|
public String fullNameEng;
|
||||||
|
|
@ -99,6 +101,14 @@ public class MoneyMarketSecurityNewRequest implements WithStartDt, WithEndDt, Wi
|
||||||
this.fullName = fullName;
|
this.fullName = fullName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getConvention() {
|
||||||
|
return convention;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setConvention(String convention) {
|
||||||
|
this.convention = convention;
|
||||||
|
}
|
||||||
|
|
||||||
public String getShortName() {
|
public String getShortName() {
|
||||||
return shortName;
|
return shortName;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -35,6 +35,8 @@ public class MoneyMarketSecurityUpdateRequest implements WithId, WithStartDt, Wi
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public String fullName;
|
public String fullName;
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
|
public String convention;
|
||||||
|
@JsonProperty
|
||||||
public String shortNameEng;
|
public String shortNameEng;
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
public String fullNameEng;
|
public String fullNameEng;
|
||||||
|
|
@ -101,6 +103,14 @@ public class MoneyMarketSecurityUpdateRequest implements WithId, WithStartDt, Wi
|
||||||
this.fullName = fullName;
|
this.fullName = fullName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getConvention() {
|
||||||
|
return convention;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setConvention(String convention) {
|
||||||
|
this.convention = convention;
|
||||||
|
}
|
||||||
|
|
||||||
public String getShortName() {
|
public String getShortName() {
|
||||||
return shortName;
|
return shortName;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue