using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YTSoft.BaseCallCenter.Model
{
///
/// T_Sys_FunctionLogs:实体类(属性说明自动提取数据库字段的描述信息)
///
[Serializable]
public partial class T_Sys_FunctionLogs
{
public T_Sys_FunctionLogs()
{ }
#region Model
private int _f_id;
private string _f_loginname;
private int? _f_loginid;
private string _f_result;
private string _f_loginip;
private string _f_hostname;
private DateTime? _f_logindate;
private string _f_remark;
// private int? _f_state;
//private DateTime? _f_loginoutdate;
private string _F_BizName;
private int? _F_BizId;
private string _F_sqlString;
private string _F_Type;
///
///
///
public int F_Id
{
set { _f_id = value; }
get { return _f_id; }
}
///
/// 操作人员
///
public string F_LoginName
{
set { _f_loginname = value; }
get { return _f_loginname; }
}
///
/// 操作人员id
///
public int? F_LoginId
{
set { _f_loginid = value; }
get { return _f_loginid; }
}
///
/// 操作结果
///
public string F_Result
{
set { _f_result = value; }
get { return _f_result; }
}
///
///
///
public string F_LoginIP
{
set { _f_loginip = value; }
get { return _f_loginip; }
}
///
///
///
public string F_Hostname
{
set { _f_hostname = value; }
get { return _f_hostname; }
}
///
/// 操作时间
///
public DateTime? F_LoginDate
{
set { _f_logindate = value; }
get { return _f_logindate; }
}
///
/// 操作备注
///
public string F_Remark
{
set { _f_remark = value; }
get { return _f_remark; }
}
///
/// 操作表单
///
public string F_BizName
{
set { _F_BizName = value; }
get { return _F_BizName; }
}
///
/// 操作表单Id
///
public int? F_BizId
{
set { _F_BizId = value; }
get { return _F_BizId; }
}
///
/// 查询sql
///
public string F_sqlString
{
set { _F_sqlString = value; }
get { return _F_sqlString; }
}
///
/// 操作类型
///
public string F_Type
{
set { _F_Type = value; }
get { return _F_Type; }
}
#endregion Model
}
}