90 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			4.0 KiB
		
	
	
	
		
			C#
		
	
	
	
| using System.Collections.Generic;
 | |
| 
 | |
| namespace Model
 | |
| {
 | |
|     public partial class CQMSData
 | |
|     {
 | |
|         public List<CqmsDataItem> CQMSDataItems
 | |
|         {
 | |
|             get;
 | |
|             set;
 | |
|         }
 | |
|     }
 | |
|     /// <summary>
 | |
|     /// CQMSDataItem
 | |
|     /// </summary>
 | |
|     public partial class CqmsDataItem
 | |
|     {
 | |
|         public int? ANum { get; set; }
 | |
|         public int? BNum { get; set; }
 | |
|         public int? BranchPersonNum { get; set; }
 | |
|         public int? CNum { get; set; }
 | |
|         public string CollCropCode { get; set; }
 | |
|         public int? CompanyPersonNum { get; set; }
 | |
|         public int? ConcealedWorksNum { get; set; }
 | |
|         public int? ConcealedWorksOKNum { get; set; }
 | |
|         public string ConcealedWorksRate { get; set; }
 | |
|         public string Id { get; set; }
 | |
|         public int? InspectionLotNum { get; set; }
 | |
|         public int? KeyProcessNum { get; set; }
 | |
|         public int? KeyProcessOKNum { get; set; }
 | |
|         public string KeyProcessRate { get; set; }
 | |
|         public int? MaterialInRecheckNum { get; set; }
 | |
|         public int? MaterialInRecheckOKNum { get; set; }
 | |
|         public string MaterialInRecheckRate { get; set; }
 | |
|         public int? OKNum { get; set; }
 | |
|         public int? ProblemCompletedNum { get; set; }
 | |
|         public int? ProblemNotCompletedNum { get; set; }
 | |
|         public int? ProblemNum { get; set; }
 | |
|         public string ProblemRate { get; set; }
 | |
|         public int? UnitCheckNum { get; set; }
 | |
|         public int? UnitCheckClosedNum { get; set; }
 | |
|         public int? UnitCheckNotClosedNum { get; set; }
 | |
|         public int? BranchCheckNum { get; set; }
 | |
|         public int? BranchCheckClosedNum { get; set; }
 | |
|         public int? BranchCheckNotClosedNum { get; set; }
 | |
|         public int? ProjectPersonNum { get; set; }
 | |
|         public int? ProjectSubPersonNum { get; set; }
 | |
|         public string ReportDate { get; set; }
 | |
|         public int? SingleProjectNum { get; set; }
 | |
|         public int? SNum { get; set; }
 | |
|         public int? SpecialProcessNum { get; set; }
 | |
|         public int? SpecialProcessOKNum { get; set; }
 | |
|         public string SpecialProcessRate { get; set; }
 | |
|         public int? SubdivisionalWorksNum { get; set; }
 | |
|         public int? SubProjectNum { get; set; }
 | |
|         public int? TechnicalDisclosePersonNum { get; set; }
 | |
|         public int? ComprehensiveConTechnologyDisclosureNum { get; set; }
 | |
|         public int? ComprehensiveConTechnologyDisclosurePersonNum { get; set; }
 | |
|         public int? ComprehensiveReviewDrawingsNum { get; set; }
 | |
|         public int? TrainPersonNum { get; set; }
 | |
|         public string UnitId { get; set; }
 | |
|         public int? UnitProjectNum { get; set; }
 | |
|         public int? UnitProjectOnesNum { get; set; }
 | |
|         public int? UnitProjectOnesOKNum { get; set; }
 | |
|         public string UnitProjectOnesRate { get; set; }
 | |
|         public int? UseNum { get; set; }
 | |
|         public int? EquipmentInspectionNum { get; set; }
 | |
|         public int? EquipmentInspectionQualifiedNum { get; set; }
 | |
|         public int? MachineInspectionNum { get; set; }
 | |
|         public int? MachineInspectionQualifiedNum { get; set; }
 | |
|         public int? PersonInspectionNum { get; set; }
 | |
|         public int? PersonInspectionQualifiedNum { get; set; }
 | |
|         public int? MaterialInspectionNum { get; set; }
 | |
|         public int? MaterialInspectionQualifiedNum { get; set; }
 | |
|         public int? ConstructSolutionNum { get; set; }
 | |
|         public int? ConstructSolutionProjectApproveNum { get; set; }
 | |
|         public int? ConstructSolutionUnitApproveNum { get; set; }
 | |
|         public int? SpecialEquipmentQualityAssuranceSystemNum { get; set; }
 | |
|         public int? DesignDetailsNum { get; set; }
 | |
|         public int? UnitProjectAcceptNum { get; set; }
 | |
|         public int? UnitProjectAcceptOKNum { get; set; }
 | |
|         public int? SubProjectAcceptNum { get; set; }
 | |
|         public int? SubProjectAcceptOKNum { get; set; }
 | |
|         public int? SubdivisionalWorksAcceptNum { get; set; }
 | |
|         public int? SubdivisionalWorksAcceptOKNum { get; set; }
 | |
|         public int? InspectionMachineNum { get; set; }
 | |
|         public int? InspectionMachineQualifiedNum { get; set; }
 | |
|     }
 | |
| }
 |