JiShe.IOT.Admin/src/JiShe.ServicePro.Domain/ServiceProDomainModule.cs

25 lines
954 B
C#
Raw Normal View History

2025-05-27 14:02:24 +08:00
using JiShe.ServicePro.CodeManagement;
using JiShe.ServicePro.DynamicMenuManagement;
using JiShe.ServicePro.TemplateManagement;
namespace JiShe.ServicePro
{
[DependsOn(
typeof(ServiceProDomainSharedModule),
typeof(BasicManagementDomainModule),
typeof(NotificationManagementDomainModule),
typeof(DataDictionaryManagementDomainModule),
typeof(LanguageManagementDomainModule),
typeof(CodeManagementDomainModule),
typeof(TemplateManagementDomainModule),
typeof(DynamicMenuManagementDomainModule)
)]
public class ServiceProDomainModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpMultiTenancyOptions>(options => { options.IsEnabled = MultiTenancyConsts.IsEnabled; });
Configure<AbpAutoMapperOptions>(options => { options.AddMaps<ServiceProDomainModule>(); });
}
}
}