hutongqing
2024-12-14 e7cf443b37f8f4d8a1bc4fe4cd6f058f39e5c7f5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Core.Enums
{
    public enum AuthorityScopeEnum
    {
        /// <summary>
        /// 无
        /// </summary>
        None = -1,
 
        /// <summary>
        /// 仅自己
        /// </summary>
        OnlySelf = 1,
 
        /// <summary>
        /// 当前角色
        /// </summary>
        CurrentRole = 2,
 
        /// <summary>
        /// 当前角色及以下
        /// </summary>
        CurrentRoleAndDown = 3,
 
        /// <summary>
        /// 自定义
        /// </summary>
        Custom = 4,
 
        /// <summary>
        /// 所有
        /// </summary>
        All = 10
    }
}