reports-service UnfulfilledDealReport поправил securityId
This commit is contained in:
parent
13a45ff83a
commit
75233d560f
2 changed files with 4 additions and 4 deletions
|
|
@ -10,7 +10,7 @@ public class UnfulfilledDealReport {
|
|||
|
||||
@CsvBindByName(column = "SECURITYID")
|
||||
@CsvBindByPosition(position = 0)
|
||||
private Long securityId;
|
||||
private String securityId;
|
||||
|
||||
@CsvBindByName(column = "TRADENO")
|
||||
@CsvBindByPosition(position = 1)
|
||||
|
|
@ -26,11 +26,11 @@ public class UnfulfilledDealReport {
|
|||
private String settleCode;
|
||||
|
||||
|
||||
public Long getSecurityId() {
|
||||
public String getSecurityId() {
|
||||
return securityId;
|
||||
}
|
||||
|
||||
public void setSecurityId(Long securityId) {
|
||||
public void setSecurityId(String securityId) {
|
||||
this.securityId = securityId;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -83,7 +83,7 @@ public class UnfulfilledDealReportBuilder extends CSVReportBuilder<SessionIdPara
|
|||
if (!WorkflowStatus.Active.equalsByKey(company.getWorkflowStatus())) continue;;
|
||||
|
||||
UnfulfilledDealReport unfulfilledDealReport = new UnfulfilledDealReport();
|
||||
unfulfilledDealReport.setSecurityId(executionFond.getSecurityId());
|
||||
unfulfilledDealReport.setSecurityId(executionFond.getSecuritySymbol());
|
||||
unfulfilledDealReport.setTradeNo(executionFond.getExchangeExecutionId());
|
||||
unfulfilledDealReport.setTradeDate(executionFond.getTradingDate());
|
||||
unfulfilledDealReport.setSettleCode(executionFond.getSettlementCode());
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue