TableAttribute.cs 466 B

123456789101112131415161718192021
  1. using System;
  2. namespace Ant.Entity
  3. {
  4. /// <summary>
  5. /// 自定义扩展表信息
  6. /// </summary>
  7. [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
  8. public class TableAttribute : Attribute
  9. {
  10. public TableAttribute() { }
  11. public TableAttribute(string name)
  12. {
  13. Name = name;
  14. }
  15. /// <summary>
  16. /// 表名
  17. /// </summary>
  18. public string Name { get; set; }
  19. }
  20. }