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.
17 lines
479 B
17 lines
479 B
2 years ago
|
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));
|
||
|
}
|
||
|
}
|