using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; namespace IStation.Model { /// /// 业务类别 /// public partial class LogicCatalog : System.ICloneable { public LogicCatalog() { } public LogicCatalog(LogicCatalog rhs) { this.Id = rhs.Id; this.Name = rhs.Name; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } public void Reset(LogicCatalog rhs) { this.Id = rhs.Id; this.Name = rhs.Name; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 标识 /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 标签 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } public LogicCatalog Clone() { return (LogicCatalog)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }