87 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			87 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | ||
|  | using System.Collections.Generic; | ||
|  | 
 | ||
|  | namespace Model | ||
|  | { | ||
|  |     public class SuperviseCheckReportItem | ||
|  |     { | ||
|  |         //// <summary> | ||
|  |         /// 主键ID | ||
|  |         /// </summary> | ||
|  |         public string Id { get; set; } | ||
|  | 
 | ||
|  |         /// <summary> | ||
|  |         /// 来源单位Id | ||
|  |         /// </summary> | ||
|  |         public string SourceUnitId | ||
|  |         { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |          | ||
|  |         /// <summary> | ||
|  |         /// 项目ID | ||
|  |         /// </summary> | ||
|  |         public string ProjectId | ||
|  |         { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |          | ||
|  |         /// <summary> | ||
|  |         /// 责任单位-社会信用码 | ||
|  |         /// </summary> | ||
|  |         public string CollCropCode | ||
|  |         { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |          | ||
|  |         /// <summary> | ||
|  |         /// 数据日期 | ||
|  |         /// </summary> | ||
|  |         public DateTime? DataDate | ||
|  |         { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |         /// <summary> | ||
|  |         /// 附件路径 | ||
|  |         /// </summary> | ||
|  |         public string AttachFile | ||
|  |         { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |          | ||
|  |         /// <summary> | ||
|  |         /// 申请单位id | ||
|  |         /// </summary> | ||
|  |         public string UnitId | ||
|  |         { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |         /// <summary> | ||
|  |         /// 申请单位名称 | ||
|  |         /// </summary> | ||
|  |         public string UnitName | ||
|  |         { | ||
|  |             get; | ||
|  |             set; | ||
|  |         } | ||
|  |          | ||
|  |          | ||
|  | 
 | ||
|  |         public string SuperviseCheckReportCode { get; set; } | ||
|  |         public DateTime? CheckDate { get; set; } | ||
|  |         public string CheckTeam { get; set; } | ||
|  |         public string CheckType { get; set; } | ||
|  |         public string CheckTypeName { get; set; } | ||
|  |         public string CheckMainType { get; set; } | ||
|  |         public string CheckMainTypeName { get; set; } | ||
|  |         public string CheckUnitId { get; set; } | ||
|  |         public string CheckUnitName { get; set; } | ||
|  |         public List<SuperviseCheckReportDetailItem> SuperviseCheckReportDetail { get; set; } | ||
|  |     } | ||
|  | } |