2024-12-19 16:07:07 +08:00
|
|
|
|
using Volo.Abp.Reflection;
|
|
|
|
|
|
|
|
|
|
|
|
namespace JiShe.CollectBus.Permissions;
|
|
|
|
|
|
|
|
|
|
|
|
public class CollectBusPermissions
|
|
|
|
|
|
{
|
|
|
|
|
|
public const string GroupName = "CollectBus";
|
|
|
|
|
|
|
|
|
|
|
|
public static string[] GetAll()
|
|
|
|
|
|
{
|
2025-06-03 11:58:17 +08:00
|
|
|
|
return Volo.Abp.Reflection.ReflectionHelper.GetPublicConstantsRecursively(typeof(CollectBusPermissions));
|
2024-12-19 16:07:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|