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