using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
///
/// 中国五环月报信息项 --9、项目HSE检查统计
///
public class SeDinMonthReport9Item
{
///
/// ID
///
public string MonthReport9Id
{
get;
set;
}
///
/// 月报ID
///
public string MonthReportId
{
get;
set;
}
///
/// 日常巡检-月次
///
public int? DailyMonth
{
get;
set;
}
///
/// 日常巡检-年次
///
public int? DailyYear
{
get;
set;
}
///
/// 日常巡检-总累计
///
public int? DailyTotal
{
get;
set;
}
///
/// 周联合检查-月次
///
public int? WeekMonth
{
get;
set;
}
///
/// 周联合检查-年次
///
public int? WeekYear
{
get;
set;
}
///
/// 周联合检查-总累计
///
public int? WeekTotal
{
get;
set;
}
///
/// 专项检查-月次
///
public int? SpecialMonth
{
get;
set;
}
///
/// 专项检查-年次
///
public int? SpecialYear
{
get;
set;
}
///
/// 专项检查-总累计
///
public int? SpecialTotal
{
get;
set;
}
///
/// 月综合HSE检查-月次
///
public int? MonthlyMonth
{
get;
set;
}
///
/// 月综合HSE检查-年次
///
public int? MonthlyYear
{
get;
set;
}
///
/// 月综合HSE检查-总累计
///
public int? MonthlyTotal
{
get;
set;
}
///
/// 隐患整改单
///
public List SeDinMonthReport9ItemRectification
{
get;
set;
}
///
/// 专项检查
///
public List SeDinMonthReport9ItemSpecial
{
get;
set;
}
///
/// 停工令
///
public List SeDinMonthReport9ItemStoppage
{
get;
set;
}
}
}