26 lines
504 B
C#
26 lines
504 B
C#
using JNPF.Common.Security;
|
|
using JNPF.DependencyInjection;
|
|
|
|
namespace JNPF.Systems.Entitys.Dto.Organize;
|
|
|
|
/// <summary>
|
|
/// 机构树输出.
|
|
/// </summary>
|
|
[SuppressSniffer]
|
|
public class OrganizeTreeOutput : TreeModel
|
|
{
|
|
/// <summary>
|
|
/// 图标.
|
|
/// </summary>
|
|
public string icon { get; set; }
|
|
|
|
/// <summary>
|
|
/// 名称.
|
|
/// </summary>
|
|
public string fullName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 排序.
|
|
/// </summary>
|
|
public long? sortCode { get; set; }
|
|
} |