namespace YLErp.Modules.RiskEngine.Dto { public class RuleCondition { public long VariableId { get; set; } public string Operator { get; set; } public string ThresholdType { get; set; } public object Value { get; set; } public long? ThresholdVariableId { get; set; } // 介于/不介于 的边界包含控制,默认 true public bool IncludeLowerBound { get; set; } = true; public bool IncludeUpperBound { get; set; } = true; } }