using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CnasSynchrousModel { public class IFThenConditionParams { /// /// 条件列的列名 /// public string ConditionColumnName { get; set; } /// /// 条件列的值 /// public string ConditionColumnValue { get; set; } /// /// 条件运算规则 /// public string ConditionAlgorithm { get; set; } /// /// 满足条件后插入列的值 /// public string ColumnValue { get; set; } } }