using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
namespace IStation.Model
{
///
/// 业务清单
///
public partial class LogicTree : System.ICloneable
{
public LogicTree() { }
public LogicTree(LogicTree rhs)
{
this.Id = rhs.Id;
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.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 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();
}
}
}