Files
zszq-trs/YLErpDAL/Modules/RiskModule/TradePositionTotalPnLModel.cs
T
2024-05-09 14:06:26 +08:00

32 lines
705 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Modules.RiskModule
{
public class TradePositionTotalPnLModel
{
public DateTime ValueDate { get; set; }
public int? TradeId { get; set; }
public int ParentTradeId { get; set; }
public string UnderlyingCode { get; set; }
public string OptionCode { get; set; }
public int UnderlyingId { get; set; }
public int BookId { get; set; }
public string TradeType { get; set; }
public double? AccruedTotalPnL { get; set; }
public string HedgeUniqueCode { get; internal set; }
}
}