tangxu
2023-04-21 473084031d410d95db66e81f4d1761f9a2d1b8e5
Application/IStation.Application.OpenApi/shys/dispatch/dto/DispatchAnaSchemeOutput.cs
@@ -1,4 +1,6 @@
using System;
using Microsoft.AspNetCore.Components.Forms;
using Org.BouncyCastle.Bcpg.OpenPgp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -51,5 +53,61 @@
        /// </summary>
        public List<DispatchAnaSchemeItemOutput> Pumps { get; set; }
        /// <summary>
        ///
        /// </summary>
        public DispatchAnaCurrentOutput Scheme { get; set; }
    }
    /// <summary>
    ///
    /// </summary>
    public class DispatchAnaCurrentOutput
    {
        /// <summary>
        ///
        /// </summary>
        public List<PipeParaOutput> Pipes { get; set; }
        /// <summary>
        ///
        /// </summary>
        public int  MiddleValveStatus { get; set; }
        /// <summary>
        ///
        /// </summary>
        public class PipeParaOutput
        {
            /// <summary>
            ///
            /// </summary>
            public string Name { get; set; }
            /// <summary>
            /// 流量 m³/h (三高给的数据)
            /// </summary>
            public double TargetFlow { get; set; }
            /// <summary>
            /// 压力 MPa (三高给的数据)
            /// </summary>
            public double TargetPressure { get; set; }
            /// <summary>
            /// 流量 m³/h (实时)
            /// </summary>
            public double CurrentFlow { get; set; }
            /// <summary>
            /// 压力 MPa(实时)
            /// </summary>
            public double CurrentPressure { get; set; }
        }
    }
}