using System;
|
using System.Text;
|
using System.Collections.Generic;
|
using System.Data;
|
using System.Runtime.Serialization;
|
|
|
namespace IStation.Entity
|
{
|
/// <summary>
|
/// 业务区域
|
/// </summary>
|
public class LogicArea :BaseEntity, System.ICloneable, ISorter, ITagName
|
{
|
public LogicArea() { }
|
public LogicArea(LogicArea rhs):base(rhs)
|
{
|
this.CatalogId = rhs.CatalogId;
|
this.Name = rhs.Name;
|
this.TagName = rhs.TagName;
|
this.SortCode = rhs.SortCode;
|
this.Description = rhs.Description;
|
}
|
|
/// <summary>
|
/// 类别标识
|
/// </summary>
|
public long CatalogId
|
{
|
get { return _catalogId; }
|
set { _catalogId = value; }
|
}
|
private long _catalogId;
|
|
/// <summary>
|
/// 名称
|
/// </summary>
|
public string Name
|
{
|
get { return _name; }
|
set { _name = value; }
|
}
|
private string _name;
|
|
|
/// <summary>
|
/// 标签
|
/// </summary>
|
public string TagName
|
{
|
get { return _tagname; }
|
set { _tagname = value; }
|
}
|
private string _tagname;
|
|
/// <summary>
|
/// 排序码
|
/// </summary>
|
public int SortCode
|
{
|
get { return _sortcode; }
|
set { _sortcode = value; }
|
}
|
private int _sortcode;
|
|
/// <summary>
|
/// 说明
|
/// </summary>
|
public string Description
|
{
|
get { return _description; }
|
set { _description = value; }
|
}
|
private string _description;
|
|
public LogicArea Clone()
|
{
|
return (LogicArea)this.MemberwiseClone();
|
}
|
|
object ICloneable.Clone()
|
{
|
return this.MemberwiseClone();
|
}
|
}
|
|
}
|