CNAS取数仪器端升级
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

31 行
706B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CnasSynchrousModel
  6. {
  7. public class IFThenConditionParams
  8. {
  9. /// <summary>
  10. /// 条件列的列名
  11. /// </summary>
  12. public string ConditionColumnName { get; set; }
  13. /// <summary>
  14. /// 条件列的值
  15. /// </summary>
  16. public string ConditionColumnValue { get; set; }
  17. /// <summary>
  18. /// 条件运算规则
  19. /// </summary>
  20. public string ConditionAlgorithm { get; set; }
  21. /// <summary>
  22. /// 满足条件后插入列的值
  23. /// </summary>
  24. public string ColumnValue { get; set; }
  25. }
  26. }