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