using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// 回访记录表
///
[Serializable]
public partial class T_Vis_TelRecords
{
public T_Vis_TelRecords()
{ }
#region Model
private int _f_trid;
private int _f_hfid;
private string _f_hftelphone;
private int? _f_hfstate;
private string _f_hfinfo;
private string _f_hfremark;
private int? _f_hfuserid;
private string _f_hfusercode;
private string _f_hfusername;
private DateTime? _f_hftime = DateTime.Now;
private int? _f_calluserid;
private string _f_callusername;
private DateTime? _f_calldate;
private bool _f_iscall;
private int? _f_callresid;
private string _f_callres;
private bool _f_iscallres;
///
/// 回访记录id
///
public int F_TRID
{
set { _f_trid = value; }
get { return _f_trid; }
}
///
/// 回访电话id
///
public int F_HFID
{
set { _f_hfid = value; }
get { return _f_hfid; }
}
///
/// 回访电话
///
public string F_HFTelphone
{
set { _f_hftelphone = value; }
get { return _f_hftelphone; }
}
///
/// 回访状态:0未回访,1已回访
///
public int? F_HFState
{
set { _f_hfstate = value; }
get { return _f_hfstate; }
}
///
/// 回访内容
///
public string F_HFInfo
{
set { _f_hfinfo = value; }
get { return _f_hfinfo; }
}
///
/// 回访备注
///
public string F_HFRemark
{
set { _f_hfremark = value; }
get { return _f_hfremark; }
}
///
/// 回访人ID
///
public int? F_HFUserId
{
set { _f_hfuserid = value; }
get { return _f_hfuserid; }
}
///
/// 回访人编号
///
public string F_HFUserCode
{
set { _f_hfusercode = value; }
get { return _f_hfusercode; }
}
///
/// 回访人
///
public string F_HFUserName
{
set { _f_hfusername = value; }
get { return _f_hfusername; }
}
///
/// 回访时间
///
public DateTime? F_HFTime
{
set { _f_hftime = value; }
get { return _f_hftime; }
}
///
/// 呼叫人员ID
///
public int? F_CallUserID
{
set { _f_calluserid = value; }
get { return _f_calluserid; }
}
///
/// 呼叫人员
///
public string F_CallUserName
{
set { _f_callusername = value; }
get { return _f_callusername; }
}
///
/// 呼叫时间
///
public DateTime? F_CallDate
{
set { _f_calldate = value; }
get { return _f_calldate; }
}
///
/// 是否呼叫:0未呼叫,1已呼叫
///
public bool F_ISCall
{
set { _f_iscall = value; }
get { return _f_iscall; }
}
///
/// 呼叫结果ID
///
public int? F_CallResID
{
set { _f_callresid = value; }
get { return _f_callresid; }
}
///
/// 呼叫结果
///
public string F_CallRes
{
set { _f_callres = value; }
get { return _f_callres; }
}
///
/// 是否接通:0未接通,1已接通
///
public bool F_ISCallRes
{
set { _f_iscallres = value; }
get { return _f_iscallres; }
}
#endregion Model
}
}