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
444 B
C#
24 lines
444 B
C#
namespace DS.WMS.Core.System.Dtos;
|
|
|
|
/// <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; }
|
|
} |