lixiaojun
2024-02-21 15dfd39fbc507f4bad50fda15b073fdecb6fcf50
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
namespace IStation.Model
{
    /// <summary>
    /// 证书
    /// </summary>
    public class Certificate : Yw.Model.BaseModel, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public Certificate() { }
 
        /// <summary>
        /// 
        /// </summary>
        public Certificate(Certificate rhs) : base(rhs)
        {
            this.ManufacturerName = rhs.ManufacturerName;
            this.UseName = rhs.UseName;
            this.CertificateNO = rhs.CertificateNO;
            this.AirpSiteName = rhs.AirpSiteName;
            this.MainEquipmentModels = rhs.MainEquipmentModels;
            this.EtaLevel = rhs.EtaLevel;
            this.TestingUnitName = rhs.TestingUnitName;
            this.IssuingUnitName = rhs.IssuingUnitName;
            this.IssuanceDay = rhs.IssuanceDay;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public void Reset(Certificate rhs)
        {
            this.ID = rhs.ID;
            this.ManufacturerName = rhs.ManufacturerName;
            this.UseName = rhs.UseName;
            this.CertificateNO = rhs.CertificateNO;
            this.AirpSiteName = rhs.AirpSiteName;
            this.MainEquipmentModels = rhs.MainEquipmentModels;
            this.EtaLevel = rhs.EtaLevel;
            this.TestingUnitName = rhs.TestingUnitName;
            this.IssuingUnitName = rhs.IssuingUnitName;
            this.IssuanceDay = rhs.IssuanceDay;
            this.SortCode = rhs.SortCode;
            this.Description = rhs.Description;
        }
 
        /// <summary>
        /// 生产企业名称=》空压站建设单位
        /// </summary>
        public string ManufacturerName { get; set; }
 
        /// <summary>
        /// 用户名称=》空压站所属单位
        /// </summary>
        public string UseName { get; set; }
 
        /// <summary>
        /// 证书编号
        /// </summary>
        public string CertificateNO { get; set; }
 
        /// <summary>
        /// 压缩空气站名称
        /// </summary>
        public string AirpSiteName { get; set; }
 
        /// <summary>
        /// 主要设备型号
        /// </summary>
        public string MainEquipmentModels { get; set; }
 
        /// <summary>
        /// 能效等级
        /// </summary>
        public string EtaLevel { get; set; }
 
        /// <summary>
        /// 检测单位名称
        /// </summary>
        public string TestingUnitName { get; set; }
 
        /// <summary>
        /// 发证单位名称
        /// </summary>
        public string IssuingUnitName { get; set; }
 
        /// <summary>
        /// 发证日期=》认定时间
        /// </summary>
        public DateTime IssuanceDay { get; set; }
 
        /// <summary>
        /// 排序码
        /// </summary>
        public int SortCode { get; set; }
 
        /// <summary>
        /// 说明
        /// </summary>
        public string Description { get; set; }
 
        /// <summary>
        /// 
        /// </summary>
        public Certificate Clone()
        {
            return new Certificate(this);
        }
 
        object ICloneable.Clone()
        {
            return this.Clone();
        }
    }
 
}