智慧大脑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
1234567891011121314151617181920
  1. 
  2. using System;
  3. namespace DataSendApi.Program.CustomizeAttribute
  4. {
  5. /// <summary>
  6. /// 自定义特性
  7. /// </summary>
  8. public class CustomizeTableAttribute : Attribute
  9. {
  10. /// <summary>
  11. /// 中文表名
  12. /// </summary>
  13. public string ChineseTableName { get; set; }
  14. /// <summary>
  15. /// 数据库表明
  16. /// </summary>
  17. public string DatabaseTableName { get; set; }
  18. }
  19. }