using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ZXDT.CallCenter.Model
{
///
/// T_Call_PageField:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Call_PageField
{
public T_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;
///
///
///
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; }
}
#endregion Model
}
}