HuanMengAdmin/admin-server/MiaoYu.Api.Admin/Models/Dtos/Systems/SysDictionaryDto.cs
2024-07-18 02:27:50 +08:00

30 lines
446 B
C#

namespace MiaoYu.Api.Admin.Models.Dtos.Systems;
public class SysDictionaryDto : SysDictionary
{
public int Key
{
get
{
return Id;
}
}
public string? Title
{
get
{
return Name;
}
}
public List<SysDictionaryDto> Children { get; set; }
/// <summary>
/// 父级名称
/// </summary>
public string? ParentName { get; set; }
}