Files
zszq-trs/YLErpDAL/Modules/RiskEngine/Dto/FormulaCondition.cs
T

16 lines
523 B
C#

namespace YLErp.Modules.RiskEngine.Dto
{
public class FormulaCondition
{
public long VariableId { get; set; }
public string VariableName { get; set; }
public string VariableType { get; set; }
public string Operator { get; set; }
public string ThresholdType { get; set; }
public object Value { get; set; }
public long? ThresholdVariableId { get; set; }
public string ThresholdVariableName { get; set; }
public string Unit { get; set; }
}
}