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.
26 lines
510 B
C#
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>();
|
|
|
|
}
|
|
}
|