sunpengfei
2025-08-21 1aeaabb680b44b8ef960c4471f2f2903cbfe4805
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace FlexJobApi.Core
{
    /// <summary>
    /// 角色接口数据权限
    /// </summary>
    public enum EnumRoleWebApiDataPower
    {
        /// <summary>
        /// 自定义
        /// </summary>
        Custom = 1,
        /// <summary>
        /// 查询个人创建数据
        /// </summary>
        Creator = 10,
        /// <summary>
        /// 查询当前部门数据
        /// </summary>
        CurrentDepartment = 20,
        /// <summary>
        /// 查询当前及下级部门数据
        /// </summary>
        NestingDepartment = 21,
        /// <summary>
        /// 查询当前企业所有数据
        /// </summary>
        CurrentEnterprise = 30,
        /// <summary>
        /// 查询所有
        /// </summary>
        All = 999
    }
}