ningshuxia
2023-02-23 036ce5eaab6126560cf9ca19b4a2783d42c2e191
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
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
 
namespace IStation.Model
{
    /// <summary>
    /// 年监测记录纯净类
    /// </summary>
    public class MonitorYearRecordPure : MonitorBasicRecord
    {
        /// <summary>
        /// 
        /// </summary>
        public MonitorYearRecordPure() { }
 
        /// <summary>
        /// 
        /// </summary>
        public MonitorYearRecordPure(MonitorBasicRecord rhs, int dataYear) : base(rhs)
        {
            this.DataYear = dataYear;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public MonitorYearRecordPure(MonitorYearRecordPure rhs) : base(rhs)
        {
            this.DataYear = rhs.DataYear;
        }
 
        /// <summary>
        /// 年
        /// </summary>    
        public int DataYear { get; set; }
 
 
    }
}