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.
29 lines
539 B
C#
29 lines
539 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
|
|
/// <summary>
|
|
/// Treeselect树结构实体类
|
|
/// </summary>
|
|
public class TreeSelect
|
|
{
|
|
/// <summary>
|
|
/// 节点ID
|
|
/// </summary>
|
|
public int id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 节点名称
|
|
/// </summary>
|
|
public string label { get; set; }
|
|
|
|
/// <summary>
|
|
/// 子节点
|
|
/// </summary>
|
|
public List<TreeSelect> children { get; set; }
|
|
|
|
}
|
|
|
|
} |