using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using SqlSugar; namespace IStation.Entity { /// /// 设备类别 /// [SugarTable("product_catalog")] public class ProductCatalog :BaseTraceEntity, System.ICloneable,ISorter,IUseStatus,ITagName { /// /// /// public ProductCatalog() { } /// /// /// public ProductCatalog(ProductCatalog rhs):base(rhs) { this.GroupID = rhs.GroupID; this.Identifier = rhs.Identifier; this.Name = rhs.Name; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.UseStatus = rhs.UseStatus; this.Description = rhs.Description; } /// /// 组标识 /// public long GroupID { get { return _groupId; } set { _groupId = value; } } private long _groupId; /// /// 唯一标识 /// public string Identifier { get { return _identifier; } set { _identifier = value; } } private string _identifier; /// /// 名称 /// public string Name { get { return _name; } set { _name = value; } } private string _name; /// /// 标签 /// public string TagName { get { return _tagname; } set { _tagname = value; } } private string _tagname; /// /// 排序码 /// public int SortCode { get { return _sortcode; } set { _sortcode = value; } } private int _sortcode; /// /// 使用状态 /// public int UseStatus { get { return _usestatus; } set { _usestatus = value; } } private int _usestatus; /// /// 说明 /// public string Description { get { return _description; } set { _description = value; } } private string _description; /// /// /// public ProductCatalog Clone() { return (ProductCatalog)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }