using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Call_RecordSet:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Call_RecordSet { public T_Call_RecordSet() { } #region Model private int _f_rid; private string _f_telphone; private int? _f_type; private string _f_des; private DateTime? _f_createon; private int? _f_createby; /// /// /// public int F_Rid { set { _f_rid = value; } get { return _f_rid; } } /// /// /// public string F_Telphone { set { _f_telphone = value; } get { return _f_telphone; } } /// /// 1总是录音;2总不录音 /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// /// public string F_Des { set { _f_des = value; } get { return _f_des; } } /// /// /// public DateTime? F_CreateOn { set { _f_createon = value; } get { return _f_createon; } } /// /// /// public int? F_CreateBy { set { _f_createby = value; } get { return _f_createby; } } #endregion Model } }