using SqlSugar;
using Yw.Entity;
namespace HStation.Model
{
///
/// 业务站
///
[SysType("xhs-pumpgroup")]
[SugarTable("xhs-pumpgroup")]
public class Pumpgroup : BaseEntity, IParas, IFlags, ITagName, ISorter, System.ICloneable
{
///
///
///
public Pumpgroup()
{ }
///
///
///
public Pumpgroup(Pumpgroup rhs) : base(rhs)
{
this.ID = rhs.ID;
this.PumpSeriesID = rhs.PumpSeriesID;
this.Name = rhs.Name;
this.Paras = rhs.Paras;
this.Flags = rhs.Flags;
this.TagName = rhs.TagName;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
public void Reset(Pumpgroup rhs)
{
this.ID = rhs.ID;
this.PumpSeriesID = rhs.PumpSeriesID;
this.Name = rhs.Name;
this.Paras = rhs.Paras;
this.Flags = rhs.Flags;
this.TagName = rhs.TagName;
this.SortCode = rhs.SortCode;
this.Description = rhs.Description;
}
///
/// 名称
///
public string Name { get; set; }
///
/// 泵系列ID
///
public long PumpSeriesID { 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 Pumpgroup Clone()
{
return (Pumpgroup)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}