ningshuxia
2022-11-14 e4680615a852b2eb115b32c8bcbc3b788c3f9ef4
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
using System;
using System.Text;
using System.Collections.Generic;
using System.Data;
using System.Runtime.Serialization;
using SqlSugar;
 
namespace IStation.Entity
{
    /// <summary>
    /// 能效标准配置
    /// </summary>
    [SugarTable("eta_standard_configure")]
    public class EtaStandardConfigure : CorpTraceEntity, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public EtaStandardConfigure() { }
 
        /// <summary>
        /// 
        /// </summary>
        public EtaStandardConfigure(EtaStandardConfigure rhs) : base(rhs)
        {
            this.Name = rhs.Name;
            this.LowerLimit = rhs.LowerLimit;
            this.UpperLimit = rhs.UpperLimit;
            this.Color = rhs.Color;
            this.Grade = rhs.Grade;
            this.Description = rhs.Description;
        }
 
        /// <summary>
        /// 名称
        /// </summary>    
        public string Name
        {
            get { return _name; }
            set { _name = value; }
        }
        private string _name;
 
        /// <summary>
        /// 下限
        /// </summary>    
        public double LowerLimit
        {
            get { return _lowerlimit; }
            set { _lowerlimit = value; }
        }
        private double _lowerlimit;
 
        /// <summary>
        /// 上限
        /// </summary>    
        public double UpperLimit
        {
            get { return _upperlimit; }
            set { _upperlimit = value; }
        }
        private double _upperlimit;
 
        /// <summary>
        /// 显示颜色
        /// </summary>    
        public string Color
        {
            get { return _color; }
            set { _color = value; }
        }
        private string _color;
 
        /// <summary>
        /// 节能等级
        /// </summary>    
        public int Grade
        {
            get { return _grade; }
            set { _grade = value; }
        }
        private int _grade;
 
        /// <summary>
        /// 说明
        /// </summary>    
        public string Description
        {
            get { return _description; }
            set { _description = value; }
        }
        private string _description;
 
        /// <summary>
        /// 
        /// </summary>
        public EtaStandardConfigure Clone()
        {
            return (EtaStandardConfigure)this.MemberwiseClone();
        }
 
        object ICloneable.Clone()
        {
            return this.MemberwiseClone();
        }
    }
 
}