namespace YLErp.Web.Models
{
public class CalculationLogConfigModel
{
///
/// 总日志数量限制
///
public int TotalCountMaxLimit { get; set; } = 5000;
///
/// 定价开关
///
public bool Pricing { get; set; } = false;
///
/// 实时风险开关
///
public bool RealtimeRisk { get; set; } = false;
///
/// 场景开关
///
public bool ScenarioCalc { get; set; } = false;
///
/// 初始预付金开关
///
public bool InitialMargin { get; set; } = false;
}
}