using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace CallCenterApi.Model
{
[Serializable]
public partial class T_Sys_OperationLog
{
public T_Sys_OperationLog()
{ }
#region Model
private int _f_id;
private int? _f_valueid;
private string _f_content;
private int? _f_type;
private string _f_createuser;
private DateTime? _f_createtime;
private int? _f_isdelete;
private string _f_ip;
///
///
///
public int F_ID
{
set { _f_id = value; }
get { return _f_id; }
}
///
/// 类型
///
public int? F_ValueID
{
set { _f_valueid = value; }
get { return _f_valueid; }
}
///
/// 内容
///
public string F_Content
{
set { _f_content = value; }
get { return _f_content; }
}
///
/// 类型1添加2编辑3删除4操作
///
public int? F_Type
{
set { _f_type = value; }
get { return _f_type; }
}
///
///
///
public string F_CreateUser
{
set { _f_createuser = value; }
get { return _f_createuser; }
}
///
///
///
public DateTime? F_CreateTime
{
set { _f_createtime = value; }
get { return _f_createtime; }
}
///
///
///
public int? F_IsDelete
{
set { _f_isdelete = value; }
get { return _f_isdelete; }
}
///
///
///
public string F_IP
{
set { _f_ip = value; }
get { return _f_ip; }
}
public int? F_TypeId { set; get; }
#endregion Model
}
}