using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class CheckStatisc { private int num; /// /// 序号 /// public int Num { get { return num; } set { num = value; } } private string workName; /// /// 工作名称 /// public string WorkName { get { return workName; } set { workName = value; } } private int checkNum; /// /// 当期检查点数 /// public int CheckNum { get { return checkNum; } set { checkNum = value; } } private int totalCheckNum; /// /// 累计检查点数 /// public int TotalCheckNum { get { return totalCheckNum; } set { totalCheckNum = value; } } private int oKNum; /// /// 当期合格点数 /// public int OKNum { get { return oKNum; } set { oKNum = value; } } private int totalOKNum; /// /// 累计合格点数 /// public int TotalOKNum { get { return totalOKNum; } set { totalOKNum = value; } } private string oneOKRate; /// /// 当期一次合格率 /// public string OneOKRate { get { return oneOKRate; } set { oneOKRate = value; } } private string totalOneOKRate; /// /// 累计一次合格率 /// public string TotalOneOKRate { get { return totalOneOKRate; } set { totalOneOKRate = value; } } } }