namespace YLErp.Models
{
public class BatchSendClientRiskMonitorModel
{
///
/// 标题
///
public string Title { get; set; }
///
/// 正文
///
public string Detail { get; set; }
///
/// 追保正文
///
public string MarginDetail { get; set; }
///
/// 发送人邮箱
///
public string SendEmail { get; set; }
public string ClientIds { get; set; }
public bool HasTradeDetails { get; set; }
public bool HasTradeMarketReport { get; set; }
public string TradeDetailsDateType { get; set; }
public string TradeMarketReportDateType { get; set; }
///
/// 系统默认、外部预付金、财务增量
///
public string ClientBalanceDataType { get; set; }
public DateTime ValueDate { get; set; }
///
/// 开始时间
///
public DateTime StartDate { get; set;}
///
/// 有交易
///
public bool HaveTrade { get; set; }
///
/// 有持仓
///
public bool HavePosition { get; set; }
///
/// 有资金记录
///
public bool HaveBanlance { get; set; }
}
}