using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class HSSE_HazardTemplate { public string HazardId { get; set; } public string HazardListTypeId { 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; } public string Remark { get; set; } public string State { get; set; } public string WorkStage { get; set; } } }