129 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			129 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Model
 | |
| {
 | |
|     /// <summary>
 | |
|     /// 生态环保工作总结报告
 | |
|     /// </summary>
 | |
|     public class EPSummaryReport
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// 主键
 | |
|         /// </summary>
 | |
|         public string EPSummaryReportId
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 单位
 | |
|         /// </summary>
 | |
|         public string UnitId
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 年份
 | |
|         /// </summary>
 | |
|         public int? YearId
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// 
 | |
|         /// </summary>
 | |
|         public string ResponsiblePerson
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         public string ResponsiblePersonTel
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         public string ContactPerson
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         public string ContactPersonTel
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         public DateTime? ReportDate
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
| 
 | |
|         public string Description1
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description2
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description3
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description4
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description5
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description6
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description7
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description8
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         public string Description9
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|         /// <summary>
 | |
|         /// 季度
 | |
|         /// </summary>
 | |
|         public int? Quarter
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|     }
 | |
| }
 |