推送数据

This commit is contained in:
2023-01-30 14:14:20 +08:00
parent 354f0ef6fe
commit 5c4b481651
49 changed files with 3905 additions and 289 deletions
@@ -0,0 +1,69 @@
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;}
}
}
@@ -0,0 +1,98 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_AccidentCauseReportItem
{
public string AccidentCauseReportId { get; set; }
public string AccidentCauseReportItemId { get; set; }
public string AccidentType { get; set; }
public System.Nullable<int> Death1 { get; set; }
public System.Nullable<int> Death10 { get; set; }
public System.Nullable<int> Death11 { get; set; }
public System.Nullable<int> Death2 { get; set; }
public System.Nullable<int> Death3 { get; set; }
public System.Nullable<int> Death4 { get; set; }
public System.Nullable<int> Death5 { get; set; }
public System.Nullable<int> Death6 { get; set; }
public System.Nullable<int> Death7 { get; set; }
public System.Nullable<int> Death8 { get; set; }
public System.Nullable<int> Death9 { get; set; }
public System.Nullable<int> Injuries1 { get; set; }
public System.Nullable<int> Injuries10 { get; set; }
public System.Nullable<int> Injuries11 { get; set; }
public System.Nullable<int> Injuries2 { get; set; }
public System.Nullable<int> Injuries3 { get; set; }
public System.Nullable<int> Injuries4 { get; set; }
public System.Nullable<int> Injuries5 { get; set; }
public System.Nullable<int> Injuries6 { get; set; }
public System.Nullable<int> Injuries7 { get; set; }
public System.Nullable<int> Injuries8 { get; set; }
public System.Nullable<int> Injuries9 { get; set; }
public System.Nullable<int> MinorInjuries1 { get; set; }
public System.Nullable<int> MinorInjuries10 { get; set; }
public System.Nullable<int> MinorInjuries11 { get; set; }
public System.Nullable<int> MinorInjuries2 { get; set; }
public System.Nullable<int> MinorInjuries3 { get; set; }
public System.Nullable<int> MinorInjuries4 { get; set; }
public System.Nullable<int> MinorInjuries5 { get; set; }
public System.Nullable<int> MinorInjuries6 { get; set; }
public System.Nullable<int> MinorInjuries7 { get; set; }
public System.Nullable<int> MinorInjuries8 { get; set; }
public System.Nullable<int> MinorInjuries9 { get; set; }
public System.Nullable<int> TotalDeath { get; set; }
public System.Nullable<int> TotalInjuries { get; set; }
public System.Nullable<int> TotalMinorInjuries { get; set; }
}
}
@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_DrillConductedQuarterlyReport
{
public string CompileMan { get; set; }
public string DrillConductedQuarterlyReportId { get; set; }
public System.Nullable<int> Quarter { get; set; }
public System.Nullable<System.DateTime> ReportDate { get; set; }
public string UnitId { get; set; }
public System.Nullable<int> YearId { get; set; }
}
}
@@ -0,0 +1,54 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_DrillConductedQuarterlyReportItem
{
public System.Nullable<int> BasicConductCount{get;set;}
public System.Nullable<decimal> BasicInvestment{get;set;}
public System.Nullable<int> BasicPeopleCount{get;set;}
public System.Nullable<int> CPDesktop{get;set;}
public System.Nullable<int> CPScene{get;set;}
public System.Nullable<int> ComprehensivePractice{get;set;}
public string DrillConductedQuarterlyReportId{get;set;}
public string DrillConductedQuarterlyReportItemId{get;set;}
public System.Nullable<int> HQConductCount{get;set;}
public System.Nullable<decimal> HQInvestment{get;set;}
public System.Nullable<int> HQPeopleCount{get;set;}
public string IndustryType{get;set;}
public System.Nullable<int> SDDesktop{get;set;}
public System.Nullable<int> SDScene{get;set;}
public System.Nullable<int> SortIndex{get;set;}
public System.Nullable<int> SpecialDrill{get;set;}
public System.Nullable<int> TotalConductCount{get;set;}
public System.Nullable<decimal> TotalInvestment{get;set;}
public System.Nullable<int> TotalPeopleCount{get;set;}
}
}
@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_DrillPlanHalfYearReport
{
public System.Nullable<System.DateTime> CompileDate{get;set;}
public string CompileMan{get;set;}
public string DrillPlanHalfYearReportId{get;set;}
public System.Nullable<int> HalfYearId{get;set;}
public string Telephone{get;set;}
public string UnitId{get;set;}
public System.Nullable<int> YearId{get;set;}
}
}
@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_DrillPlanHalfYearReportItem
{
public string AccidentScene{get;set;}
public string DrillPlanDate{get;set;}
public string DrillPlanHalfYearReportId{get;set;}
public string DrillPlanHalfYearReportItemId{get;set;}
public string DrillPlanName{get;set;}
public string ExerciseWay{get;set;}
public string OrganizationUnit{get;set;}
public System.Nullable<int> SortIndex{get;set;}
}
}
@@ -0,0 +1,49 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_MillionsMonthlyReport
{
public System.Nullable<decimal> AccidentMortality { get; set; }
public System.Nullable<decimal> DeathAccidentFrequency { get; set; }
public string DutyPerson { get; set; }
public System.Nullable<System.DateTime> FillingDate{ get; set; }
public string FillingMan{ get; set; }
public System.Nullable<decimal> LostTimeInjuryRate{ get; set; }
public System.Nullable<decimal> LostTimeRate{ get; set; }
public string MillionsMonthlyReportId{ get; set; }
public System.Nullable<int> Month{ get; set; }
public System.Nullable<decimal> RecordableIncidentRate{ get; set; }
public string UnitId{ get; set; }
public System.Nullable<int> Year{ get; set; }
}
}
@@ -0,0 +1,112 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_MillionsMonthlyReportItem
{
public string Affiliation{get;set;}
public System.Nullable<int> AttemptedEventNum{get;set;}
public System.Nullable<int> ContractorNum{get;set;}
public System.Nullable<int> EquipmentNum{get;set;}
public System.Nullable<int> ExplosionNum{get;set;}
public System.Nullable<int> FireNum{get;set;}
public System.Nullable<int> FirstAidDressingsNum{get;set;}
public System.Nullable<int> LossDayNum{get;set;}
public System.Nullable<int> MedicalTreatmentLossHour{get;set;}
public System.Nullable<int> MedicalTreatmentPersonNum{get;set;}
public string MillionsMonthlyReportId{get;set;}
public string MillionsMonthlyReportItemId{get;set;}
public System.Nullable<int> MinorAccidentLossHour{get;set;}
public System.Nullable<int> MinorAccidentNum{get;set;}
public System.Nullable<int> MinorAccidentPersonNum{get;set;}
public string Name{get;set;}
public System.Nullable<int> OtherAccidentLossHour{get;set;}
public System.Nullable<int> OtherAccidentNum{get;set;}
public System.Nullable<int> OtherAccidentPersonNum{get;set;}
public System.Nullable<int> OtherNum{get;set;}
public System.Nullable<int> PostPersonNum{get;set;}
public System.Nullable<int> QualityNum{get;set;}
public System.Nullable<int> RestrictedWorkLossHour{get;set;}
public System.Nullable<int> RestrictedWorkPersonNum{get;set;}
public System.Nullable<int> SeriousInjuriesLossHour{get;set;}
public System.Nullable<int> SeriousInjuriesNum{get;set;}
public System.Nullable<int> SeriousInjuriesPersonNum{get;set;}
public System.Nullable<int> SnapPersonNum{get;set;}
public System.Nullable<int> SortIndex{get;set;}
public System.Nullable<int> SumPersonNum{get;set;}
public System.Nullable<decimal> TotalWorkNum{get;set;}
public System.Nullable<int> TrafficNum{get;set;}
}
}
@@ -0,0 +1,208 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.HSSE
{
public class Information_SafetyQuarterlyReport
{
public System.Nullable<decimal> AccidentFrequency{get;set;}
public string AccidentFrequencyRemark{get;set;}
public System.Nullable<decimal> BillionsOutputMortality{get;set;}
public string BillionsOutputMortalityRemark{get;set;}
public System.Nullable<int> ChemicalAreaProjectCount{get;set;}
public string ChemicalAreaProjectCountRemark{get;set;}
public string CompileMan{get;set;}
public System.Nullable<decimal> ConstructionRevenue{get;set;}
public string ConstructionRevenueRemark{get;set;}
public System.Nullable<int> CorporateDirectorEdu{get;set;}
public string CorporateDirectorEduRemark{get;set;}
public System.Nullable<decimal> EducationTrainIn{get;set;}
public string EducationTrainInRemark{get;set;}
public System.Nullable<int> EquipmentAccident{get;set;}
public string EquipmentAccidentRemark{get;set;}
public System.Nullable<System.DateTime> FillingDate{get;set;}
public System.Nullable<int> FireAccident{get;set;}
public string FireAccidentRemark{get;set;}
public System.Nullable<int> FullTimeEdu{get;set;}
public string FullTimeEduRemark{get;set;}
public System.Nullable<int> FullTimeMan{get;set;}
public string FullTimeManAttachUrl{get;set;}
public System.Collections.Generic.List<byte[]> FullTimeManAttachUrlFileContext{get;set;}
public string FullTimeManRemark{get;set;}
public System.Nullable<int> HarmfulMediumCoverCount{get;set;}
public string HarmfulMediumCoverCountRemark{get;set;}
public System.Nullable<decimal> HarmfulMediumCoverRate{get;set;}
public string HarmfulMediumCoverRateRemark{get;set;}
public System.Nullable<int> KeyEquipmentReportCount{get;set;}
public string KeyEquipmentReportCountRemark{get;set;}
public System.Nullable<int> KeyEquipmentTotal{get;set;}
public string KeyEquipmentTotalRemark{get;set;}
public System.Nullable<decimal> LaboAndHealthIn{get;set;}
public string LaborAndHealthInRemark{get;set;}
public System.Nullable<decimal> MainBusinessIncome{get;set;}
public string MainBusinessIncomeRemark{get;set;}
public System.Nullable<int> MajorEquipAccident{get;set;}
public string MajorEquipAccidentRemark{get;set;}
public System.Nullable<int> MajorFireAccident{get;set;}
public string MajorFireAccidentRemark{get;set;}
public System.Nullable<int> PMMan{get;set;}
public string PMManAttachUrl{get;set;}
public System.Collections.Generic.List<byte[]> PMManAttachUrlFileContext{get;set;}
public string PMManRemark{get;set;}
public System.Nullable<int> PoisoningAndInjuries{get;set;}
public string PoisoningAndInjuriesRemark{get;set;}
public System.Nullable<decimal> ProductionInput{get;set;}
public string ProductionInputRemark{get;set;}
public System.Nullable<int> ProductionSafetyInTotal{get;set;}
public string ProductionSafetyInTotalRemark{get;set;}
public System.Nullable<decimal> ProjectCostRate{get;set;}
public string ProjectCostRateRemark{get;set;}
public System.Nullable<int> ProjectLeaderEdu{get;set;}
public string ProjectLeaderEduRemark{get;set;}
public System.Nullable<decimal> ProtectionInput{get;set;}
public string ProtectionInputRemark{get;set;}
public System.Nullable<int> Quarters{get;set;}
public string Remarks{get;set;}
public System.Nullable<decimal> Revenue{get;set;}
public string RevenueRemark{get;set;}
public string SafetyQuarterlyReportId{get;set;}
public System.Nullable<int> SeriousInjuryAccident{get;set;}
public string SeriousInjuryAccidentRemark{get;set;}
public System.Nullable<decimal> TechnologyProgressIn{get;set;}
public string TechnologyProgressInRemark{get;set;}
public System.Nullable<decimal> ThreeKidsEduRate{get;set;}
public string ThreeKidsEduRateRemark{get;set;}
public System.Nullable<int> TotalInWorkHours{get;set;}
public string TotalInWorkHoursRemark{get;set;}
public System.Nullable<int> TotalOutWorkHours{get;set;}
public string TotalOutWorkHoursRemark{get;set;}
public string UnitId{get;set;}
public System.Nullable<decimal> UnitTimeIncome{get;set;}
public string UnitTimeIncomeRemark{get;set;}
public System.Nullable<decimal> UplinReportRate{get;set;}
public string UplinReportRateRemark{get;set;}
public System.Nullable<decimal> WorkHoursAccuracy{get;set;}
public string WorkHoursAccuracyRemark{get;set;}
public System.Nullable<decimal> WorkHoursLossRate{get;set;}
public string WorkHoursLossRateRemark{get;set;}
public System.Nullable<int> YearId{get;set;}
}
}