Shuxia Ning
2024-11-06 adf8dc1c7cae1b12f486dcdb3d7daf4a5a59ec52
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
namespace IStation.Dto
{
    /// <summary>
    /// 能效热力区间列表
    /// </summary>
    public class EtaAnalyRunHeatRectListDto
    {
        ///// <summary>
        ///// 
        ///// </summary>
        //public EtaAnalyRunHeatRectListDto() { }
 
        ///// <summary>
        ///// 
        ///// </summary>
        //public EtaAnalyRunHeatRectListDto(Yw.Model.EtaQHETRectList rhs)
        //{
        //    this.Qmax = rhs.Qmax;
        //    this.Qmin = rhs.Qmin;
        //    this.Qspace = rhs.Qspace;
        //    this.Hmax = rhs.Hmax;
        //    this.Hmin = rhs.Hmin;
        //    this.Hspace = rhs.Hspace;
        //    this.Items = rhs.RectList?.Select(x => new EtaAnalyRunHeatRectItemDto(x)).ToList();
        //}
 
        /// <summary>
        /// 最大流量
        /// </summary>
        public double Qmax { get; set; }
 
        /// <summary>
        /// 最小流量
        /// </summary>
        public double Qmin { get; set; }
 
        /// <summary>
        /// 流量刻度间隔
        /// </summary>
        public double Qspace { get; set; }
 
        /// <summary>
        /// 最大扬程
        /// </summary>
        public double Hmax { get; set; }
 
        /// <summary>
        /// 最小扬程
        /// </summary>
        public double Hmin { get; set; }
 
        /// <summary>
        /// 扬程刻度间隔
        /// </summary>
        public double Hspace { get; set; }
 
        /// <summary>
        /// 区间项集合
        /// </summary>
        public List<EtaAnalyRunHeatRectItemDto> Items { get; set; }
    }
}