Files
shgx_tz_mes_backend_sync/Infrastructure/GlobalConstant.cs

18 lines
331 B
C#
Raw Normal View History

2021-08-23 16:57:25 +08:00
using System;
using System.Collections.Generic;
using System.Text;
namespace Infrastructure
{
/// <summary>
/// 全局静态常量
/// </summary>
public class GlobalConstant
{
/// <summary>
/// 管理员权限
/// </summary>
public static string AdminPerm = "*:*:*";
}
}