xinjiang/SGGL/Model/CQMS/NCRStatisc.cs

81 lines
1.6 KiB
C#
Raw Permalink Normal View History

2024-11-19 09:45:27 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
public class NCRStatisc
{
private int num;
/// <summary>
/// 序号
/// </summary>
public int Num
{
get { return num; }
set { num = value; }
}
private string workName;
/// <summary>
/// 接收单位/专业
/// </summary>
public string WorkName
{
get { return workName; }
set { workName = value; }
}
private int checkNum;
/// <summary>
/// NCR总数
/// </summary>
public int CheckNum
{
get { return checkNum; }
set { checkNum = value; }
}
private int oKNum;
/// <summary>
/// 已完成
/// </summary>
public int OKNum
{
get { return oKNum; }
set { oKNum = value; }
}
private int notOKNum;
/// <summary>
/// 未完成
/// </summary>
public int NotOKNum
{
get { return notOKNum; }
set { notOKNum = value; }
}
private string oKRate;
/// <summary>
/// 当期一次合格率
/// </summary>
public string OKRate
{
get { return oKRate; }
set { oKRate = value; }
}
private string remark;
/// <summary>
/// 备注
/// </summary>
public string Remark
{
get { return remark; }
set { remark = value; }
}
}
}