ChengDa_English/SGGL/Model/HSSE/Information_AccidentCauseRe...

70 lines
1.7 KiB
C#
Raw Permalink Normal View History

2023-01-30 14:14:20 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_AccidentCauseReport
{
public string AccidentCauseReportCode{get;set;}
public string AccidentCauseReportId{get;set;}
public string AuditPerson{get;set;}
public System.Nullable<int> AverageManHours{get;set;}
public System.Nullable<decimal> AverageTotalHours{get;set;}
public System.Nullable<int> DeathAccident{get;set;}
public System.Nullable<int> DeathToll{get;set;}
public System.Nullable<int> DirectLoss{get;set;}
public string FillCompanyPersonCharge{get;set;}
public System.Nullable<System.DateTime> FillingDate{get;set;}
public System.Nullable<int> IndirectLosses{get;set;}
public System.Nullable<int> InjuredAccident{get;set;}
public System.Nullable<int> InjuredToll{get;set;}
public System.Nullable<int> KnockOffTotal{get;set;}
public System.Nullable<int> LastMonthLossHoursTotal{get;set;}
public System.Nullable<int> MinorWoundAccident{get;set;}
public System.Nullable<int> MinorWoundToll{get;set;}
public System.Nullable<int> Month{get;set;}
public string TabPeople{get;set;}
public System.Nullable<int> TotalLoss{get;set;}
public System.Nullable<int> TotalLossMan{get;set;}
public System.Nullable<int> TotalLossTime{get;set;}
public string UnitId{get;set;}
public System.Nullable<int> Year{get;set;}
}
}