From b2669d723125ba16e4c9bfeb7723616feee782c4 Mon Sep 17 00:00:00 2001 From: colin Date: Wed, 9 Oct 2024 14:55:32 +0800 Subject: [PATCH] =?UTF-8?q?feat(data-protected):=20=E6=9B=B4=E6=94=B9?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E4=BF=9D=E6=8A=A4=E9=94=99=E8=AF=AF=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DataProtectionManagementErrorCodes.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/aspnet-core/modules/data-protection/LINGYUN.Abp.DataProtectionManagement.Domain.Shared/LINGYUN/Abp/DataProtectionManagement/DataProtectionManagementErrorCodes.cs b/aspnet-core/modules/data-protection/LINGYUN.Abp.DataProtectionManagement.Domain.Shared/LINGYUN/Abp/DataProtectionManagement/DataProtectionManagementErrorCodes.cs index 21177a1ea..1f57aba4b 100644 --- a/aspnet-core/modules/data-protection/LINGYUN.Abp.DataProtectionManagement.Domain.Shared/LINGYUN/Abp/DataProtectionManagement/DataProtectionManagementErrorCodes.cs +++ b/aspnet-core/modules/data-protection/LINGYUN.Abp.DataProtectionManagement.Domain.Shared/LINGYUN/Abp/DataProtectionManagement/DataProtectionManagementErrorCodes.cs @@ -8,11 +8,11 @@ public static class DataProtectionManagementErrorCodes { public const string Prefix = Namespace + ":001"; /// - /// 已经存在相同的类型 + /// 已经存在名为 {Name} 的实体类型定义 /// public const string DuplicateTypeInfo = Prefix + "100"; /// - /// 已经存在相同的属性 + /// 实体类型已经存在名为 {Name} 的属性定义 /// public const string DuplicateProperty = Prefix + "200"; } @@ -21,7 +21,7 @@ public static class DataProtectionManagementErrorCodes { public const string Prefix = Namespace + ":002"; /// - /// 已经存在相同的实体数据访问规则 + /// 已为角色 {RoleName} 分配了实体 {Name} 的 {Operation} 访问规则! /// public const string DuplicateEntityRule = Prefix + "100"; } @@ -30,7 +30,7 @@ public static class DataProtectionManagementErrorCodes { public const string Prefix = Namespace + ":003"; /// - /// 已经存在相同的实体数据访问规则 + /// 已为组织机构 {OrgCode} 分配了实体 {Name} 的 {Operation} 访问规则! /// public const string DuplicateEntityRule = Prefix + "100"; }