using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using YLErp.Model; namespace YLErp.Modules.ReportModule.SettlementReportModule { public class ClientDingShiReport_ShanXi: DingShiReport { /// /// 财务状况 /// public FundReportModel FundReportModel { get; set; } /// /// 互换估值 /// public List EodSwapPositions { get; set; } /// /// 互换持仓明细 /// public List SwapPositions { get; set; } /// /// 互换交易流水 /// public List clientSwapPositions { get; set; } /// /// 资金明细 /// public List ClientCashInCashOutExtendList { get; set; } /// /// 抵押品 /// public List clientcashincashout_productLinq { get; set; } /// /// txt/excel报告特殊处理用到 /// public List descList { get; set; } public string desc { get; set; } } }