CNAS取数仪器端升级
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
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. }