using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class HSSE_HazardTemplate { public string HazardCode { get; set; } public string HazardSortCode { get; set; } /// /// 危险因素 /// public string HazardFactor { get; set; } /// /// 导致原因 /// public string LeadResult { get; set; } /// /// 可能导致的事故 /// public string EnableAccident { get; set; } /// /// 辅助方法 /// public string AssistWay { 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 int? HazardGrade { get; set; } /// /// 控制措施 /// public string ControlMeasure { get; set; } public string Remark { get; set; } public string State { get; set; } public string WorkStage { get; set; } } }