You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
483 B
C#
26 lines
483 B
C#
namespace DS.WMS.Core.System.Dtos;
|
|
|
|
/// <summary>
|
|
/// 角色权限树
|
|
/// </summary>
|
|
public class RolePermissionTreeViewModel
|
|
{
|
|
public List<RolePermissionTree> TreeData { get; set; }
|
|
|
|
public string[] Ids { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class RolePermissionTree
|
|
{
|
|
public string Title { get; set; }
|
|
|
|
public long Key { get; set; }
|
|
|
|
|
|
// public long? ParentId { get; set; }
|
|
|
|
public List<RolePermissionTree> Children { get; set; }
|
|
} |