AUCMA_SCADA/Admin.Core.Model/Sys/DeptView.cs

26 lines
510 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Admin.Core.Model.Sys;
namespace Admin.Core.Model
{
/// <summary>
/// 部门视图
/// </summary>
public class DeptView : SysDept
{
/// <summary>
/// 父部门名称
/// </summary>
public string ParentName { get; set; } = "";
/// <summary>
/// 子部门
/// </summary>
public List<DeptView> Children { get; set; } = new List<DeptView>();
}
}