mh_jy_safe/APT.BaseData.Domain/ApiModel/Platform/TreeDataModel.cs

20 lines
406 B
C#
Raw Permalink Normal View History

2025-08-25 09:56:57 +08:00
using System.Collections.Generic;
namespace APT.BaseData.Domain.ApiModel.Platform
{
/// <summary>
/// 树形控件实体
/// </summary>
public class TreeDataModel
{
public string key { get; set; }
public string title { get; set; }
/// <summary>
/// 子节点
/// </summary>
public List<TreeDataModel> children { get; set; }
}
}