lixiaojun
2024-09-09 c0f3c3f170846197d8d3f74ac123e0ac93a6dd67
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
namespace IStation.Application.SZJT
{
    /// <summary>
    /// 泵站列表项
    /// </summary>
    public class BigScreenSingleStationEnginePumpListItemDto
    {
        /// <summary>
        /// id
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 状态
        /// </summary>
        public BigScreenSingleStationEnginePumpListKpiItemDto Rs { get; set; }
 
        /// <summary>
        /// 频率
        /// </summary>
        public BigScreenSingleStationEnginePumpListKpiItemDto Hz { get; set; }
 
        /// <summary>
        /// 功率
        /// </summary>
        public BigScreenSingleStationEnginePumpListKpiItemDto P { get; set; }
 
 
    }
}