lixiaojun
2024-08-14 30d1c646b63604b59ce9d665054bd748e56e171c
Service/HStation.Service.Assets.Core/02-model/PumpSeries.cs
@@ -1,10 +1,9 @@
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
@@ -15,10 +14,10 @@
        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;
@@ -29,8 +28,8 @@
        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;
@@ -41,16 +40,16 @@
        }
        /// <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; }