20 lines
406 B
C#
20 lines
406 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|