using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Call_Blacklist:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Call_Blacklist { public T_Call_Blacklist() { } #region Model private int _f_blackid; private string _f_callid; private string _f_telphone; private int? _f_blacktype; private DateTime? _f_settime; private DateTime? _f_removetime; private string _f_describe; private int? _f_userid; private int? _f_interceptnum = 0; private bool _f_isdelete = false; /// /// 黑名单id,自增 /// public int F_BlackId { set { _f_blackid = value; } get { return _f_blackid; } } /// /// 通话记录id /// public string F_CallId { set { _f_callid = value; } get { return _f_callid; } } /// /// 电话 /// public string F_TelPhone { set { _f_telphone = value; } get { return _f_telphone; } } /// /// 黑名单类型(0:暂时,1:永久,2:已取消) /// public int? F_BlackType { set { _f_blacktype = value; } get { return _f_blacktype; } } /// /// 设置时间 /// public DateTime? F_SetTime { set { _f_settime = value; } get { return _f_settime; } } /// /// 解除时间 /// public DateTime? F_RemoveTime { set { _f_removetime = value; } get { return _f_removetime; } } /// /// 说明 /// public string F_Describe { set { _f_describe = value; } get { return _f_describe; } } /// /// /// public int? F_UserId { set { _f_userid = value; } get { return _f_userid; } } /// /// 拦截次数 /// public int? F_InterceptNum { set { _f_interceptnum = value; } get { return _f_interceptnum; } } /// /// /// public bool F_IsDelete { set { _f_isdelete = value; } get { return _f_isdelete; } } #endregion Model } }