43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
namespace YLErp.Modules.SystemModule.SysToolModule.HeiXiang
|
|
{
|
|
/// <summary>
|
|
/// 黑箱dailypnl验证
|
|
/// </summary>
|
|
public class HeixiangDailyPnlResult
|
|
{
|
|
/// <summary>
|
|
/// 交易编号
|
|
/// </summary>
|
|
public string TradeNumber { get; set; }
|
|
/// <summary>
|
|
/// 交易状态
|
|
/// </summary>
|
|
public string TradeStatus { get; set; }
|
|
/// <summary>
|
|
/// 上日持仓数量
|
|
/// </summary>
|
|
public string PrePositionNotional { get; set; }
|
|
/// <summary>
|
|
/// 当日持仓数量
|
|
/// </summary>
|
|
public string PositionNotional { get; set; }
|
|
/// <summary>
|
|
/// 上日PV
|
|
/// </summary>
|
|
public string PrePositionPv { get; set; }
|
|
/// <summary>
|
|
/// 当日PV
|
|
/// </summary>
|
|
public string PositionPv { get; set; }
|
|
/// <summary>
|
|
/// 当日盈亏
|
|
/// </summary>
|
|
public string PositionDailyPnl { get; set; }
|
|
|
|
/// <summary>
|
|
/// daily pnl calc
|
|
/// </summary>
|
|
public string DailyPnlCalc { get; set; }
|
|
}
|
|
}
|