lixiaojun
2023-12-26 3c05a19c6896c197953df955c729d26c8dc94536
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 FlowMeterMapMonitorKpiInfoDto
    {
        /// <summary>
        /// 
        /// </summary>
        public FlowMeterMapMonitorKpiInfoDto(Yw.Model.Equipment rhs)
        {
            this.FlowMeterID = rhs.ID;
            this.Name = rhs.Name;
            this.LastRecordList = new List<FlowMeterMapMonitorKpiLastRecordDto>();
        }
 
        /// <summary>
        /// 流量计id
        /// </summary>
        public long FlowMeterID { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 位置
        /// </summary>
        public Yw.Model.Map.Marker Position { get; set; }
 
        /// <summary>
        /// 最后记录列表
        /// </summary>
        public List<FlowMeterMapMonitorKpiLastRecordDto> LastRecordList { get; set; }
 
 
 
    }
}