using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// T_Call_ZBDH:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Call_ZBDH
{
public T_Call_ZBDH()
{ }
#region Model
private int _f_zbid;
private string _f_zbdh;
private string _f_groupname;
private int? _f_groupid;
private string _f_remark;
private DateTime? _f_callintime;
private string _f_createby;
private DateTime? _f_createtime;
private int? _f_createid;
///
///
///
public int F_ZBID
{
set { _f_zbid = value; }
get { return _f_zbid; }
}
///
/// 值班电话
///
public string F_ZBDH
{
set { _f_zbdh = value; }
get { return _f_zbdh; }
}
///
/// 组别
///
public string F_GroupName
{
set { _f_groupname = value; }
get { return _f_groupname; }
}
///
/// 组别
///
public int? F_Groupid
{
set { _f_groupid = value; }
get { return _f_groupid; }
}
///
/// 备注
///
public string F_Remark
{
set { _f_remark = value; }
get { return _f_remark; }
}
///
/// 最后呼入时间
///
public DateTime? F_CallinTime
{
set { _f_callintime = value; }
get { return _f_callintime; }
}
///
///
///
public string F_CreateBy
{
set { _f_createby = value; }
get { return _f_createby; }
}
///
///
///
public DateTime? F_CreateTime
{
set { _f_createtime = value; }
get { return _f_createtime; }
}
///
///
///
public int? F_CreateID
{
set { _f_createid = value; }
get { return _f_createid; }
}
#endregion Model
}
}