using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YTSoft.BaseCallCenter.Model
{
///
/// T_Sys_WebSet:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Sys_WebSet
{
public T_Sys_WebSet()
{ }
#region Model
private int _f_id;
private int _f_type;
private int? _f_userid;
private string _f_username;
private string _f_arrid;
private string _f_arrname;
private string _f_xml;
///
///
///
public int F_Id
{
set { _f_id = value; }
get { return _f_id; }
}
///
///
///
public int F_Type
{
set { _f_type = value; }
get { return _f_type; }
}
///
///
///
public int? F_UserId
{
set { _f_userid = value; }
get { return _f_userid; }
}
///
///
///
public string F_UserName
{
set { _f_username = value; }
get { return _f_username; }
}
///
///
///
public string F_ArrId
{
set { _f_arrid = value; }
get { return _f_arrid; }
}
///
///
///
public string F_ArrName
{
set { _f_arrname = value; }
get { return _f_arrname; }
}
///
///
///
public string F_XML
{
set { _f_xml = value; }
get { return _f_xml; }
}
#endregion Model
}
}