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
480 B
C#
26 lines
480 B
C#
6 months ago
|
namespace DS.WMS.Core.Sys.Dtos;
|
||
12 months ago
|
|
||
|
/// <summary>
|
||
9 months ago
|
/// 角色权限树
|
||
12 months ago
|
/// </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; }
|
||
|
|
||
11 months ago
|
public long Key { get; set; }
|
||
9 months ago
|
|
||
|
|
||
|
// public long? ParentId { get; set; }
|
||
12 months ago
|
|
||
|
public List<RolePermissionTree> Children { get; set; }
|
||
|
}
|