37 lines
811 B
C#
37 lines
811 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace MyCode.Project.Domain.Message.Response.EnterpriseWechat
|
|||
|
{
|
|||
|
public class DepartmentHasChild
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// id ,1为根节点id
|
|||
|
/// </summary>
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 上一级id
|
|||
|
/// </summary>
|
|||
|
public int Parentid { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 节点名
|
|||
|
/// </summary>
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 排序
|
|||
|
/// </summary>
|
|||
|
public int Order { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 子节点
|
|||
|
/// </summary>
|
|||
|
public List<DepartmentHasChild> ListChild { get; set; }
|
|||
|
}
|
|||
|
}
|