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