namespace LigerRM.Common { using System.Collections.Generic; /// /// 对应前台 ligerFilter 的检索规则数据 /// public class FilterGroup { public IList rules { get; set; } public string op { get; set; } public IList groups { get; set; } } }