diff --git a/美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/Yi.Framework.TenantManagement.Application.Contracts.csproj b/美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/Yi.Framework.TenantManagement.Application.Contracts.csproj new file mode 100644 index 0000000..84eaea7 --- /dev/null +++ b/美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/Yi.Framework.TenantManagement.Application.Contracts.csproj @@ -0,0 +1,16 @@ + + + + net8.0 + enable + enable + + + + + + + + + + diff --git a/美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/YiFrameworkTenantManagementApplicationContractsModule.cs b/美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/YiFrameworkTenantManagementApplicationContractsModule.cs new file mode 100644 index 0000000..2ce5cbd --- /dev/null +++ b/美国版/Food Labeling Management Code/Yi.Abp.Net8/module/tenant-management/Yi.Framework.TenantManagement.Application.Contracts/YiFrameworkTenantManagementApplicationContractsModule.cs @@ -0,0 +1,13 @@ +using Volo.Abp.Modularity; +using Volo.Abp.TenantManagement; +using Yi.Framework.Ddd.Application.Contracts; + +namespace Yi.Framework.TenantManagement.Application.Contracts +{ + [DependsOn(typeof(AbpTenantManagementDomainSharedModule), + typeof(YiFrameworkDddApplicationContractsModule))] + public class YiFrameworkTenantManagementApplicationContractsModule:AbpModule + { + + } +}