using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Model
{
   public class NCRReportStatisc
   {
       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 oKNum;
       /// 
       /// 已完成
       /// 
       public int OKNum
       {
           get { return oKNum; }
           set { oKNum = value; }
       }
       private int checkNum;
       /// 
       /// NCR总数
       /// 
       public int CheckNum
       {
           get { return checkNum; }
           set { checkNum = value; }
       }
       private string oKRate;
       /// 
       /// 累计完成比例
       /// 
       public string OKRate
       {
           get { return oKRate; }
           set { oKRate = value; }
       }
   }
}