using Org.BouncyCastle.Asn1.Mozilla;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.Modules.TradeMsgOutputModule.Dto
{
///
/// 交易资金流水
///
public class TradeCashOutputDto
{
///
/// 主键Id
///
public int Id { get; set; }
///
/// 交易Id
///
public int TradeId { get; set; }
///
/// 资金发生时间
///
public DateTime ValueDate { get; set; }
///
/// 资金到账时间
///
public DateTime? HappenedDate { get; set; }
///
/// 金额
///
public double Amount { get; set; }
///
/// 资金行为
///
public string Action { get; set; }
///
/// 份额
///
public double Notional { get; set; }
///
/// 交易期初份额
///
public double OriginalNotional { get; set; }
}
}