62 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			62 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System.Collections.Generic; | |||
|  | namespace Model | |||
|  | { | |||
|  |     public class SYHSEData | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         ///  SYHSE数据项集合 | |||
|  |         /// </summary> | |||
|  |         public List<SyhseDataItem> SYHSEDataItems | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |     } | |||
|  | 
 | |||
|  |     /// <summary> | |||
|  |     /// SYHSEDataItem | |||
|  |     /// </summary> | |||
|  |     public partial class SyhseDataItem | |||
|  |     { | |||
|  |         public int? BlindPlateClosedNum { get; set; } | |||
|  |         public int? BlindPlatePermitNum { get; set; } | |||
|  |         public int? ChargeInsurancePersonNum { get; set; } | |||
|  |         public string CollCropCode { get; set; } | |||
|  |         public int? DesignQuantity { get; set; } | |||
|  |         public int? GeneralClosedNum { get; set; } | |||
|  |         public int? GeneralNotClosedNum { get; set; } | |||
|  |         public string GeneralRate { get; set; } | |||
|  |         public int? GeneralRiskNum { get; set; } | |||
|  |         public int? GradedResponsiblePersonNum { get; set; } | |||
|  |         public int? GroundbreakingClosedNum { get; set; } | |||
|  |         public int? GroundbreakingPermitNum { get; set; } | |||
|  |         public int? HighClosedNum { get; set; } | |||
|  |         public int? HighPermitNum { get; set; } | |||
|  |         public int? HighRiskNum { get; set; } | |||
|  |         public int? HoistingClosedNum { get; set; } | |||
|  |         public int? HoistingPermitNum { get; set; } | |||
|  |         public int? HotWorkClosedNum { get; set; } | |||
|  |         public int? HotWorkPermitNum { get; set; } | |||
|  |         public string Id { get; set; } | |||
|  |         public int? IncomeComprehensiveEnergyConsumption { get; set; } | |||
|  |         public int? InterlockSettingValue { get; set; } | |||
|  |         public int? LostWorkinghours { get; set; } | |||
|  |         public int? LowRiskNum { get; set; } | |||
|  |         public int? MajorClosedNum { get; set; } | |||
|  |         public int? MajorNotClosedNum { get; set; } | |||
|  |         public string MajorRate { get; set; } | |||
|  |         public int? MediumRiskNum { get; set; } | |||
|  |         public int? NewWaterConsumption { get; set; } | |||
|  |         public int? OpenCircuitClosedNum { get; set; } | |||
|  |         public int? OpenCircuitPermitNum { get; set; } | |||
|  |         public string ReportDate { get; set; } | |||
|  |         public int? RunningCapacity { get; set; } | |||
|  |         public int? SafeWorkinghours { get; set; } | |||
|  |         public int? TemporaryElectricityClosedNum { get; set; } | |||
|  |         public int? TemporaryElectricityPermitNum { get; set; } | |||
|  |         public int? TotalEnergyConsumption { get; set; } | |||
|  |         public int? TotalWorkinghours { get; set; } | |||
|  |         public string UnitId { get; set; } | |||
|  |         public int? VideoSurveillanceNum { get; set; } | |||
|  |     } | |||
|  | } |