From 2e0b2085526c866fcf983dff722b4e6c7e7cfbf0 Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期一, 10 四月 2023 17:02:46 +0800 Subject: [PATCH] Merge branch 'master' of http://47.103.154.90:83/r/IStation/Service.V4.1 --- Application/IStation.Application.OpenApi/shys/dispatch/dto/DispatchAnaSchemeOutput.cs | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 files changed, 59 insertions(+), 1 deletions(-) diff --git a/Application/IStation.Application.OpenApi/shys/dispatch/dto/DispatchAnaSchemeOutput.cs b/Application/IStation.Application.OpenApi/shys/dispatch/dto/DispatchAnaSchemeOutput.cs index 3ed7c78..87f21eb 100644 --- a/Application/IStation.Application.OpenApi/shys/dispatch/dto/DispatchAnaSchemeOutput.cs +++ b/Application/IStation.Application.OpenApi/shys/dispatch/dto/DispatchAnaSchemeOutput.cs @@ -1,4 +1,6 @@ -锘縰sing System; +锘縰sing 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; } + } + + + } + } -- Gitblit v1.9.3