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.
24 lines
441 B
C#
24 lines
441 B
C#
6 months ago
|
namespace DS.WMS.Core.Sys.Dtos;
|
||
9 months ago
|
|
||
|
/// <summary>
|
||
|
/// 租户权限树
|
||
|
/// </summary>
|
||
|
public class TenantPermissionTreeViewModel
|
||
|
{
|
||
|
public List<TenantPermissionTree> TreeData { get; set; }
|
||
|
|
||
|
public string[] Ids { get; set; }
|
||
|
}
|
||
|
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public class TenantPermissionTree
|
||
|
{
|
||
|
public string Title { get; set; }
|
||
|
|
||
|
public long Key { get; set; }
|
||
|
|
||
|
|
||
|
public List<TenantPermissionTree> Children { get; set; }
|
||
|
}
|