lixiaojun
2024-03-27 56b519c5ee0ee0615400c7df8d455f9766fa600b
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.Dto 
{
    /// <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; }
    }
}