using System; namespace ET { public class LogColumnAttribute : Attribute { /// /// 字段名 /// public string name { get; set; } /// /// 字段类型 /// public string type { get; set; } /// /// 长度 /// public int length { get; set; } /// /// /// public int index { get; set; } /// /// 描述 /// public string desc { get; set; } /// /// 字典 /// public string disc { get; set; } /// /// 转换类 /// public string transformer { get; set; } public LogColumnAttribute(string desc) { this.desc = desc; } } }