![[0] 自定义特性AttributeUsage [0] 自定义特性AttributeUsage](https://image.shishitao.com:8440/aHR0cHM6Ly9ia3FzaW1nLmlrYWZhbi5jb20vdXBsb2FkL2NoYXRncHQtcy5wbmc%2FIQ%3D%3D.png?!?w=700&webp=1)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Fxframe.BaseORMappers.Mapping
{
[AttributeUsage(AttributeTargets.Class)]
public class TableAttribute:Attribute
{
public string Name
{
get;
set;
}
public TableAttribute() { }
public TableAttribute(string name)
{
Name=Name;
}
}
}