一步一步建立我的MIS系統:權限Privileges.cs


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
    }
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章