using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CB.Entity { public class BaseToolItem : BaseEntity { /// /// 元素分组 /// public string FilterCode { get; set; } /// /// 特殊编码,在程序中特殊过滤判断使用 /// public string SpecialCode { set; get; } /// /// 元素的name /// public string FilterName { get; set; } /// /// 是否控制取数下标区域 /// public bool IsControlArea { get; set; } /// /// 取数的下标区域 /// public string ControlArea { get; set; } } }