using Yw.Entity; namespace HStation.Entity { /// /// 业务站 /// [SysType("xhs_pumpseries")] [SugarTable("xhs_pumpseries")] public class PumpSeries : BaseEntity, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable { /// /// /// public PumpSeries() { } /// /// /// public PumpSeries(PumpSeries rhs) : base(rhs) { this.ID = rhs.ID; this.CatalogID = rhs.CatalogID; this.Name = rhs.Name; this.Paras = rhs.Paras; this.Flags = rhs.Flags; this.TagName = rhs.TagName; this.UseStatus = rhs.UseStatus; this.MotorFrequency = rhs.MotorFrequency; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// 所属类别ID /// public long CatalogID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 参数 /// public string Paras { get; set; } /// /// 标签 /// public string Flags { get; set; } /// /// 标志 /// public string TagName { get; set; } /// /// 使用状态 /// public int UseStatus { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 电机频率 /// public string MotorFrequency { get; set; } = "50hz"; /// /// 说明 /// public string Description { get; set; } /// /// /// public PumpSeries Clone() { return (PumpSeries)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }