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 Sorter { /// /// /// public Sorter() { } /// /// /// public Sorter(Sorter rhs) { this.ID = rhs.ID; this.SortCode = rhs.SortCode; } /// /// 标识 /// public long ID { get { return _id; } set { _id = value; } } private long _id; /// /// 排序码 /// public int SortCode { get { return _sortcode; } set { _sortcode = value; } } private int _sortcode; } }