ningshuxia
2024-05-27 f51ccee7e76f598c1f718190d216f96b5ea1ca46
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
53
54
55
56
57
58
59
60
namespace IStation.Entity
{
    /// <summary>
    /// 
    /// </summary>
    public class ScheduleScada : BaseEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public ScheduleScada() { }
 
        /// <summary>
        /// 
        /// </summary>
        /// <param name="rhs"></param>
        public ScheduleScada(ScheduleScada rhs)
        {
            this.RequestID = rhs.RequestID;
            this.Time = rhs.Time;
            this.Tag = rhs.Tag;
            this.Value = rhs.Value;
        }
 
        /// <summary>
        /// 调度请求标识
        /// </summary>
        public long RequestID { get; set; }
 
        /// <summary>
        /// 时间
        /// </summary>    
        public DateTime Time { get; set; }
 
        /// <summary>
        /// 标识
        /// </summary>    
        public string Tag { get; set; }
 
        /// <summary>
        /// 值
        /// </summary>     
        public double? Value { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        /// <returns></returns>
        public ScheduleScada Clone()
        {
            return (ScheduleScada)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}