2026-02-24 20:44:16 +00:00
|
|
|
using Volo.Abp.Reflection;
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.SqlQueryManager.Domain.Shared;
|
|
|
|
|
|
|
|
|
|
public static class SqlQueryManagerPermissions
|
|
|
|
|
{
|
|
|
|
|
public const string GroupName = "SqlQueryManager";
|
|
|
|
|
|
2026-03-02 18:31:49 +00:00
|
|
|
public static class SqlExecution
|
2026-02-24 20:44:16 +00:00
|
|
|
{
|
2026-03-02 18:31:49 +00:00
|
|
|
public const string Default = GroupName + ".SqlExecution";
|
2026-02-24 20:44:16 +00:00
|
|
|
public const string Execute = Default + ".Execute";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static string[] GetAll()
|
|
|
|
|
{
|
|
|
|
|
return ReflectionHelper.GetPublicConstantsRecursively(typeof(SqlQueryManagerPermissions));
|
|
|
|
|
}
|
|
|
|
|
}
|