using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AIMSExtension { [AttributeUsage(AttributeTargets.Class,Inherited =true)] public class TableAttribute : Attribute { public string TableName { get; set; } public string Descript { get; set; } public TableAttribute(string name) { this.TableName = name; } public TableAttribute(string name,string remark) { this.TableName = name; this.Descript = remark; } } }