| | |
| | | private Integer isLock; |
| | | private String lockMsg; |
| | | private String stockPlate; |
| | | private String stockType; |
| | | /*点差费金额*/ |
| | | private BigDecimal spreadRatePrice; |
| | | /*追加保证金额*/ |
| | | private BigDecimal marginAdd; |
| | | |
| | | private BigDecimal buyOrderIdIndex; |
| | | |
| | | public void setPositionType(Integer positionType) { |
| | | this.positionType = positionType; |
| | |
| | | public void setMarginAdd(BigDecimal marginAdd) { |
| | | this.marginAdd = marginAdd; |
| | | } |
| | | |
| | | public BigDecimal getBuyOrderIdIndex() { |
| | | return buyOrderIdIndex; |
| | | } |
| | | |
| | | public void setBuyOrderIdIndex(BigDecimal buyOrderIdIndex) { |
| | | this.buyOrderIdIndex = buyOrderIdIndex; |
| | | } |
| | | |
| | | public String getStockType() { |
| | | return stockType; |
| | | } |
| | | |
| | | public void setStockType(String stockType) { |
| | | this.stockType = stockType; |
| | | } |
| | | } |
| | | |