2023-10-26

This commit is contained in:
2023-10-26 19:48:06 +08:00
parent 5fb9c49964
commit a2acdd4259
6 changed files with 355 additions and 101 deletions
@@ -0,0 +1,48 @@
namespace Model
{
public class CQMSConstructSolutionStatisc
{
private int num;
/// <summary>
/// 序号
/// </summary>
public int Num
{
get { return num; }
set { num = value; }
}
private string unitName;
/// <summary>
/// 接收单位
/// </summary>
public string UnitName
{
get { return unitName; }
set { unitName = value; }
}
private int checkNum;
/// <summary>
/// 审批完成数
/// </summary>
public int CheckNum
{
get { return checkNum; }
set { checkNum = value; }
}
private int allNum;
/// <summary>
/// 已完成
/// </summary>
public int AllNum
{
get { return allNum; }
set { allNum = value; }
}
}
}
+1
View File
@@ -170,6 +170,7 @@
<Compile Include="CostControlDetailItem.cs" />
<Compile Include="CQMS\CheckItem.cs" />
<Compile Include="CQMS\CheckStatisc.cs" />
<Compile Include="CQMS\CQMSConstructSolutionStatisc.cs" />
<Compile Include="CQMS\FileCabinetItem.cs" />
<Compile Include="CQMS\InspectionManagementStatistics.cs" />
<Compile Include="CQMS\NCRReportStatisc.cs" />