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.

SourceDataFilter.cs 550B

4 months ago
12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CnasSynchrousModel
  6. {
  7. /// <summary>
  8. /// 来源数据过滤器
  9. /// </summary>
  10. public class SourceDataFilter
  11. {
  12. /// <summary>
  13. /// 过滤器条件
  14. /// </summary>
  15. public List<FilterCondition> lstFilterConditions { get; set; }
  16. /// <summary>
  17. /// 过滤器条件之间的连接类型(与/或)
  18. /// </summary>
  19. public string FilterConditionLinkType { get; set; }
  20. }
  21. }