using System; using System.Collections.Generic; namespace RMYY_CallCenter_Api.Model { /// /// T_Sys_Menu:实体类(属性说明自动提取数据库字段的描述信息) /// [Serializable] public partial class T_Sys_Menu { public T_Sys_Menu() { } #region Model private int _f_menuid; private int _f_parentid; private string _f_menucode; private string _f_menuname; private int? _f_type; private string _f_url; private string _f_icon; private string _f_action; private int? _f_sort; private string _f_remark; private int? _f_state; private string _f_createuser; private DateTime? _f_createtime; private int? _f_menutype; private string _f_workstate; /// /// 主键 /// public int F_MenuId { set { _f_menuid = value; } get { return _f_menuid; } } /// /// 父id /// public int F_ParentId { set { _f_parentid = value; } get { return _f_parentid; } } /// /// 编码 /// public string F_MenuCode { set { _f_menucode = value; } get { return _f_menucode; } } /// /// 名称 /// public string F_MenuName { set { _f_menuname = value; } get { return _f_menuname; } } /// /// 1模块2链接3按钮 /// public int? F_Type { set { _f_type = value; } get { return _f_type; } } /// /// 链接地址 /// public string F_Url { set { _f_url = value; } get { return _f_url; } } /// /// 图标 /// public string F_Icon { set { _f_icon = value; } get { return _f_icon; } } /// /// 方法 /// public string F_Action { set { _f_action = value; } get { return _f_action; } } /// /// 排序 /// public int? F_Sort { set { _f_sort = value; } get { return _f_sort; } } /// /// 备注 /// public string F_Remark { set { _f_remark = value; } get { return _f_remark; } } /// /// 0禁用1启用 /// public int? F_State { set { _f_state = value; } get { return _f_state; } } /// /// 创建人 /// public string F_CreateUser { set { _f_createuser = value; } get { return _f_createuser; } } /// /// 创建时间 /// public DateTime? F_CreateTime { set { _f_createtime = value; } get { return _f_createtime; } } /// /// 1框架页2无页面3弹出页(工单类型) /// public int? F_MenuType { set { _f_menutype = value; } get { return _f_menutype; } } public string F_WorkState { set { _f_workstate = value; } get { return _f_workstate; } } public List button { get; set; } public List children { get; set; } #endregion Model } }