lixiaojun
2023-12-12 8e97fa97a429e4587e7922724f633ccbd95e17a1
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
namespace IStation.Application
{
    /// <summary>
    /// 监测面板KPI信息
    /// </summary>
    public class StationPanelMonitorKpiInfoDto
    {
        /// <summary>
        /// 
        /// </summary>
        public StationPanelMonitorKpiInfoDto(Model.LogicSite rhs)
        {
            this.StationID = rhs.ID;
            this.Name = rhs.Name;
            this.LastRecordList = new List<StationPanelMonitorKpiLastRecordDto>();
            this.LastStatusList = new List<StationPanelMonitorKpiLastStatusDto>();
        }
 
        /// <summary>
        /// 泵站id
        /// </summary>
        public long StationID { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 最后记录列表
        /// </summary>
        public List<StationPanelMonitorKpiLastRecordDto> LastRecordList { get; set; }
 
        /// <summary>
        /// 最后状态列表
        /// </summary>
        public List<StationPanelMonitorKpiLastStatusDto> LastStatusList { get; set; }
 
 
    }
}