75 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			75 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | using System.Threading.Tasks; | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     public class EnergyReport | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         /// Id | |||
|  |         /// </summary> | |||
|  |         public string EnergyReportId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 单位Id | |||
|  |         /// </summary> | |||
|  |         public string UnitId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 年份 | |||
|  |         /// </summary> | |||
|  |         public int? Year | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 季度 | |||
|  |         /// </summary> | |||
|  |         public int? Quarters | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 填报人 | |||
|  |         /// </summary> | |||
|  |         public string FillingMan | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 填报日期 | |||
|  |         /// </summary> | |||
|  |         public DateTime? FillingDate | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  | 
 | |||
|  |         /// <summary> | |||
|  |         /// 负责人 | |||
|  |         /// </summary> | |||
|  |         public string DutyPerson | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |     } | |||
|  | } |