using Yw.Entity;
namespace IStation.Entity
{
///
/// 业务清单
///
[SugarTable("logic_tree")]
public class LogicTree : BaseEntity, ITreeSorter, System.ICloneable
{
///
///
///
public LogicTree() { }
///
///
///
public LogicTree(LogicTree rhs) : base(rhs)
{
this.ParentIds = rhs.ParentIds;
this.PolicyID = rhs.PolicyID;
this.LogicType = rhs.LogicType;
this.LogicID = rhs.LogicID;
this.SortCode = rhs.SortCode;
}
///
/// 父级id列表
///
public string ParentIds { get; set; }
///
/// 策略id
///
public long PolicyID { get; set; }
///
/// 业务类型
///
public string LogicType { get; set; }
///
/// 业务id
///
public long LogicID { get; set; }
///
/// 排序码
///
public int SortCode { get; set; }
///
///
///
public LogicTree Clone()
{
return (LogicTree)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}