lixiaojun
2024-01-21 7d7591e33633ab1d369ef041fc62973ff2cfe9d7
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
45
namespace Yw.Application
{
    /// <summary>
    /// 
    /// </summary>
    public class DmaSiteBindingDto
    {
        /// <summary>
        /// 
        /// </summary>
        public DmaSiteBindingDto(Model.DmaSiteBinding rhs)
        {
            this.ID = rhs.ID;
            this.SiteID = rhs.SiteID;
            this.MeterID = rhs.MeterID;
            this.BindingTime = rhs.BindingTime;
            this.UnBindingTime = rhs.UnBindingTime;
        }
 
        /// <summary>
        /// id
        /// </summary>    
        public long ID { get; set; }
 
        /// <summary>
        /// 点位id
        /// </summary>    
        public long SiteID { get; set; }
 
        /// <summary>
        /// 仪表id
        /// </summary>    
        public long MeterID { get; set; }
 
        /// <summary>
        /// 绑定时间
        /// </summary>    
        public DateTime BindingTime { get; set; }
 
        /// <summary>
        /// 解绑时间
        /// </summary>    
        public DateTime? UnBindingTime { get; set; }
    }
}