using System; using WMS.Attirubte; using System.ComponentModel; namespace WMS.Model.SystemManage { /// /// 角色功能权限 /// [Serializable] [TableClmAttribute(TableName = "t_base_functionrole")] public partial class FunctionRoleModel { #region Model private decimal _id; private string _fun_id; private string _fun_dictory; private string _role_id; private string _user_id; private string _menu_id; private string _menu_name; private Boolean _ischeck; /// /// 选择 /// [DisplayName("")] public Boolean IsCheckRec { get { return _ischeck; } set { _ischeck = value; } } /// /// ID /// [DisplayName("ID")] public decimal ID { set{ _id=value;} get{return _id;} } /// /// 功能编号 /// [DisplayName("功能编号")] public string FUN_ID { set{ _fun_id=value;} get{return _fun_id;} } /// /// 菜单功能 /// [DisplayName("菜单功能")] public string FUN_DICTORY { set { _fun_dictory = value; } get { return _fun_dictory; } } /// /// Role Name /// [DisplayName("Role Name")] public string ROLE_ID { set{ _role_id=value;} get{return _role_id;} } /// /// 用户编号 /// [DisplayName("用户编号")] public string USER_ID { set{ _user_id=value;} get{return _user_id;} } /// /// 菜单编号 /// [DisplayName("菜单编号")] public string MENU_ID { set{ _menu_id=value;} get{return _menu_id;} } /// /// 系统菜单 /// [DisplayName("系统菜单")] public string MENU_NAME { set { _menu_name = value; } get { return _menu_name; } } #endregion Model } }