duheng
2025-03-21 c0be7c001375f73e2c3b49a1b1d447b6fc297bdd
Dto/PBS.Dto/02-facility/FacilityDto.cs
@@ -29,6 +29,10 @@
            this.ConstantPressure = rhs.ConstantPressure;
            this.TerminalPressure = rhs.TerminalPressure;
            this.MaxHeight = rhs.MaxHeight;
            this.ConnectionAddress = rhs.ConnectionAddress;
            this.ConnectionType = rhs.ConnectionType;
            this.ModelInfo = rhs.ModelInfo;
            this.ModelPath = rhs.ModelPath;
            this.Paras = rhs.Paras == null ? null : new(rhs.Paras);
            this.Flags = rhs.Flags?.ToList();
            this.TagName = rhs.TagName;
@@ -108,6 +112,26 @@
        public double MaxHeight { get; set; }
        /// <summary>
        /// 连接类型
        /// </summary>
        public eConnectionType ConnectionType { get; set; }
        /// <summary>
        /// 模型信息
        ///</summary>
        public string ModelInfo { get; set; }
        /// <summary>
        /// 模型路径
        ///</summary>
        public string ModelPath { get; set; }
        /// <summary>
        /// IP地址
        /// </summary>
        public string ConnectionAddress { get; set; }
        /// <summary>
        /// 参数
        ///</summary>
        public Dictionary<string, string> Paras { get; set; }