using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Entity
{
///
/// 树排序
///
public class TreeSorter : Sorter
{
///
///
///
public TreeSorter() { }
///
///
///
public TreeSorter(Sorter rhs, string parentIds) : base(rhs)
{
this.ParentIds = parentIds;
}
///
///
///
public TreeSorter(TreeSorter rhs) : base(rhs)
{
this.ParentIds = rhs.ParentIds;
}
///
/// 父节点标识
///
public string ParentIds
{
get { return _parentIds; }
set { _parentIds = value; }
}
private string _parentIds=string.Empty;
}
}