lixiaojun
2024-04-04 0a48aec6a38d34db6e9194920aac7d2d19cadcb3
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
namespace IStation.Application.SZJT
{
    /// <summary>
    /// 
    /// </summary>
    public class BigScreenAllStationKpiDto
    {
        /// <summary>
        /// 当日累计供水量
        /// </summary>
        public BigScreenAllStationKpiItemDto Lws { get; set; }
 
        /// <summary>
        /// 当日累计用电量
        /// </summary>
        public BigScreenAllStationKpiItemDto Lps { get; set; }
 
        /// <summary>
        /// 当前瞬时总流量
        /// </summary>
        public BigScreenAllStationKpiItemDto Sws { get; set; }
 
        /// <summary>
        /// 当前瞬时总功率
        /// </summary>
        public BigScreenAllStationKpiItemDto Sps { get; set; }
 
        /// <summary>
        /// 总泵站数量
        /// </summary>
        public BigScreenAllStationKpiItemDto Tsc { get; set; }
 
        /// <summary>
        /// 运行泵站数量
        /// </summary>
        public BigScreenAllStationKpiItemDto Rsc { get; set; }
 
        /// <summary>
        /// 总机组数量
        /// </summary>
        public BigScreenAllStationKpiItemDto Tpc { get; set; }
 
        /// <summary>
        /// 运行机组数量
        /// </summary>
        public BigScreenAllStationKpiItemDto Rpc { get; set; }
    }
}