This commit is contained in:
ky_sunl
2021-04-23 10:38:52 +00:00
parent d60155d02f
commit c2ed43238b
25 changed files with 120 additions and 118 deletions

View File

@@ -10,17 +10,17 @@ namespace Dilon.Core
/// <summary>
/// 授权菜单
/// </summary>
public List<long> GrantMenuIdList { get; set; } = new List<long>();
public List<string> GrantMenuIdList { get; set; } = new List<string>();
/// <summary>
/// 授权角色
/// </summary>
public virtual List<long> GrantRoleIdList { get; set; } = new List<long>();
public virtual List<string> GrantRoleIdList { get; set; } = new List<string>();
/// <summary>
/// 授权数据
/// </summary>
public virtual List<long> GrantOrgIdList { get; set; } = new List<long>();
public virtual List<string> GrantOrgIdList { get; set; } = new List<string>();
}
/// <summary>