using System; using System.Text; using System.Collections.Generic; using System.Data; using System.Runtime.Serialization; using System.ComponentModel.DataAnnotations; namespace IStation.Model { /// /// 能效标准配置 /// public partial class EtaStandardConfigure : System.ICloneable { /// /// /// public EtaStandardConfigure() { } /// /// /// public EtaStandardConfigure(EtaStandardConfigure rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.Name = rhs.Name; this.LowerLimit = rhs.LowerLimit; this.UpperLimit = rhs.UpperLimit; this.Color = rhs.Color; this.Grade = rhs.Grade; this.Description = rhs.Description; this.CreateUserID = rhs.CreateUserID; this.CreateTime = rhs.CreateTime; this.UpdateUserID = rhs.UpdateUserID; this.UpdateTime = rhs.UpdateTime; } /// /// /// public void Reset(EtaStandardConfigure rhs) { this.ID = rhs.ID; this.CorpID = rhs.CorpID; this.Name = rhs.Name; this.LowerLimit = rhs.LowerLimit; this.UpperLimit = rhs.UpperLimit; this.Color = rhs.Color; this.Grade = rhs.Grade; this.Description = rhs.Description; this.CreateUserID = rhs.CreateUserID; this.CreateTime = rhs.CreateTime; this.UpdateUserID = rhs.UpdateUserID; this.UpdateTime = rhs.UpdateTime; } /// /// 标识 /// public long ID { get; set; } /// /// 客户标识 /// public long CorpID { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 下限 /// public double LowerLimit { get; set; } /// /// 上限 /// public double UpperLimit { get; set; } /// /// 显示颜色 /// public string Color { get; set; } /// /// 节能等级 /// public int Grade { get; set; } /// /// 说明 /// public string Description { get; set; } /// /// 创建用户标识 /// public long CreateUserID { get; set; } /// /// 创建时间 /// public DateTime CreateTime { get; set; } /// /// 更新用户标识 /// public long? UpdateUserID { get; set; } /// /// 更新时间 /// public DateTime? UpdateTime { get; set; } /// /// /// public EtaStandardConfigure Clone() { return (EtaStandardConfigure)this.MemberwiseClone(); } object ICloneable.Clone() { return this.MemberwiseClone(); } } }