using System;
namespace Model
{
    public class ConstructionEquipmentOutput:BaseEntities
    {
        /// 
        /// 设备
        /// 
        public string SpecialEquipmentName { get; set; }
        /// 
        /// 类型
        /// 
        public string EQType { get; set; }
        /// 
        /// 规格型号
        /// 
        public string SizeModel { get; set; }
        /// 
        /// 进场自检情况
        /// 
        public string OwnerCheck { get; set; }
        /// 
        /// 设备合格证号
        /// 
        public string CertificateNum { get; set; }
        public DateTime? CompileDate { get; set; }
        /// 
        /// 是否使用
        /// 
        public bool ? IsUsed { get; set; }
     
    }
}