You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Tiobon.Web.Core/Tiobon.Core.Model/CustomEnums/AuthorityScopeEnum.cs

30 lines
630 B

namespace Tiobon.Core.Model
{
public enum AuthorityScopeEnum
{
/// <summary>
/// 无任何权限
/// </summary>
NONE = -1,
/// <summary>
/// 自定义权限
/// </summary>
Custom = 1,
/// <summary>
/// 本部门
/// </summary>
MyDepart = 2,
/// <summary>
/// 本部门及以下
/// </summary>
MyDepartAndDown = 3,
/// <summary>
/// 仅自己
/// </summary>
OnlySelf = 4,
/// <summary>
/// 所有
/// </summary>
ALL = 9
}
}