using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
    /// 
    /// 中国五环月报信息项 --3、项目HSE事故、事件统计
    /// 
    public class SeDinMonthReport3Item
    { 
        /// 
        /// ID
        /// 
        public string MonthReport3Id
        {
            get;
            set;
        }
        /// 
        /// 月报ID
        /// 
        public string MonthReportId
        {
            get;
            set;
        }
        /// 
        /// 排序
        /// 
        public int? SortIndex
        {
            get;
            set;
        }
        /// 
        /// 类型
        /// 
        public string BigType
        {
            get;
            set;
        }
        /// 
        /// 事故类型
        /// 
        public string AccidentType
        {
            get;
            set;
        }
        /// 
        /// 本月次数
        /// 
        public int? MonthTimes
        {
            get;
            set;
        }
        /// 
        /// 累计次数
        /// 
        public int? TotalTimes
        {
            get;
            set;
        }
        /// 
        /// 本月损失工时
        /// 
        public decimal? MonthLossTime
        {
            get;
            set;
        }
        /// 
        /// 累计损失工时
        /// 
        public decimal? TotalLossTime
        {
            get;
            set;
        }        
        /// 
        /// 本月经济损失
        /// 
        public decimal? MonthMoney
        {
            get;
            set;
        }
        /// 
        /// 累计经济损失
        /// 
        public decimal? TotalMoney
        {
            get;
            set;
        }
        /// 
        /// 本月人数
        /// 
        public int? MonthPersons
        {
            get;
            set;
        }
        /// 
        /// 累计人数
        /// 
        public int? TotalPersons
        {
            get;
            set;
        }
    }
}