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