lixiaojun
2024-11-15 1aa330646ad9f88abc580e17d08d727a0ecaae48
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 
    /// </summary>
    public class XhsProjectSimulationAnalySinglePumpViewModel
    {
        /// <summary>
        /// id
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// Open Closed
        /// </summary>
        public string RunStatus { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public bool IsBp { get; set; }
 
        /// <summary>
        /// 50hz 60hz
        /// </summary>
        public double RatedHz { get; set; }
 
        /// <summary>
        /// 设定频率
        /// </summary>
        public double CurrentHz { get; set; }
 
        /// <summary>
        /// 流量扬程线
        /// </summary>
        public List<HStation.WinFrmUI.CurvePointMatchingViewModel> CurveQH { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<HStation.WinFrmUI.CurvePointMatchingViewModel> CurveQP { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public List<HStation.WinFrmUI.CurvePointMatchingViewModel> CurveQE { get; set; }
 
        /// <summary>
        /// 计算流量
        /// </summary>
        public double? CalcuQ { get; set; }
 
        /// <summary>
        /// 计算扬程
        /// </summary>
        public double? CalcuH { get; set; }
 
 
 
 
    }
}