using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
    /// 
    /// 危险源辨识评价明细项
    /// 
    public class HazardListSelectedItem
    {
        /// 
        /// 主键
        /// 
        public string HazardId
        {
            get;
            set;
        }
        /// 
        /// 工作阶段
        /// 
        public string WorkStageName
        {
            get;
            set;
        }
        /// 
        /// 危险类别
        /// 
        public string SupHazardListTypeName
        {
            get;
            set;
        }
        /// 
        /// 危险源项
        /// 
        public string HazardListTypeName
        {
            get;
            set;
        }
        /// 
        /// 危险源代码
        /// 
        public string HazardCode
        {
            get;
            set;
        }
        /// 
        /// 危险因素明细
        /// 
        public string HazardItems
        {
            get;
            set;
        }
        /// 
        /// 缺陷类型
        /// 
        public string DefectsType
        {
            get;
            set;
        }
        /// 
        /// 可能导致的事故
        /// 
        public string MayLeadAccidents
        {
            get;
            set;
        }
        /// 
        /// 辅助方法
        /// 
        public string HelperMethod
        {
            get;
            set;
        }
        /// 
        /// 作业条件危险性评价(L)
        /// 
        public decimal? HazardJudge_L
        {
            get;
            set;
        }
        /// 
        /// 作业条件危险性评价(E)
        /// 
        public decimal? HazardJudge_E
        {
            get;
            set;
        }
        /// 
        /// 作业条件危险性评价(C)
        /// 
        public decimal? HazardJudge_C
        {
            get;
            set;
        }
        /// 
        /// 作业条件危险性评价(D)
        /// 
        public decimal? HazardJudge_D
        {
            get;
            set;
        }
        /// 
        /// 危险等级
        /// 
        public string HazardLevel
        {
            get;
            set;
        }
        /// 
        /// 控制措施
        /// 
        public string ControlMeasures
        {
            get;
            set;
        }
    }
}