using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// 考核数据表 /// [Serializable] public partial class T_Data_Assessment { public T_Data_Assessment() { } #region Model private int _f_id; private int _f_deptid; private string _f_deptname; private int? _f_partentid; private string _f_batchno; private int? _f_cs_recivecount; private int? _f_cs_rectimelycount; private int? _f_jb_assgincount; private int? _f_jb_handlecount; private int? _f_jb_handleovercount; private int? _f_hf_visitcount; private int? _f_hf_satisfiedcount; private int? _f_hf_dissatisfiedcount; private int? _f_th_backcount; private int? _f_th_backtimelycount; private int? _f_zsk_actualcount; private int? _f_zsk_shouldcount; private int? _f_zsk_corrcount; private int? _f_gf_nonstandardcount; private int? _f_tb_bulletinordercount; private int? _f_tb_bulletincount; private decimal? _f_df_cscore; private decimal? _f_df_thcore; private decimal? _f_df_blcore; private decimal? _f_df_hfcore; private decimal? _f_df_zskcore; private decimal? _f_df_gfcore; private decimal? _f_df_tbcore; private decimal? _f_df_zj; private DateTime? _f_sslimittime; private DateTime? _f_createtime; /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 部门id /// public int F_DeptId { set { _f_deptid = value; } get { return _f_deptid; } } /// /// 部门名称 /// public string F_DeptName { set { _f_deptname = value; } get { return _f_deptname; } } /// /// 上级部门id(无值为0) /// public int? F_PartentId { set { _f_partentid = value; } get { return _f_partentid; } } /// /// 日期批次 /// public string F_BatchNo { set { _f_batchno = value; } get { return _f_batchno; } } /// /// 查收-查收数量 /// public int? F_CS_ReciveCount { set { _f_cs_recivecount = value; } get { return _f_cs_recivecount; } } /// /// 查收-及时(4个工作小时)查收数量 /// public int? F_CS_RecTimelyCount { set { _f_cs_rectimelycount = value; } get { return _f_cs_rectimelycount; } } /// /// 交办-派单次数 /// public int? F_JB_AssginCount { set { _f_jb_assgincount = value; } get { return _f_jb_assgincount; } } /// /// 交办-办理次数 /// public int? F_JB_HandleCount { set { _f_jb_handlecount = value; } get { return _f_jb_handlecount; } } /// /// 交办-办理超时次数 /// public int? F_JB_HandleOverCount { set { _f_jb_handleovercount = value; } get { return _f_jb_handleovercount; } } /// /// 回访-回访次数 /// public int? F_HF_VisitCount { set { _f_hf_visitcount = value; } get { return _f_hf_visitcount; } } /// /// 回访-满意次数 /// public int? F_HF_SatisfiedCount { set { _f_hf_satisfiedcount = value; } get { return _f_hf_satisfiedcount; } } /// /// 回访-不满意次数 /// public int? F_HF_DissatisfiedCount { set { _f_hf_dissatisfiedcount = value; } get { return _f_hf_dissatisfiedcount; } } /// /// 退回-退回数量 /// public int? F_TH_BackCount { set { _f_th_backcount = value; } get { return _f_th_backcount; } } /// /// 退回-派单4小时内退回数量 /// public int? F_TH_BackTimelyCount { set { _f_th_backtimelycount = value; } get { return _f_th_backtimelycount; } } /// /// 知识库-实际填报数 /// public int? F_ZSK_ActualCount { set { _f_zsk_actualcount = value; } get { return _f_zsk_actualcount; } } /// /// 知识库-应填报数 /// public int? F_ZSK_ShouldCount { set { _f_zsk_shouldcount = value; } get { return _f_zsk_shouldcount; } } /// /// 知识库-纠错条数 /// public int? F_ZSK_CorrCount { set { _f_zsk_corrcount = value; } get { return _f_zsk_corrcount; } } /// /// 不规范数量 /// public int? F_GF_NonstandardCount { set { _f_gf_nonstandardcount = value; } get { return _f_gf_nonstandardcount; } } /// /// 通报-通报工单数量 /// public int? F_TB_BulletinOrderCount { set { _f_tb_bulletinordercount = value; } get { return _f_tb_bulletinordercount; } } /// /// 通报-部门被通报次数 /// public int? F_TB_BulletinCount { set { _f_tb_bulletincount = value; } get { return _f_tb_bulletincount; } } /// /// 得分-查收要求(15) /// public decimal? F_DF_CSCore { set { _f_df_cscore = value; } get { return _f_df_cscore; } } /// /// 得分-工单退回要求(15) /// public decimal? F_DF_THCore { set { _f_df_thcore = value; } get { return _f_df_thcore; } } /// /// 得分-及时办结情况(20) /// public decimal? F_DF_BLCore { set { _f_df_blcore = value; } get { return _f_df_blcore; } } /// /// 得分-回访评价(20) /// public decimal? F_DF_HFCore { set { _f_df_hfcore = value; } get { return _f_df_hfcore; } } /// /// 得分-知识库更新 (20) /// public decimal? F_DF_ZSKCore { set { _f_df_zskcore = value; } get { return _f_df_zskcore; } } /// /// 得分-工单办理结果填写规范及要求(10) /// public decimal? F_DF_GFCore { set { _f_df_gfcore = value; } get { return _f_df_gfcore; } } /// /// 得分-通报分数 /// public decimal? F_DF_TBCore { set { _f_df_tbcore = value; } get { return _f_df_tbcore; } } /// /// 添加时间 /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// 得分-合计 /// public decimal? F_DF_ZJ { set { _f_df_zj = value; } get { return _f_df_zj; } } /// /// 申诉时限 /// public DateTime? F_SSLimittime { set { _f_sslimittime = value; } get { return _f_sslimittime; } } #endregion Model } }