using SqlSugar; using System; using System.Collections.Generic; namespace Tiobon.Core.Model { /// /// 部门表 /// public class DepartmentRoot : RootEntityTkey where Tkey : IEquatable { /// /// 上一级(0表示无上一级) /// public Tkey Pid { get; set; } [SugarColumn(IsIgnore = true)] public List PidArr { get; set; } } }