using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Model
{
public class CheckQuotaMoitorModel
{
public long id { get; set; }
///
/// 标的代码
///
public string UnderlyingCode { get; set; }
///
/// 标的id
///
public int UnderlyingId { get; set; }
///
/// 合约乘数
///
public decimal ContractSize { get; set; }
///
/// 成交价格
///
public decimal Price { get; set; }
///
/// 现价
///
public decimal NowPrice { get; set; }
///
/// 昨日价格
///
public decimal LastPrice { get; set; }
///
/// 手续费
///
public decimal Commision { get; set; }
///
/// 持仓市值
///
public decimal Pv { get; set; }
///
/// 浮动盈亏
///
public decimal Pnl { get; set; }
///
/// 买卖方向
///
public int Side { get; set; }
///
/// 数量
///
public decimal Qty { get; set; }
public decimal Delta { get; set; }
///
/// 客户id
///
public int ClientId { get; set; }
public bool Current { get; set; }
///
/// 收支方向
///
public int Direction { get; set; }
///
/// 发行量
///
public decimal Circulation { get; set; }
}
}