52 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			C#
		
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| 
 | |
| namespace Model.CQMS
 | |
| {
 | |
|     public class InspectionManagement
 | |
|     {
 | |
| 		public string InspectionId { set; get; }
 | |
| 		public string ProjectId { set; get; }
 | |
| 		public string ProjectName { set; get; }
 | |
| 		public string UnitId { set; get; }
 | |
| 		public string UnitName { set; get; }
 | |
| 		public string CNProfessionalId { set; get; }
 | |
| 		public string CNProfessionalName { set; get; }
 | |
| 		public string InspectionCode { set; get; }
 | |
| 		public string UnitWorkId { set; get; }
 | |
| 		public string UnitWorkName { set; get; }
 | |
| 		public string Branch { set; get; }
 | |
| 		public string ControlPointType { set; get; }
 | |
| 		public string AcceptanceSite { set; get; }
 | |
| 		public string IsOnceQualified { set; get; }
 | |
| 		public string InspectionDate { set; get; }
 | |
| 		public string AttachUrl { set; get; }
 | |
| 		public string CheckDate { set; get; }
 | |
| 		public string CheckMan { set; get; }
 | |
| 		public string CheckManName { set; get; }
 | |
| 		public string UnqualifiedReason { set; get; }
 | |
| 		public string NoticeCode { set; get; }
 | |
| 		public string AcceptanceCheckMan { set; get; }
 | |
| 		public string ParentDivisionProjectId { set; get; }
 | |
| 		public string CompileMan { set; get; }
 | |
| 		public string CompileManName { set; get; }
 | |
| 		public string CompileDate { set; get; }
 | |
| 		public string FileType { set; get; }
 | |
| 		public string AttachUrl2 { set; get; }
 | |
| 		public string MainSendUnitId { set; get; }
 | |
| 		public string MainSendUnitName { set; get; }
 | |
| 		public string CCUnitIds { set; get; }
 | |
| 		public string CCUnitName { set; get; }
 | |
| 		public string PlanComplateDate { set; get; }
 | |
| 		public string AuditMan { set; get; }
 | |
| 		public string AuditManName { set; get; }
 | |
| 		public string Status { set; get; }
 | |
| 		public string CompileMan2 { set; get; }
 | |
| 
 | |
| 		public List<InspectionManagementDetail> inspectionManagementDetails { get; set; }
 | |
| 	}
 | |
| }
 |