namespace Model
{
public class HazardItemOutput
{
///
/// 主键
///
public string HazardSelectedItemId { 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 RiskLevelName { get; set; }
}
}