This commit is contained in:
cjd
2025-11-04 21:09:16 +08:00
parent 8260e293c7
commit bb90a020dc
592 changed files with 61749 additions and 27 deletions

View File

@@ -0,0 +1,30 @@
namespace DouyinApi.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
}
}