107 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			107 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | using System.Threading.Tasks; | |||
|  | 
 | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     /// <summary> | |||
|  |     /// 中央企业节能环保产业企业生产和服务业务情况报表 | |||
|  |     ///</summary> | |||
|  |     public class EnergyReportItem | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         ///   | |||
|  |         ///</summary> | |||
|  |         public string EnergyReportItemId { get; set; } | |||
|  |         /// <summary> | |||
|  |         ///   | |||
|  |         ///</summary> | |||
|  |         public string EnergyReportId { get; set; } | |||
|  |         /// <summary> | |||
|  |         ///   | |||
|  |         ///</summary> | |||
|  |         public string SortIndex { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 业务类别  | |||
|  |         ///</summary> | |||
|  |         public string BusinessCategory { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 生产能力-基期  | |||
|  |         ///</summary> | |||
|  |         public string Throughput_BasePeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 生产能力-上期  | |||
|  |         ///</summary> | |||
|  |         public string Throughput_LastPeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 生产能力-本期  | |||
|  |         ///</summary> | |||
|  |         public string Throughput_ThisPeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 生产能力-计量单位  | |||
|  |         ///</summary> | |||
|  |         public string Throughput_UnitOfMeasurement { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 产量-基期  | |||
|  |         ///</summary> | |||
|  |         public string Yield_BasePeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 产量-上期  | |||
|  |         ///</summary> | |||
|  |         public string Yield_LastPeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 产量-本期  | |||
|  |         ///</summary> | |||
|  |         public string Yield_ThisPeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 产量-计量单位  | |||
|  |         ///</summary> | |||
|  |         public string Yield_UnitOfMeasurement { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 产值-基期  | |||
|  |         ///</summary> | |||
|  |         public string OutputValue_BasePeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 产值-上年  | |||
|  |         ///</summary> | |||
|  |         public string OutputValue_LastYear { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 产值-本年  | |||
|  |         ///</summary> | |||
|  |         public string OutputValue_ThisYear { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 运营规模-基期  | |||
|  |         ///</summary> | |||
|  |         public string OperationScale_BasePeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 运营规模-上年  | |||
|  |         ///</summary> | |||
|  |         public string OperationScale_LastYear { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 运营规模-本年  | |||
|  |         ///</summary> | |||
|  |         public string OperationScale_ThisYear { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 运营规模-计量单位  | |||
|  |         ///</summary> | |||
|  |         public string OperationScale_UnitOfMeasurement { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 服务营业收入-基期  | |||
|  |         ///</summary> | |||
|  |         public string ServiceOperatingIncome_BasePeriod { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 服务营业收入-上年  | |||
|  |         ///</summary> | |||
|  |         public string ServiceOperatingIncome_LastYear { get; set; } | |||
|  |         /// <summary> | |||
|  |         /// 服务营业收入-本年  | |||
|  |         ///</summary> | |||
|  |         public string ServiceOperatingIncome_ThisYear { get; set; } | |||
|  |         public int? SortUnit { get; set; } | |||
|  |     } | |||
|  | } | |||
|  | 
 |