using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
[Serializable]
public partial class T_Sys_Comprehensive
{
public T_Sys_Comprehensive()
{ }
#region Model
private int _f_id;
private int? _f_newscore;
private string _f_newscoreremarks;
private DateTime? _f_newscoretime;
private int? _f_supervisionscore;
private string _f_scoresupervision;
private DateTime? _f_supervisiontime;
private string _f_creatuser;
private DateTime? _f_creattime;
private int? _f_deprid;
///
///
///
public int F_ID
{
set { _f_id = value; }
get { return _f_id; }
}
///
///
///
public int? F_NewScore
{
set { _f_newscore = value; }
get { return _f_newscore; }
}
///
///
///
public string F_NewScoreRemarks
{
set { _f_newscoreremarks = value; }
get { return _f_newscoreremarks; }
}
///
///
///
public DateTime? F_NewScoreTime
{
set { _f_newscoretime = value; }
get { return _f_newscoretime; }
}
///
///
///
public int? F_SupervisionScore
{
set { _f_supervisionscore = value; }
get { return _f_supervisionscore; }
}
///
///
///
public string F_ScoreSupervision
{
set { _f_scoresupervision = value; }
get { return _f_scoresupervision; }
}
///
///
///
public DateTime? F_SupervisionTime
{
set { _f_supervisiontime = value; }
get { return _f_supervisiontime; }
}
///
///
///
public string F_CreatUser
{
set { _f_creatuser = value; }
get { return _f_creatuser; }
}
///
///
///
public DateTime? F_CreatTime
{
set { _f_creattime = value; }
get { return _f_creattime; }
}
///
///
///
public int? F_Deprid
{
set { _f_deprid = value; }
get { return _f_deprid; }
}
public int F_Score { set; get; }
public string F_ScoreRemarks { set; get; }
public DateTime? F_ScoreTime { set; get; }
///
/// 信息宣传
///
public float Information { set; get; }
public string InformationRemarks { set; get; }
public DateTime? InformationTime { set; get; }
///
/// 优秀案件
///
public float Excellent { set; get; }
public string ExcellentRemarks { set; get; }
public DateTime? ExcellentTime { set; get; }
///
/// 即办事项
///
public float Immediate { set; get; }
public string ImmediateRemarks { set; get; }
public DateTime? ImmediateTime { set; get; }
#endregion Model
}
}