lixiaojun
2023-04-12 fc6b7c9852f18e42fb9bccaf0cc22fbe5389d179
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
 
namespace IStation.Entity
{
    /// <summary>
    /// 年监测记录
    /// </summary>
    [SugarTable("monitor_year_record")]
    public class MonitorYearRecord : CorpEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public MonitorYearRecord() { }
 
        /// <summary>
        /// 
        /// </summary>
        public MonitorYearRecord(MonitorYearRecord rhs) : base(rhs)
        {
            this.MonitorPointID = rhs.MonitorPointID;
            this.SignalID = rhs.SignalID;
            this.RecordType = rhs.RecordType;
            this.DataYear = rhs.DataYear;
            this.SrcTime = rhs.SrcTime;
            this.SrcValue = rhs.SrcValue;
            this.DataTime = rhs.DataTime;
            this.DataValue = rhs.DataValue;
            this.DataStatus = rhs.DataStatus;
        }
 
 
        /// <summary>
        /// 测点标识
        /// </summary>    
        public long MonitorPointID
        {
            get { return _monitorpointid; }
            set { _monitorpointid = value; }
        }
        private long _monitorpointid;
 
        /// <summary>
        /// 信号标识
        /// </summary>    
        public long SignalID
        {
            get { return _signalId; }
            set { _signalId = value; }
        }
        private long _signalId;
 
        /// <summary>
        /// 记录类型
        /// </summary>    
        public int RecordType
        {
            get { return _recordtype; }
            set { _recordtype = value; }
        }
        private int _recordtype;
 
        /// <summary>
        /// 数据年份
        /// </summary>    
        public int DataYear
        {
            get { return _datayear; }
            set { _datayear = value; }
        }
        private int _datayear;
 
        /// <summary>
        /// 原始时间
        /// </summary>    
        public DateTime SrcTime
        {
            get { return _srctime; }
            set { _srctime = value; }
        }
        private DateTime _srctime;
 
        /// <summary>
        /// 原始值
        /// </summary>    
        public string SrcValue
        {
            get { return _srcvalue; }
            set { _srcvalue = value; }
        }
        private string _srcvalue;
 
        /// <summary>
        /// 数据时间
        /// </summary>    
        public DateTime DataTime
        {
            get { return _datatime; }
            set { _datatime = value; }
        }
        private DateTime _datatime;
 
        /// <summary>
        /// 数据值
        /// </summary>    
        public string DataValue
        {
            get { return _datavalue; }
            set { _datavalue = value; }
        }
        private string _datavalue;
 
        /// <summary>
        /// 数据状态
        /// </summary>    
        public string DataStatus
        {
            get { return _datastatus; }
            set { _datastatus = value; }
        }
        private string _datastatus;
 
        /// <summary>
        /// 
        /// </summary>
        public MonitorYearRecord Clone()
        {
            return (MonitorYearRecord)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}