using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YTSoft.BaseCallCenter.Model
{
///
/// vw_Call_PageField:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class vw_Call_PageField
{
public vw_Call_PageField()
{ }
#region Model
private int _f_id;
private int? _f_taskid;
private int? _f_feildid;
private string _f_name;
private string _f_dbfieldlname;
private int? _f_sort;
private string _f_dbtypename;
private int? _f_length;
///
///
///
public int F_Id
{
set { _f_id = value; }
get { return _f_id; }
}
///
///
///
public int? F_TaskId
{
set { _f_taskid = value; }
get { return _f_taskid; }
}
///
///
///
public int? F_FeildId
{
set { _f_feildid = value; }
get { return _f_feildid; }
}
///
///
///
public string F_Name
{
set { _f_name = value; }
get { return _f_name; }
}
///
///
///
public string F_DBFieldlName
{
set { _f_dbfieldlname = value; }
get { return _f_dbfieldlname; }
}
///
///
///
public int? F_Sort
{
set { _f_sort = value; }
get { return _f_sort; }
}
///
///
///
public string F_DBTypeName
{
set { _f_dbtypename = value; }
get { return _f_dbtypename; }
}
///
///
///
public int? F_Length
{
set { _f_length = value; }
get { return _f_length; }
}
#endregion Model
}
}