lixiaojun
2023-11-22 70e3d3f3ad50ad378e7caa7a1d62710c220c5755
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
namespace Yw.Application
{
    /// <summary>
    /// 
    /// </summary>
    public class PumpCurveExpressToolOutput
    {
        /// <summary>
        /// 流量扬程点列表
        /// </summary>
        public List<CurvePoint> PointListQH { get; set; }
 
        /// <summary>
        /// 流量功率点列表
        /// </summary>
        public List<CurvePoint> PointListQP { get; set; }
 
        /// <summary>
        /// 流量效率点列表
        /// </summary>
        public List<CurvePoint> PointListQE { get; set; }
    }
}