using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Call_CallRecordsLD:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Call_CallRecordsLD { public T_Call_CallRecordsLD() { } #region Model private int _f_callrldid; private int? _f_callrecordsid; private bool _f_islisten; private bool _f_isdownload; private int? _f_optid; private string _f_optby; private DateTime? _f_optdate; /// /// 标识列,自动增长 /// public int F_CallRLDID { set { _f_callrldid = value; } get { return _f_callrldid; } } /// /// 通话记录ID /// public int? F_CallRecordsID { set { _f_callrecordsid = value; } get { return _f_callrecordsid; } } /// /// 是否试听 /// public bool F_IsListen { set { _f_islisten = value; } get { return _f_islisten; } } /// /// 是否下载 /// public bool F_IsDownload { set { _f_isdownload = value; } get { return _f_isdownload; } } /// /// 操作人ID /// public int? F_OptID { set { _f_optid = value; } get { return _f_optid; } } /// /// 操作人 /// public string F_OptBy { set { _f_optby = value; } get { return _f_optby; } } /// /// 操作时间 /// public DateTime? F_OptDate { set { _f_optdate = value; } get { return _f_optdate; } } #endregion Model } }