38 lines
838 B
C#
38 lines
838 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace YLErp.Modules.MarketRiskMoudule.Dto
|
|
{
|
|
public class T1ToT2DataDto
|
|
{
|
|
public DateTime ValueDate { get; set; }
|
|
|
|
public int? TradeId { get; set; }
|
|
|
|
public string HedgeUniqueCode { get; set; }
|
|
|
|
public int? ParentTradeId { get; set; }
|
|
|
|
public int ClientId { get; set; }
|
|
|
|
public string UnderlyingCode { get; set; }
|
|
|
|
public string ExchangeOptionCode { get; set; }
|
|
|
|
public int? UnderlyingId { get; set; }
|
|
|
|
public int BookId { get; set; }
|
|
|
|
public string StructureType { get; set; }
|
|
|
|
public string TradeType { get; set; }
|
|
|
|
public double TotalPnL { get; set; }
|
|
|
|
public double Commission { get; set; }
|
|
}
|
|
}
|