SystemRole.cs 380 B

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