85 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			85 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | using System.Threading.Tasks; | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     public class ArchitectureReportItem | |||
|  |     { | |||
|  |         /// <summary> | |||
|  |         /// Id | |||
|  |         /// </summary> | |||
|  |         public string ArchitectureReportItemId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 外键 | |||
|  |         /// </summary> | |||
|  |         public string ArchitectureReportId | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 指标名称 | |||
|  |         /// </summary> | |||
|  |         public string IndexName | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 计量单位 | |||
|  |         /// </summary> | |||
|  |         public string Unit | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 代码 | |||
|  |         /// </summary> | |||
|  |         public string SortIndex | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 基期数 | |||
|  |         /// </summary> | |||
|  |         public string BaseNumber | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 上年累计完成值 | |||
|  |         /// </summary> | |||
|  |         public string LastYearValue | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 本年累计完成值 | |||
|  |         /// </summary> | |||
|  |         public string ThisYearValue | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |         /// <summary> | |||
|  |         /// 与上年同期比较增减(%) | |||
|  |         /// </summary> | |||
|  |         public string Rate | |||
|  |         { | |||
|  |             get; | |||
|  |             set; | |||
|  |         } | |||
|  |     } | |||
|  | } | |||
|  |    |