using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YTSoft.BaseCallCenter.Model
{
///
/// T_Sys_CallOptLogs:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Sys_CallOptLogs
{
public T_Sys_CallOptLogs()
{ }
#region Model
private int _f_id;
private int? _f_optby;
private DateTime? _f_opton;
private string _f_optname;
private int? _f_type;
private string _f_name;
private string _f_descript;
private int? _f_state;
///
///
///
public int F_Id
{
set { _f_id = value; }
get { return _f_id; }
}
///
///
///
public int? F_OptBy
{
set { _f_optby = value; }
get { return _f_optby; }
}
///
///
///
public DateTime? F_OptOn
{
set { _f_opton = value; }
get { return _f_opton; }
}
///
///
///
public string F_OptName
{
set { _f_optname = value; }
get { return _f_optname; }
}
///
///
///
public int? F_Type
{
set { _f_type = value; }
get { return _f_type; }
}
///
///
///
public string F_Name
{
set { _f_name = value; }
get { return _f_name; }
}
///
///
///
public string F_Descript
{
set { _f_descript = value; }
get { return _f_descript; }
}
///
///
///
public int? F_State
{
set { _f_state = value; }
get { return _f_state; }
}
#endregion Model
}
}