您的位置:首页 > 其它

一步一步建立我的MIS系统:权限Privileges.cs

2005-12-21 10:09 260 查看
namespace EwEAI.Data.IT
{
public enum PrivilegeType
{
PrivilegeNone,
GrantInsert = 1,
DenyInsert = 2,
GrantUpdate = 11,
DenyUpdate = 12,
GrantDelete = 21,
DenyDelete = 22,
GrantRun = 31,
DenyRun = 32,
GrantPrint = 41,
DenyPrint = 42,
GrantSelect = 91,
DenySelect = 92
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: