JiShe.IOT.Admin/src/JiShe.IoT.Domain/IoTDomainModule.cs

31 lines
1.2 KiB
C#
Raw Normal View History

using JiShe.ServicePro.CTWingManagement;
2025-06-05 11:49:13 +08:00
using JiShe.ServicePro.DeviceManagement;
2025-05-27 14:02:24 +08:00
using JiShe.ServicePro.DynamicMenuManagement;
2025-05-27 22:53:46 +08:00
using JiShe.ServicePro.FileManagement;
2025-06-04 17:09:21 +08:00
using JiShe.ServicePro.IoTDBManagement;
2025-05-27 14:02:24 +08:00
using JiShe.ServicePro.TemplateManagement;
2025-05-27 14:27:50 +08:00
namespace JiShe.IoT
2025-05-27 14:02:24 +08:00
{
[DependsOn(
2025-05-27 14:27:50 +08:00
typeof(IoTDomainSharedModule),
2025-05-27 14:02:24 +08:00
typeof(BasicManagementDomainModule),
typeof(NotificationManagementDomainModule),
typeof(DataDictionaryManagementDomainModule),
typeof(LanguageManagementDomainModule),
typeof(TemplateManagementDomainModule),
2025-05-27 22:53:46 +08:00
typeof(FileManagementDomainModule),
2025-06-04 17:09:21 +08:00
typeof(IoTDBManagementDomainModule),
2025-06-05 11:49:13 +08:00
typeof(DynamicMenuManagementDomainModule),
typeof(CTWingManagementDomainModule),
2025-06-05 11:49:13 +08:00
typeof(DeviceManagementDomainModule)
2025-05-27 14:02:24 +08:00
)]
2025-05-27 14:27:50 +08:00
public class IoTDomainModule : AbpModule
2025-05-27 14:02:24 +08:00
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpMultiTenancyOptions>(options => { options.IsEnabled = MultiTenancyConsts.IsEnabled; });
2025-05-27 14:27:50 +08:00
Configure<AbpAutoMapperOptions>(options => { options.AddMaps<IoTDomainModule>(); });
2025-05-27 14:02:24 +08:00
}
}
}