using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// 登记记录表 /// [Serializable] public partial class T_Rec_RegRecords { public T_Rec_RegRecords() { } #region Model private int _f_id; private string _f_reccode; private int _f_cusid; private int? _f_type; private int? _f_direction; private string _f_complained; private string _f_content; private string _f_remark; private string _f_createby; private DateTime? _f_createon; private int? _f_isdelete; private string _f_deleteon; private DateTime? _f_deleteby; private string _f_tel; private string _f_callid; /// /// /// public int F_ID { set { _f_id = value; } get { return _f_id; } } public string F_CallId { set { _f_callid = value; } get { return _f_callid; } } public string F_Tel { set { _f_tel = value; } get { return _f_tel; } } /// /// 登记编号 /// public string F_RecCode { set { _f_reccode = value; } get { return _f_reccode; } } /// /// 档案id /// public int F_CusID { set { _f_cusid = value; } get { return _f_cusid; } } /// /// 登记类型 /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// 方向:0来电,1去电 /// public int? F_Direction { set { _f_direction = value; } get { return _f_direction; } } /// /// 被投诉单位 /// public string F_Complained { set { _f_complained = value; } get { return _f_complained; } } /// /// 登记内容/投诉事项 /// public string F_Content { set { _f_content = value; } get { return _f_content; } } /// /// 备注 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// /// public string F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } /// /// /// public DateTime? F_CreateOn { set { _f_createon = value; } get { return _f_createon; } } /// /// /// public int? F_IsDelete { set { _f_isdelete = value; } get { return _f_isdelete; } } /// /// /// public string F_DeleteOn { set { _f_deleteon = value; } get { return _f_deleteon; } } /// /// /// public DateTime? F_DeleteBy { set { _f_deleteby = value; } get { return _f_deleteby; } } #endregion Model } }