using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CallCenterApi.Model { /// /// vw_CTI_TaskPager:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class vw_CTI_TaskPager { public vw_CTI_TaskPager() { } #region Model private long _taskid; private string _taskname; private int? _tasktype; private int? _trunkgroupid; private string _callernum; private int? _calltype; private string _exinfo; private int? _maxtrunkcount; private decimal? _intensitycoefficient; private string _itemtablename; private int? _state; private DateTime? _addtime; private int? _y_psort; private long? _y_tkmodelid; private int? _y_sxh; private int? _y_fpcount; private int? _y_yjcount; private int? _y_hccount; private int? _y_hscount; private int? _y_htcount; private int? _y_hmcount; private int? _y_okcount; private int? _y_rfcount; private int? _y_conscount; private int? _y_invlcount; private int? _y_noanswercount; private int? _y_shutdowncount; private string _f_title; /// /// /// public long TaskID { set { _taskid = value; } get { return _taskid; } } /// /// /// public string TaskName { set { _taskname = value; } get { return _taskname; } } /// /// 计划类型: 点击外呼=1; 预测外呼=2; /// 默认为1 /// public int? TaskType { set { _tasktype = value; } get { return _tasktype; } } /// /// /// public int? TrunkGroupID { set { _trunkgroupid = value; } get { return _trunkgroupid; } } /// /// /// public string CallerNum { set { _callernum = value; } get { return _callernum; } } /// /// /// public int? CallType { set { _calltype = value; } get { return _calltype; } } /// /// /// public string ExInfo { set { _exinfo = value; } get { return _exinfo; } } /// /// /// public int? MaxTrunkCount { set { _maxtrunkcount = value; } get { return _maxtrunkcount; } } /// /// /// public decimal? IntensityCoefficient { set { _intensitycoefficient = value; } get { return _intensitycoefficient; } } /// /// /// public string ItemTableName { set { _itemtablename = value; } get { return _itemtablename; } } /// /// /// public int? State { set { _state = value; } get { return _state; } } /// /// /// public DateTime? AddTime { set { _addtime = value; } get { return _addtime; } } /// /// /// public int? y_PSort { set { _y_psort = value; } get { return _y_psort; } } /// /// /// public long? y_TkModelId { set { _y_tkmodelid = value; } get { return _y_tkmodelid; } } /// /// /// public int? y_SXH { set { _y_sxh = value; } get { return _y_sxh; } } /// /// /// public int? y_FPCount { set { _y_fpcount = value; } get { return _y_fpcount; } } /// /// /// public int? y_YJCount { set { _y_yjcount = value; } get { return _y_yjcount; } } /// /// /// public int? y_HCCount { set { _y_hccount = value; } get { return _y_hccount; } } /// /// /// public int? y_HSCount { set { _y_hscount = value; } get { return _y_hscount; } } /// /// /// public int? y_HTCount { set { _y_htcount = value; } get { return _y_htcount; } } /// /// /// public int? y_HMCount { set { _y_hmcount = value; } get { return _y_hmcount; } } /// /// /// public int? y_OkCount { set { _y_okcount = value; } get { return _y_okcount; } } /// /// /// public int? y_RFCount { set { _y_rfcount = value; } get { return _y_rfcount; } } /// /// /// public int? y_ConsCount { set { _y_conscount = value; } get { return _y_conscount; } } /// /// /// public int? y_InvlCount { set { _y_invlcount = value; } get { return _y_invlcount; } } /// /// /// public int? y_NoAnswerCount { set { _y_noanswercount = value; } get { return _y_noanswercount; } } /// /// /// public int? y_ShutDownCount { set { _y_shutdowncount = value; } get { return _y_shutdowncount; } } /// /// /// public string F_Title { set { _f_title = value; } get { return _f_title; } } #endregion Model } }