| | |
| | | using SqlSugar; |
| | | using Yw.Model; |
| | | using Yw.Model; |
| | | |
| | | namespace HStation.Model |
| | | { |
| | | /// <summary> |
| | | /// 业务站 |
| | | /// 泵系列 |
| | | /// </summary> |
| | | [SysType("xhs-pumpseries")] |
| | | public class PumpSeries : BaseModel, IParas, IFlags, ITagName, ISorter, IUseStatus, System.ICloneable |
| | |
| | | public PumpSeries(PumpSeries rhs) : base(rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.CatalogID = rhs.CatalogID; |
| | | this.Name = rhs.Name; |
| | | this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras); |
| | | this.Flags = rhs.Flags; |
| | | this.CatalogID = rhs.CatalogID; |
| | | this.TagName = rhs.TagName; |
| | | this.MotorFrequency = rhs.MotorFrequency; |
| | | this.UseStatus = rhs.UseStatus; |
| | |
| | | public void Reset(PumpSeries rhs) |
| | | { |
| | | this.ID = rhs.ID; |
| | | this.CatalogID = rhs.CatalogID; |
| | | this.Name = rhs.Name; |
| | | this.CatalogID = rhs.CatalogID; |
| | | this.MotorFrequency = rhs.MotorFrequency; |
| | | this.Paras = rhs.Paras == null ? null : new Dictionary<string, string>(rhs.Paras); |
| | | this.Flags = rhs.Flags; |
| | |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 所属类别ID |
| | | /// </summary> |
| | | public long CatalogID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 名称 |
| | | /// </summary> |
| | | public string Name { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 所属类别ID |
| | | /// </summary> |
| | | public long CatalogID { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 参数 |
| | | /// </summary> |
| | | public Dictionary<string, string> Paras { get; set; } |