using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace JiepeiWMS.Model.Interfaces { /// /// 模型接口:树 /// public interface IModTree : IModSortBy { /// /// 唯一名称 /// string Name { get; set; } /// /// 上级时间主键值 /// int ParentId { get; set; } /// /// 上级路径 /// string Path { get; set; } /// /// 级别/深度 /// int Depth { get; set; } } }