This commit is contained in:
parent
98922dac8c
commit
a4c4fe8c71
2 changed files with 23 additions and 1 deletions
|
|
@ -36,9 +36,12 @@ public class LauncherNew implements IAction<Object> {
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
private Long sessionId;
|
private Long sessionId;
|
||||||
|
|
||||||
@ApiModelProperty(value = "Текущий баланс", example = "12.22")
|
@ApiModelProperty(value = "Текущий баланс (свободно)", example = "12.22")
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
private BigDecimal balance;
|
private BigDecimal balance;
|
||||||
|
@ApiModelProperty(value = "Текущий баланс (всего)", example = "12.22")
|
||||||
|
@JsonProperty
|
||||||
|
private BigDecimal fullBalance;
|
||||||
@ApiModelProperty(value = "Наименование инструмента/валюты", example = "SPB")
|
@ApiModelProperty(value = "Наименование инструмента/валюты", example = "SPB")
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
private String securitySymbol;
|
private String securitySymbol;
|
||||||
|
|
@ -72,6 +75,7 @@ public class LauncherNew implements IAction<Object> {
|
||||||
taskRunnerCommandRequest.setSessionType(sessionType);
|
taskRunnerCommandRequest.setSessionType(sessionType);
|
||||||
taskRunnerCommandRequest.setSessionId(sessionId);
|
taskRunnerCommandRequest.setSessionId(sessionId);
|
||||||
taskRunnerCommandRequest.setBalance(balance);
|
taskRunnerCommandRequest.setBalance(balance);
|
||||||
|
taskRunnerCommandRequest.setFullBalance(fullBalance);
|
||||||
taskRunnerCommandRequest.setSecuritySymbol(securitySymbol);
|
taskRunnerCommandRequest.setSecuritySymbol(securitySymbol);
|
||||||
taskRunnerCommandRequest.setCreditLeg_amount(creditLeg_amount);
|
taskRunnerCommandRequest.setCreditLeg_amount(creditLeg_amount);
|
||||||
taskRunnerCommandRequest.setPaymentPurpose(paymentPurpose);
|
taskRunnerCommandRequest.setPaymentPurpose(paymentPurpose);
|
||||||
|
|
@ -215,4 +219,12 @@ public class LauncherNew implements IAction<Object> {
|
||||||
public void setDebitLeg_accountId(Long debitLeg_accountId) {
|
public void setDebitLeg_accountId(Long debitLeg_accountId) {
|
||||||
this.debitLeg_accountId = debitLeg_accountId;
|
this.debitLeg_accountId = debitLeg_accountId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BigDecimal getFullBalance() {
|
||||||
|
return fullBalance;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFullBalance(BigDecimal fullBalance) {
|
||||||
|
this.fullBalance = fullBalance;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -24,6 +24,8 @@ public class LauncherCommandRequest {
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
private BigDecimal balance;
|
private BigDecimal balance;
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
|
private BigDecimal fullBalance;
|
||||||
|
@JsonProperty
|
||||||
private String securitySymbol;
|
private String securitySymbol;
|
||||||
@JsonProperty
|
@JsonProperty
|
||||||
private BigDecimal creditLeg_amount;
|
private BigDecimal creditLeg_amount;
|
||||||
|
|
@ -157,4 +159,12 @@ public class LauncherCommandRequest {
|
||||||
public void setDebitLeg_accountId(Long debitLeg_accountId) {
|
public void setDebitLeg_accountId(Long debitLeg_accountId) {
|
||||||
this.debitLeg_accountId = debitLeg_accountId;
|
this.debitLeg_accountId = debitLeg_accountId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BigDecimal getFullBalance() {
|
||||||
|
return fullBalance;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFullBalance(BigDecimal fullBalance) {
|
||||||
|
this.fullBalance = fullBalance;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue