提交子公司客户化修改

This commit is contained in:
2022-12-26 14:34:56 +08:00
parent 5ac9cee30c
commit 3f114efa2f
215 changed files with 83912 additions and 1 deletions
+59
View File
@@ -0,0 +1,59 @@
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? ProjectPersonNum { 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? 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; }
}
}