SystemRole.cs 422 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using Datory.Annotations;
  3. namespace GxPress.Entity.SystemRole
  4. {
  5. /// <summary>
  6. /// 系统管理角色权限
  7. /// </summary>
  8. [DataTable("tede_system_role")]
  9. public class SystemRole : Datory.Entity
  10. {
  11. /// <summary>
  12. /// 名称
  13. /// </summary>
  14. /// <value></value>
  15. [DataColumn]
  16. public string Name { get; set; }
  17. }
  18. }