using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FlexJobApi.Core
{
///
/// 树形数据
///
///
public interface ITreeData
where TEntity : CommonEntity, ITreeData, new()
{
///
/// 上级Id
///
Guid? ParentId { get; set; }
///
/// 上级
///
TEntity Parent { get; set; }
///
/// 下级
///
List Children { get; set; }
///
/// 字典路径
///
string Path { get; set; }
///
/// 编号
///
string Code { get; set; }
}
}