using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
///
/// 月报C(五环月报)项目现场HSE人工日统计情况
///
public class MonthReportCHSEDay
{
///
/// 本月连续安全工作天数
///
public int MonthHSEDay
{
get;
set;
}
///
/// 累计连续安全工作天数
///
public int SumHSEDay
{
get;
set;
}
///
/// 本月HSE人工日
///
public int MonthHSEWorkDay
{
get;
set;
}
///
/// 年度累计HSE人工日
///
public int YearHSEWorkDay
{
get;
set;
}
///
/// 总累计HSE人工日
///
public int SumHSEWorkDay
{
get;
set;
}
///
/// 本月安全人工时(五环)
///
public int HseManhours
{
get;
set;
}
///
/// 本月安全人工时(分包商)
///
public int SubcontractManHours
{
get;
set;
}
///
/// 累计安全人工时
///
public int TotalHseManhours
{
get;
set;
}
}
}