从山证v2.3.0拷贝

This commit is contained in:
吴方海
2024-05-09 14:06:26 +08:00
parent 566ff33259
commit f9d8a256a6
4471 changed files with 1203456 additions and 9 deletions
@@ -0,0 +1,55 @@
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; }
}
}