namespace IStation.Application { /// /// /// public class CertificateDto { /// /// /// public CertificateDto() { } /// /// /// public CertificateDto(Model.Certificate rhs) { this.ID = rhs.ID; this.AirpSiteName = rhs.AirpSiteName; this.BuilderName = rhs.BuilderName; this.DesignerName = rhs.DesignerName; this.UserName = rhs.UserName; this.CertificateNO = rhs.CertificateNO; this.EtaLevel = rhs.EtaLevel; this.IssuanceTime = rhs.IssuanceTime; this.MainEquipmentModels = rhs.MainEquipmentModels; this.TestingName = rhs.TestingName; this.IssuingName = rhs.IssuingName; this.SortCode = rhs.SortCode; this.Description = rhs.Description; } /// /// id /// public long ID { get; set; } /// /// 空压站名称 /// public string AirpSiteName { get; set; } /// /// 空压站建设单位 /// public string BuilderName { get; set; } /// /// 空压站设计单位 /// public string DesignerName { get; set; } /// /// 空压站所属单位 /// public string UserName { get; set; } /// /// 证书编号 /// public string CertificateNO { get; set; } /// /// 能效等级 /// public string EtaLevel { get; set; } /// /// 认定时间 /// public DateTime IssuanceTime { get; set; } /// /// 主要设备型号 /// public string MainEquipmentModels { get; set; } /// /// 检测单位 /// public string TestingName { get; set; } /// /// 发证单位 /// public string IssuingName { get; set; } /// /// 排序码 /// public int SortCode { get; set; } /// /// 说明 /// public string Description { get; set; } } }