lixiaojun
2024-05-15 e45eab5980c08520aee01a72224ccdfd12600543
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 StationMapMobileDto
    {
        /// <summary>
        /// 
        /// </summary>
        public StationMapMobileDto(Model.LogicSite rhs)
        {
            this.StationID = rhs.ID;
            this.Name = rhs.Name;
        }
 
        /// <summary>
        /// 泵站id
        /// </summary>
        public long StationID { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 位置
        /// </summary>
        public Yw.Model.Map.Marker Position { get; set; }
 
 
 
    }
}