using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// 业务清单 /// public partial class LogicTree : System.ICloneable { /// /// /// public LogicTree() { } /// /// /// public LogicTree(LogicTree rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.CatalogID = rhs.CatalogID; this.ParentIds = rhs.ParentIds; this.LogicType = rhs.LogicType; this.LogicID = rhs.LogicID; this.SortCode = rhs.SortCode; } /// /// /// public void Reset(LogicTree rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.CatalogID = rhs.CatalogID; this.ParentIds = rhs.ParentIds; this.LogicType = rhs.LogicType; this.LogicID = rhs.LogicID; this.SortCode = rhs.SortCode; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 类别标识 /// public long CatalogID { get; set; } /// /// 父节点标识 /// public List ParentIds { get; set; } /// /// 业务类型 /// public string LogicType { get; set; } /// /// 业务标识 /// public long LogicID { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// /// public LogicTree Clone() { return (LogicTree)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }