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

56 lines
1.7 KiB
C#

namespace YLErp.Modules.ReportModule
{
public class DingShiReportEmail
{
public DingShiReportEmail()
{
SendContent = new List<string>();
}
/// <summary>
/// 发送内容 账户状况,持仓明细,历史交易,资金明细,抵押品
/// </summary>
public List<string> SendContent { get; set; }
/// <summary>
/// 选中查看的文件类型
/// </summary>
public string TargetFileType { get; set; }
public List<CheckType> FileTypes { get; set; }
/// <summary>
/// 标题
/// </summary>
public string Title { get; set; }
/// <summary>
/// 正文
/// </summary>
public string Detail { get; set; }
/// <summary>
/// 追保正文
/// </summary>
public string MarginDetail { get; set; }
public int ClientId { get; set; }
public DateTime From { get; set; }
public DateTime To { get; set; }
public double PayableMargin { get; set; }
public double PayableFund { get; set; }
public string ReportType { get; set; }
public class CheckType
{
public string type { get; set; }
public bool @checked { get; set; }
}
public string CurUserName { get; set; }
/// <summary>
/// 批量下载结算报告/交易明细时,生成的文档路径
/// </summary>
public string DownloadFilePath { get; set; }
/// <summary>
/// 是否查询子级标识
/// </summary>
public bool ParentFlag { get; set; }
public string CCEmail { get; set; }
}
}