⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sys_rolestable.cs

📁 其主要的功能就是,进行后台管理模块整合. 1)其可以支持多个应用,多个模块的权限管理. 2)支持Access和MsSql200/2005. 3)采用角色来进行权限的授权,每个用户可以属于多个角色
💻 CS
字号:
/************************************************************************************
 *      Copyright (C) 2008 supesoft.com,All Rights Reserved						    *
 *      File:																		*
 *				sys_RolesTable.cs                               		        	*
 *      Description:																*
 *				 角色实体类                 	           						    *
 *      Author:																		*
 *				Lzppcc														        *
 *				Lzppcc@hotmail.com													*
 *				http://www.supesoft.com												*
 *      Finish DateTime:															*
 *				2007年8月6日														*
 *      History:																	*
 ***********************************************************************************/
using System;
using System.Collections.Generic;
using System.Text;

namespace FrameWork.Components
{
    /// <summary>
    /// 角色实体类
    /// </summary>
    public class sys_RolesTable
    {

        #region "Private Variables"
        private string _DB_Option_Action_;  // 操作方法 Insert:增加 Update:修改 Delete:删除 
        private int _RoleID = 0;  // 角色ID自动ID
        private string _R_RoleName;  // 角色名称
        private string _R_Description;  // 角色介绍
        #endregion

        #region "Public Variables"
        /// <summary>
        /// 操作方法 Insert:增加 Update:修改 Delete:删除 
        /// </summary>
        public string DB_Option_Action_
        {
            set { this._DB_Option_Action_ = value; }
            get { return this._DB_Option_Action_; }
        }

        /// <summary>
        /// 角色ID自动ID
        /// </summary>
        public int RoleID
        {
            set { this._RoleID = value; }
            get { return this._RoleID; }
        }

        /// <summary>
        /// 角色名称
        /// </summary>
        public string R_RoleName
        {
            set { this._R_RoleName = value; }
            get { return this._R_RoleName; }
        }

        /// <summary>
        /// 角色介绍
        /// </summary>
        public string R_Description
        {
            set { this._R_Description = value; }
            get { return this._R_Description; }
        }

        #endregion
	
	
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -