lixiaojun
2024-03-26 38b6c0f70c646d247e50083c4a09abce055e363a
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
namespace Yw.Dto
{
    /// <summary>
    /// 
    /// </summary>
    public class DmaSiteMappingDto
    {
        /// <summary>
        /// 
        /// </summary>
        public DmaSiteMappingDto() { }
 
        /// <summary>
        /// 
        /// </summary>
        public DmaSiteMappingDto(Model.DmaSiteMapping rhs)
        {
            this.ID = rhs.ID;
            this.SiteID = rhs.SiteID;
            this.AreaID = rhs.AreaID;
            this.Direction = rhs.Direction;
        }
 
        /// <summary>
        /// id
        /// </summary>    
        public long ID { get; set; }
 
        /// <summary>
        /// 点位id
        /// </summary>    
        public long SiteID { get; set; }
 
        /// <summary>
        /// 分区id
        /// </summary>    
        public long AreaID { get; set; }
 
        /// <summary>
        /// 方向
        /// </summary>    
        public eDirection Direction { get; set; }
    }
}