You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
479 B
16 lines
479 B
using Volo.Abp.Reflection;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange.Application.Contracts.Iac.Mes.Permissions;
|
|
|
|
public class IacMesPermissions
|
|
{
|
|
public const string GroupName = "ExchangeData";
|
|
public const string CreateStr = "CreateAsync";
|
|
public const string UpdateStr = "Update";
|
|
public const string DeleteStr = "Delete";
|
|
|
|
public static string[] GetAll()
|
|
{
|
|
return ReflectionHelper.GetPublicConstantsRecursively(typeof(IacMesPermissions));
|
|
}
|
|
}
|
|
|