using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace XYFDRQ.Model { /// /// T_Sys_ModuleFunctions:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_ModuleFunctions { public T_Sys_ModuleFunctions() { } #region Model private int _f_functionid; private string _f_functioncode; private int _f_parentid = 0; private string _f_parentcode; private string _f_name; private int _f_sort = 0; private int _f_layer = 0; private int _f_stateflag = 1; private int _f_type = 0; private string _f_opturl; private string _f_remark; private bool? _f_sysflag = false; private string _f_imgurl; private int? _f_moduleid = 0; private string _f_modulecode; /// /// 模块功能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; } } /// /// 父节点Id /// public int F_ParentId { set { _f_parentid = value; } get { return _f_parentid; } } /// /// /// public string F_ParentCode { set { _f_parentcode = value; } get { return _f_parentcode; } } /// /// 功能名称 /// public string F_Name { set { _f_name = value; } get { return _f_name; } } /// /// 本节点顺序号(如:1、2、3) /// public int F_Sort { set { _f_sort = value; } get { return _f_sort; } } /// /// 本节点级次(1级、2级等) /// public int F_Layer { set { _f_layer = value; } get { return _f_layer; } } /// /// 功能状态-(0:不可以用;1:可用) /// public int F_StateFlag { set { _f_stateflag = value; } get { return _f_stateflag; } } /// /// 节点标志-(1:节点;0:功能) /// public int F_Type { set { _f_type = value; } get { return _f_type; } } /// /// 功能地址 /// public string F_OptUrl { set { _f_opturl = value; } get { return _f_opturl; } } /// /// 功能说明 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// 条件标志(0系统本身1系统外部) /// public bool? F_SysFlag { set { _f_sysflag = value; } get { return _f_sysflag; } } /// /// 图标路径 /// public string F_ImgUrl { set { _f_imgurl = value; } get { return _f_imgurl; } } /// /// 功能模块Id /// public int? F_ModuleId { set { _f_moduleid = value; } get { return _f_moduleid; } } /// /// 模块代码 /// public string F_ModuleCode { set { _f_modulecode = value; } get { return _f_modulecode; } } #endregion Model } }