using Yw.Entity; namespace HStation.Entity { /// /// 业务站 /// [SysType("assets_pump_group")] [SugarTable("assets_pump_group")] public class AssetsPumpGroup : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable { /// /// /// public AssetsPumpGroup() { } /// /// /// public AssetsPumpGroup(AssetsPumpGroup rhs) : base(rhs) { this.ID = rhs.ID; this.SeriesID = rhs.SeriesID; this.Name = rhs.Name; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 泵系列ID /// public long SeriesID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// /// public AssetsPumpGroup Clone() { return (AssetsPumpGroup)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }