Shuxia Ning
2024-10-12 af0f2e7a37eaac16cf92fb6d254b93e4045462ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
namespace Yw.WinFrmUI.Phart
{
    public class PumpSerialParallelViewModel
    {
        /// <summary>
        /// 标识
        /// </summary>
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 颜色
        /// </summary>
        public Color Color { get; set; }
 
        /// <summary>
        /// 是否是串并联线
        /// </summary>
        public bool IsSerialParallel { get; set; }
         
        /// <summary>
        /// 流量扬程线
        /// </summary>
        public Yw.Geometry.CubicSpline2d Qh { get; set; }
         
        /// <summary>
        /// 流量效率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d Qe { get; set; }
 
        /// <summary>
        /// 流量功率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d Qp { get; set; }   
 
    }
 
 
}