using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CallCenterApi.Model { /// /// T_Sys_OperateLogs:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_OperateLogs { public T_Sys_OperateLogs() { } #region Model private int _f_id; private string _f_optby; private string _f_optip; private DateTime? _f_opton; private string _f_optcode; private string _f_module; private string _f_opttables; private string _f_optid; private string _f_descript; /// /// /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 操作人工号 /// public string F_OptBy { set { _f_optby = value; } get { return _f_optby; } } /// /// 操作人IP /// public string F_OptIP { set { _f_optip = value; } get { return _f_optip; } } /// /// 操作时间 /// public DateTime? F_OptOn { set { _f_opton = value; } get { return _f_opton; } } /// /// 操作编号:add,edit,delete /// public string F_OptCode { set { _f_optcode = value; } get { return _f_optcode; } } /// /// 模块名称 /// public string F_Module { set { _f_module = value; } get { return _f_module; } } /// /// 操作表名 /// public string F_OptTables { set { _f_opttables = value; } get { return _f_opttables; } } /// /// 操作ID /// public string F_OptID { set { _f_optid = value; } get { return _f_optid; } } /// /// 操作描述 /// public string F_Descript { set { _f_descript = value; } get { return _f_descript; } } #endregion Model } /// /// 操作 /// public enum EnumOpt { /// /// 添加 /// add, /// /// 编辑 /// edit, /// /// 删除 /// delete, /// /// 批量删除 /// deletion, /// /// 导入 /// import, /// /// 导出 /// export } }