using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ZXDT.CallCenter.Model
{
///
/// T_Sys_OperateLogs:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Sys_OperateLogs
{
public T_Sys_OperateLogs()
{ }
#region Model
private int _f_id;
private int? _f_optby;
private DateTime? _f_opton;
private string _f_optname;
private int? _f_moduleid;
private int? _f_functionid;
private int? _f_functionitemid;
private string _f_descript;
private int? _f_deletionstatecode;
private int? _f_state;
///
/// 自增ID
///
public int F_Id
{
set { _f_id = value; }
get { return _f_id; }
}
///
/// 操作人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_ModuleId
{
set { _f_moduleid = value; }
get { return _f_moduleid; }
}
///
/// 页面ID
///
public int? F_FunctionId
{
set { _f_functionid = value; }
get { return _f_functionid; }
}
///
/// 按钮ID
///
public int? F_FunctionItemId
{
set { _f_functionitemid = value; }
get { return _f_functionitemid; }
}
///
/// 操作描述
///
public string F_Descript
{
set { _f_descript = value; }
get { return _f_descript; }
}
///
///
///
public int? F_DeletionStateCode
{
set { _f_deletionstatecode = value; }
get { return _f_deletionstatecode; }
}
///
///
///
public int? F_State
{
set { _f_state = value; }
get { return _f_state; }
}
#endregion Model
}
}