namespace IStation.Entity
{
///
/// 证书
///
[SugarTable("certificate")]
public class Certificate : Yw.Entity.BaseEntity, Yw.Entity.ISorter, 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 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 (Certificate)this.MemberwiseClone();
}
object ICloneable.Clone()
{
return this.MemberwiseClone();
}
}
}