diff --git a/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Application.Contracts/Authorization/BasketsPermissions.cs b/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Application.Contracts/Authorization/BasketsPermissions.cs index 7af6e190..0fbd6b2b 100644 --- a/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Application.Contracts/Authorization/BasketsPermissions.cs +++ b/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Application.Contracts/Authorization/BasketsPermissions.cs @@ -4,7 +4,7 @@ namespace EasyAbp.EShop.Baskets.Authorization { public class BasketsPermissions { - public const string GroupName = "Baskets"; + public const string GroupName = "EasyAbp.EShop.Baskets"; public static string[] GetAll() { diff --git a/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Domain/Settings/BasketsSettings.cs b/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Domain/Settings/BasketsSettings.cs index 839a2a07..419d2700 100644 --- a/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Domain/Settings/BasketsSettings.cs +++ b/modules/EasyAbp.EShop.Baskets/src/EasyAbp.EShop.Baskets.Domain/Settings/BasketsSettings.cs @@ -2,7 +2,7 @@ { public static class BasketsSettings { - public const string GroupName = "Baskets"; + public const string GroupName = "EasyAbp.EShop.Baskets"; /* Add constants for setting names. Example: * public const string MySettingName = GroupName + ".MySettingName"; diff --git a/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application.Contracts/Authorization/OrdersPermissions.cs b/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application.Contracts/Authorization/OrdersPermissions.cs index ce6d1cc2..325d2131 100644 --- a/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application.Contracts/Authorization/OrdersPermissions.cs +++ b/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Application.Contracts/Authorization/OrdersPermissions.cs @@ -4,7 +4,7 @@ namespace EasyAbp.EShop.Orders.Authorization { public class OrdersPermissions { - public const string GroupName = "Orders"; + public const string GroupName = "EasyAbp.EShop.Orders"; public static string[] GetAll() { diff --git a/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain/Settings/OrdersSettings.cs b/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain/Settings/OrdersSettings.cs index f44f32e4..a37c170e 100644 --- a/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain/Settings/OrdersSettings.cs +++ b/modules/EasyAbp.EShop.Orders/src/EasyAbp.EShop.Orders.Domain/Settings/OrdersSettings.cs @@ -2,7 +2,7 @@ { public static class OrdersSettings { - public const string GroupName = "Orders"; + public const string GroupName = "EasyAbp.EShop.Orders"; /* Add constants for setting names. Example: * public const string MySettingName = GroupName + ".MySettingName"; diff --git a/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Application.Contracts/Authorization/WeChatPayPermissions.cs b/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Application.Contracts/Authorization/WeChatPayPermissions.cs index f5843a50..84031444 100644 --- a/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Application.Contracts/Authorization/WeChatPayPermissions.cs +++ b/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Application.Contracts/Authorization/WeChatPayPermissions.cs @@ -4,7 +4,7 @@ namespace EasyAbp.EShop.Payment.WeChatPay.Authorization { public class WeChatPayPermissions { - public const string GroupName = "WeChatPay"; + public const string GroupName = "EasyAbp.EShop.WeChatPay"; public static string[] GetAll() { diff --git a/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Domain/Settings/WeChatPaySettings.cs b/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Domain/Settings/WeChatPaySettings.cs index e4eb06df..decf60e9 100644 --- a/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Domain/Settings/WeChatPaySettings.cs +++ b/modules/EasyAbp.EShop.Payment.WeChatPay/src/EasyAbp.EShop.Payment.WeChatPay.Domain/Settings/WeChatPaySettings.cs @@ -2,7 +2,7 @@ { public static class WeChatPaySettings { - public const string GroupName = "WeChatPay"; + public const string GroupName = "EasyAbp.EShop.WeChatPay"; /* Add constants for setting names. Example: * public const string MySettingName = GroupName + ".MySettingName"; diff --git a/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Application.Contracts/Authorization/PaymentPermissions.cs b/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Application.Contracts/Authorization/PaymentPermissions.cs index ee7d54ea..85562d20 100644 --- a/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Application.Contracts/Authorization/PaymentPermissions.cs +++ b/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Application.Contracts/Authorization/PaymentPermissions.cs @@ -4,7 +4,7 @@ namespace EasyAbp.EShop.Payment.Authorization { public class PaymentPermissions { - public const string GroupName = "Payment"; + public const string GroupName = "EasyAbp.EShop.Payment"; public static string[] GetAll() { diff --git a/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Domain/Settings/PaymentSettings.cs b/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Domain/Settings/PaymentSettings.cs index 8f76eccd..354cae44 100644 --- a/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Domain/Settings/PaymentSettings.cs +++ b/modules/EasyAbp.EShop.Payment/src/EasyAbp.EShop.Payment.Domain/Settings/PaymentSettings.cs @@ -2,7 +2,7 @@ { public static class PaymentSettings { - public const string GroupName = "Payment"; + public const string GroupName = "EasyAbp.EShop.Payment"; /* Add constants for setting names. Example: * public const string MySettingName = GroupName + ".MySettingName"; diff --git a/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Application.Contracts/EasyAbp/EShop/Products/Authorization/ProductsPermissions.cs b/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Application.Contracts/EasyAbp/EShop/Products/Authorization/ProductsPermissions.cs index 3de7a553..40e99e29 100644 --- a/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Application.Contracts/EasyAbp/EShop/Products/Authorization/ProductsPermissions.cs +++ b/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Application.Contracts/EasyAbp/EShop/Products/Authorization/ProductsPermissions.cs @@ -4,7 +4,7 @@ namespace EasyAbp.EShop.Products.Authorization { public class ProductsPermissions { - public const string GroupName = "Products"; + public const string GroupName = "EasyAbp.EShop.Products"; public class ProductTypes { diff --git a/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Domain/EasyAbp/EShop/Products/Settings/ProductsSettings.cs b/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Domain/EasyAbp/EShop/Products/Settings/ProductsSettings.cs index 6f5b28a3..fbc8222a 100644 --- a/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Domain/EasyAbp/EShop/Products/Settings/ProductsSettings.cs +++ b/modules/EasyAbp.EShop.Products/src/EasyAbp.EShop.Products.Domain/EasyAbp/EShop/Products/Settings/ProductsSettings.cs @@ -2,7 +2,7 @@ { public static class ProductsSettings { - public const string GroupName = "Products"; + public const string GroupName = "EasyAbp.EShop.Products"; /* Add constants for setting names. Example: * public const string MySettingName = GroupName + ".MySettingName"; diff --git a/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Application.Contracts/EasyAbp/EShop/Stores/Authorization/StoresPermissions.cs b/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Application.Contracts/EasyAbp/EShop/Stores/Authorization/StoresPermissions.cs index 73adc1ea..1fce29e3 100644 --- a/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Application.Contracts/EasyAbp/EShop/Stores/Authorization/StoresPermissions.cs +++ b/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Application.Contracts/EasyAbp/EShop/Stores/Authorization/StoresPermissions.cs @@ -4,7 +4,7 @@ namespace EasyAbp.EShop.Stores.Authorization { public class StoresPermissions { - public const string GroupName = "Stores"; + public const string GroupName = "EasyAbp.EShop.Stores"; public static string[] GetAll() { diff --git a/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Domain/EasyAbp/EShop/Stores/Settings/StoresSettings.cs b/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Domain/EasyAbp/EShop/Stores/Settings/StoresSettings.cs index 3d04ed54..3721f6d8 100644 --- a/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Domain/EasyAbp/EShop/Stores/Settings/StoresSettings.cs +++ b/modules/EasyAbp.EShop.Stores/src/EasyAbp.EShop.Stores.Domain/EasyAbp/EShop/Stores/Settings/StoresSettings.cs @@ -2,7 +2,7 @@ { public static class StoresSettings { - public const string GroupName = "Stores"; + public const string GroupName = "EasyAbp.EShop.Stores"; /* Add constants for setting names. Example: * public const string MySettingName = GroupName + ".MySettingName"; diff --git a/samples/EasyMall/aspnet-core/src/EasyMall.Application.Contracts/Permissions/EasyMallPermissions.cs b/samples/EasyMall/aspnet-core/src/EasyMall.Application.Contracts/Permissions/EasyMallPermissions.cs index d6812dde..1f9e182e 100644 --- a/samples/EasyMall/aspnet-core/src/EasyMall.Application.Contracts/Permissions/EasyMallPermissions.cs +++ b/samples/EasyMall/aspnet-core/src/EasyMall.Application.Contracts/Permissions/EasyMallPermissions.cs @@ -2,7 +2,7 @@ { public static class EasyMallPermissions { - public const string GroupName = "EasyMall"; + public const string GroupName = "EasyAbp.EShop.EasyMall"; //Add your own permission names. Example: //public const string MyPermission1 = GroupName + ".MyPermission1";