2025-04-21 14:10:27 +08:00

37 lines
811 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}