using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YTSoft.BaseCallCenter.Model { /// /// T_Sys_ModuleFunctionsOpt:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_ModuleFunctionsOpt { public T_Sys_ModuleFunctionsOpt() { } #region Model private int _f_id; private int _f_functionid; private string _f_functioncode; private string _f_optname; private string _f_optcode; private string _f_remark; private int? _f_controlid; private string _f_controlcode; /// /// 功能操作ID /// public int F_Id { set { _f_id = value; } get { return _f_id; } } /// /// 功能页面Id /// public int F_FunctionId { set { _f_functionid = value; } get { return _f_functionid; } } /// /// 功能页面代码 /// public string F_FunctionCode { set { _f_functioncode = value; } get { return _f_functioncode; } } /// /// 操作名称 /// public string F_OptName { set { _f_optname = value; } get { return _f_optname; } } /// /// 操作代码 /// public string F_OptCode { set { _f_optcode = value; } get { return _f_optcode; } } /// /// 操作描述 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// /// public int? F_ControlId { set { _f_controlid = value; } get { return _f_controlid; } } /// /// 控件代码 /// public string F_ControlCode { set { _f_controlcode = value; } get { return _f_controlcode; } } #endregion Model } }