using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YLErp.Modules.TradeMsgOutputModule.Dto { /// /// 交易持仓PV /// public class TradePositionPV { /// /// 估值日期 /// public DateTime ValueDate { get; set; } /// /// 交易编号 /// public string TradeNumber { get; set; } /// /// 交易类型 /// public string TradeType { get; set; } /// /// 权益标的收益 /// public double EquitySubjectPV { get; set; } /// /// 固定利率收益 /// public double FixedInterestRatePV { get; set; } /// /// 总PV /// public double PV { get; set; } /// /// 簿记账户组名称 /// public string AssetUnitGroupName { get; set; } } }