2022-09-25 19:56:14 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Yi.Framework.Common.Const
|
|
|
|
|
|
{
|
|
|
|
|
|
public class SystemConst
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string Admin = "cc";
|
|
|
|
|
|
public const string AdminRolesCode = "admin";
|
|
|
|
|
|
public const string AdminPermissionCode = "*:*:*";
|
2022-09-27 16:22:34 +08:00
|
|
|
|
public const string PermissionClaim = "permission";
|
2023-01-05 19:21:48 +08:00
|
|
|
|
public const string UserName = "userName";
|
|
|
|
|
|
public const string DeptId = "deptId";
|
|
|
|
|
|
public const string TenantId = "tenantId";
|
2022-09-25 19:56:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|