using System; namespace Model { public class ProjectSecurityRiskItem { //// /// 主键ID /// public string Id { get; set; } /// /// 来源单位Id /// public string SourceUnitId { get; set; } /// /// 项目ID /// public string ProjectId { get; set; } /// /// 责任单位-社会信用码 /// public string CollCropCode { get; set; } /// /// 数据日期 /// public DateTime? DataDate { get; set; } /// /// 附件路径 /// public string AttachFile { get; set; } /// /// 单位工程 /// public string WorkAreaName { get; set; } /// /// 工作阶段 /// public string WorkStageName { get; set; } /// /// 危险源类别 /// public string SupHazardListType { get; set; } /// /// 危险源项 /// public string HazardListType { get; set; } /// /// 危险源代码 /// public string Hazard { 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 int? RiskLevel { get; set; } /// /// 危险级别 /// public string RiskLevelName { get; set; } /// /// 控制措施 /// public string ControlMeasures { get; set; } } }