tangxu
2024-01-09 ddc2780231ea76be74fadb7486401a3d0d17b101
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
46
47
48
49
50
51
52
namespace Yw.Application
{
    /// <summary>
    /// 
    /// </summary>
    public class HealthQuotaEvaluationModelBindingDto
    {
        /// <summary>
        /// 
        /// </summary>
        public HealthQuotaEvaluationModelBindingDto() { }
 
        /// <summary>
        /// 
        /// </summary>
        public HealthQuotaEvaluationModelBindingDto(Model.HealthQuotaEvaluationModelBinding rhs)
        {
            this.ID = rhs.ID;
            this.ModelID = rhs.ModelID;
            this.SignalID = rhs.SignalID;
            this.BindingTime = rhs.BindingTime;
            this.UnBindingTime = rhs.UnBindingTime;
        }
 
        /// <summary>
        /// id
        /// </summary>    
        public long ID { get; set; }
 
        /// <summary>
        /// 模型 id
        /// </summary>
        public long ModelID { get; set; }
 
        /// <summary>
        /// 信号 id
        /// </summary>
        public long SignalID { get; set; }
 
        /// <summary>
        /// 绑定时间
        /// </summary>
        public DateTime BindingTime { get; set; }
 
        /// <summary>
        /// 解绑时间
        /// </summary>
        public DateTime? UnBindingTime { get; set; }
 
 
    }
}