diff --git a/src/JiShe.IoT.Application.Contracts/IoTApplicationContractsModule.cs b/src/JiShe.IoT.Application.Contracts/IoTApplicationContractsModule.cs index ae3a1fd..eafccda 100644 --- a/src/JiShe.IoT.Application.Contracts/IoTApplicationContractsModule.cs +++ b/src/JiShe.IoT.Application.Contracts/IoTApplicationContractsModule.cs @@ -3,6 +3,7 @@ using JiShe.ServicePro.DeviceManagement; using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.IoTDBManagement; +using JiShe.ServicePro.OneNETManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT @@ -18,7 +19,8 @@ namespace JiShe.IoT typeof(FileManagementApplicationContractsModule), typeof(IoTDBManagementApplicationContractsModule), typeof(DynamicMenuManagementApplicationContractsModule), - typeof(CTWingManagementApplicationContractsModule), + typeof(CTWingManagementApplicationContractsModule), + typeof(OneNETManagementApplicationContractsModule), typeof(DeviceManagementApplicationContractsModule) )] public class IoTApplicationContractsModule : AbpModule diff --git a/src/JiShe.IoT.Application/IoTApplicationModule.cs b/src/JiShe.IoT.Application/IoTApplicationModule.cs index 8163254..36fe466 100644 --- a/src/JiShe.IoT.Application/IoTApplicationModule.cs +++ b/src/JiShe.IoT.Application/IoTApplicationModule.cs @@ -7,6 +7,7 @@ using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.FreeRedisProvider; using JiShe.ServicePro.FreeSqlProvider; using JiShe.ServicePro.IoTDBManagement; +using JiShe.ServicePro.OneNETManagement; using JiShe.ServicePro.TemplateManagement; using Microsoft.Extensions.DependencyInjection; @@ -26,6 +27,7 @@ namespace JiShe.IoT typeof(ServiceProFreeRedisProviderModule), typeof(ServiceProFreeSqlProviderModule), typeof(CTWingManagementApplicationModule), + typeof(OneNETManagementApplicationModule), typeof(DeviceManagementApplicationModule) )] public class IoTApplicationModule : AbpModule diff --git a/src/JiShe.IoT.Domain.Shared/IoTDomainSharedModule.cs b/src/JiShe.IoT.Domain.Shared/IoTDomainSharedModule.cs index 05b67c7..f7b5464 100644 --- a/src/JiShe.IoT.Domain.Shared/IoTDomainSharedModule.cs +++ b/src/JiShe.IoT.Domain.Shared/IoTDomainSharedModule.cs @@ -4,6 +4,7 @@ using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.FreeSqlProvider; using JiShe.ServicePro.IoTDBManagement; +using JiShe.ServicePro.OneNETManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT @@ -19,6 +20,7 @@ namespace JiShe.IoT typeof(IoTDBManagementDomainSharedModule), typeof(ServiceProFreeSqlProviderModule), typeof(CTWingManagementDomainSharedModule), + typeof(OneNETManagementDomainSharedModule), typeof(ServiceProCoreModule), typeof(DeviceManagementDomainSharedModule) )] diff --git a/src/JiShe.IoT.Domain/IoTDomainModule.cs b/src/JiShe.IoT.Domain/IoTDomainModule.cs index 5e25a1e..20b1ce4 100644 --- a/src/JiShe.IoT.Domain/IoTDomainModule.cs +++ b/src/JiShe.IoT.Domain/IoTDomainModule.cs @@ -3,6 +3,7 @@ using JiShe.ServicePro.DeviceManagement; using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.IoTDBManagement; +using JiShe.ServicePro.OneNETManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT @@ -18,6 +19,7 @@ namespace JiShe.IoT typeof(IoTDBManagementDomainModule), typeof(DynamicMenuManagementDomainModule), typeof(CTWingManagementDomainModule), + typeof(OneNETManagementDomainModule), typeof(DeviceManagementDomainModule) )] public class IoTDomainModule : AbpModule diff --git a/src/JiShe.IoT.EntityFrameworkCore/EntityFrameworkCore/IoTEntityFrameworkCoreModule.cs b/src/JiShe.IoT.EntityFrameworkCore/EntityFrameworkCore/IoTEntityFrameworkCoreModule.cs index aa0e78a..da78f5c 100644 --- a/src/JiShe.IoT.EntityFrameworkCore/EntityFrameworkCore/IoTEntityFrameworkCoreModule.cs +++ b/src/JiShe.IoT.EntityFrameworkCore/EntityFrameworkCore/IoTEntityFrameworkCoreModule.cs @@ -2,6 +2,7 @@ using JiShe.ServicePro.CTWingManagement.EntityFrameworkCore; using JiShe.ServicePro.DeviceManagement.EntityFrameworkCore; using JiShe.ServicePro.DynamicMenuManagement.EntityFrameworkCore; using JiShe.ServicePro.FileManagement.EntityFrameworkCore; +using JiShe.ServicePro.OneNETManagement.EntityFrameworkCore; using JiShe.ServicePro.TemplateManagement.EntityFrameworkCore; using Volo.Abp.Guids; @@ -18,6 +19,7 @@ namespace JiShe.IoT.EntityFrameworkCore typeof(FileManagementEntityFrameworkCoreModule), typeof(DynamicMenuManagementEntityFrameworkCoreModule), typeof(CTWingManagementEntityFrameworkCoreModule), + typeof(OneNETManagementEntityFrameworkCoreModule), typeof(DeviceManagementEntityFrameworkCoreModule) )] public class IoTEntityFrameworkCoreModule : AbpModule diff --git a/src/JiShe.IoT.HttpApi.Client/IoTHttpApiClientModule.cs b/src/JiShe.IoT.HttpApi.Client/IoTHttpApiClientModule.cs index 094b933..7fcfa1a 100644 --- a/src/JiShe.IoT.HttpApi.Client/IoTHttpApiClientModule.cs +++ b/src/JiShe.IoT.HttpApi.Client/IoTHttpApiClientModule.cs @@ -7,6 +7,7 @@ using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.IoTDBManagement; using JiShe.ServicePro.LanguageManagement; using JiShe.ServicePro.NotificationManagement; +using JiShe.ServicePro.OneNETManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT @@ -22,6 +23,7 @@ namespace JiShe.IoT typeof(IoTDBManagementHttpApiClientModule), typeof(DynamicMenuManagementHttpApiClientModule), typeof(CTWingManagementHttpApiClientModule), + typeof(OneNETManagementHttpApiClientModule), typeof(DeviceManagementHttpApiClientModule) )] public class IoTHttpApiClientModule : AbpModule diff --git a/src/JiShe.IoT.HttpApi/IoTHttpApiModule.cs b/src/JiShe.IoT.HttpApi/IoTHttpApiModule.cs index 415325a..1effc7f 100644 --- a/src/JiShe.IoT.HttpApi/IoTHttpApiModule.cs +++ b/src/JiShe.IoT.HttpApi/IoTHttpApiModule.cs @@ -5,6 +5,7 @@ using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.IoTDBManagement; using JiShe.ServicePro.LanguageManagement; +using JiShe.ServicePro.OneNETManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT @@ -20,6 +21,7 @@ namespace JiShe.IoT typeof(IoTDBManagementHttpApiModule), typeof(DynamicMenuManagementHttpApiModule), typeof(CTWingManagementHttpApiModule), + typeof(OneNETManagementHttpApiModule), typeof(DeviceManagementHttpApiModule) )] public class IoTHttpApiModule : AbpModule diff --git a/src/JiShe.IoT.HttpApi/JiShe.IoT.HttpApi.csproj b/src/JiShe.IoT.HttpApi/JiShe.IoT.HttpApi.csproj index b8cca01..cce6b0b 100644 --- a/src/JiShe.IoT.HttpApi/JiShe.IoT.HttpApi.csproj +++ b/src/JiShe.IoT.HttpApi/JiShe.IoT.HttpApi.csproj @@ -24,6 +24,7 @@ +