RolePermission.cs 286 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 using HHECS.DataContract; namespace HHECS.RobotTool.Model { /// <summary> /// 角色权限关联表 /// </summary> internal class RolePermission : BaseEntityCU<int> { public int RoleId { get; set; } public int PermissionId { get; set; } } }