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