using System.Collections.Generic; using Datory.Annotations; namespace GxPress.Entity.SystemRole { /// /// 系统管理角色权限 /// [DataTable("tede_system_role")] public class SystemRole : Datory.Entity { /// /// 名称 /// /// [DataColumn] public string Name { get; set; } } }