using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CallCenterApi.Model
{
///
/// T_Sys_TelTitleData:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Sys_TelTitleData
{
public T_Sys_TelTitleData()
{ }
#region Model
private int _f_id;
private string _f_titlename;
private string _f_keyphonenum;
private int? _f_defphonenumlen;
private string _f_wcode;
///
///
///
public int F_Id
{
set { _f_id = value; }
get { return _f_id; }
}
///
///
///
public string F_TitleName
{
set { _f_titlename = value; }
get { return _f_titlename; }
}
///
///
///
public string F_KeyPhoneNum
{
set { _f_keyphonenum = value; }
get { return _f_keyphonenum; }
}
///
///
///
public int? F_DefPhoneNumLen
{
set { _f_defphonenumlen = value; }
get { return _f_defphonenumlen; }
}
///
///
///
public string F_WCode
{
set { _f_wcode = value; }
get { return _f_wcode; }
}
#endregion Model
}
}