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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace CnasSynchrousModel
- {
- /// <summary>
- /// 来源数据过滤器
- /// </summary>
- public class SourceDataFilter
- {
- /// <summary>
- /// 过滤器条件
- /// </summary>
- public List<FilterCondition> lstFilterConditions { get; set; }
-
- /// <summary>
- /// 过滤器条件之间的连接类型(与/或)
- /// </summary>
- public string FilterConditionLinkType { get; set; }
- }
-
-
- }
|