mirror of
				https://github.com/nsnail/NetAdmin.git
				synced 2025-10-31 03:19:26 +08:00 
			
		
		
		
	refactor: ♻️ projectUsings (#182)
Co-authored-by: tk <fiyne1a@dingtalk.com>
This commit is contained in:
		| @@ -64,17 +64,3 @@ global using NetAdmin.Infrastructure.Languages; | |||||||
| global using NetAdmin.Infrastructure.Utils; | global using NetAdmin.Infrastructure.Utils; | ||||||
| global using NSExt.Attributes; | global using NSExt.Attributes; | ||||||
| global using NSExt.Extensions; | global using NSExt.Extensions; | ||||||
|  |  | ||||||
| #if !INFRAS |  | ||||||
| global using NetAdmin.Domain.Attributes; |  | ||||||
| global using NetAdmin.Domain.Attributes.DataValidation; |  | ||||||
| global using NetAdmin.Domain.DbMaps.Dependency; |  | ||||||
| global using NetAdmin.Domain.DbMaps.Dependency.Fields; |  | ||||||
| global using NetAdmin.Domain.DbMaps.Sys; |  | ||||||
| global using CsvIgnore = CsvHelper.Configuration.Attributes.IgnoreAttribute; |  | ||||||
| global using CsvIndex = CsvHelper.Configuration.Attributes.IndexAttribute; |  | ||||||
| global using CsvName = CsvHelper.Configuration.Attributes.NameAttribute; |  | ||||||
| global using DynamicFilterInfo = NetAdmin.Domain.Dto.DynamicFilterInfo; |  | ||||||
| global using DynamicFilterOperators = NetAdmin.Domain.Enums.DynamicFilterOperators; |  | ||||||
| global using SqlIndex = FreeSql.DataAnnotations.IndexAttribute; |  | ||||||
| #endif |  | ||||||
| @@ -1,5 +1,6 @@ | |||||||
| using NetAdmin.AdmServer.Host.Filters; | using NetAdmin.AdmServer.Host.Filters; | ||||||
| using NetAdmin.Domain.Contexts; | using NetAdmin.Domain.Contexts; | ||||||
|  | using NetAdmin.Domain.DbMaps.Dependency.Fields; | ||||||
| using NetAdmin.Domain.Enums.Sys; | using NetAdmin.Domain.Enums.Sys; | ||||||
| using NetAdmin.Host.Extensions; | using NetAdmin.Host.Extensions; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -22,7 +22,12 @@ | |||||||
| */ | */ | ||||||
|  |  | ||||||
| using NetAdmin.AdmServer.Host; | using NetAdmin.AdmServer.Host; | ||||||
|  | using NetAdmin.AdmServer.Host.Extensions; | ||||||
|  | using NetAdmin.Host.Extensions; | ||||||
|  | using NetAdmin.Host.Middlewares; | ||||||
|  | using NetAdmin.SysComponent.Host.Extensions; | ||||||
| using NetAdmin.SysComponent.Host.Middlewares; | using NetAdmin.SysComponent.Host.Middlewares; | ||||||
|  | using Spectre.Console.Cli; | ||||||
| using ValidationResult = Spectre.Console.ValidationResult; | using ValidationResult = Spectre.Console.ValidationResult; | ||||||
|  |  | ||||||
| NetAdmin.Host.Startup.Entry<Startup>(args); | NetAdmin.Host.Startup.Entry<Startup>(args); | ||||||
|   | |||||||
| @@ -1,4 +1,5 @@ | |||||||
| using NetAdmin.Domain.Contexts; | using NetAdmin.Domain.Contexts; | ||||||
|  | using NetAdmin.Domain.DbMaps.Dependency; | ||||||
|  |  | ||||||
| namespace NetAdmin.Application.Repositories; | namespace NetAdmin.Application.Repositories; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,4 +1,5 @@ | |||||||
| using NetAdmin.Application.Repositories; | using NetAdmin.Application.Repositories; | ||||||
|  | using NetAdmin.Domain.DbMaps.Dependency; | ||||||
| using StackExchange.Redis; | using StackExchange.Redis; | ||||||
|  |  | ||||||
| namespace NetAdmin.Application.Services; | namespace NetAdmin.Application.Services; | ||||||
|   | |||||||
| @@ -2,6 +2,8 @@ using CsvHelper; | |||||||
| using Microsoft.Net.Http.Headers; | using Microsoft.Net.Http.Headers; | ||||||
| using NetAdmin.Application.Repositories; | using NetAdmin.Application.Repositories; | ||||||
| using NetAdmin.Domain; | using NetAdmin.Domain; | ||||||
|  | using NetAdmin.Domain.DbMaps.Dependency; | ||||||
|  | using NetAdmin.Domain.DbMaps.Dependency.Fields; | ||||||
| using NetAdmin.Domain.Dto.Dependency; | using NetAdmin.Domain.Dto.Dependency; | ||||||
|  |  | ||||||
| namespace NetAdmin.Application.Services; | namespace NetAdmin.Application.Services; | ||||||
|   | |||||||
| @@ -1,4 +1,3 @@ | |||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Api; | using NetAdmin.Domain.Dto.Sys.Api; | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Attributes.DataValidation; | namespace NetAdmin.Domain.Attributes.DataValidation; | ||||||
|   | |||||||
| @@ -1,5 +1,4 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.Role; | using NetAdmin.Domain.Dto.Sys.Role; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Attributes.DataValidation; | namespace NetAdmin.Domain.Attributes.DataValidation; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,4 +1,3 @@ | |||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Attributes.DataValidation; | namespace NetAdmin.Domain.Attributes.DataValidation; | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,4 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.Role; | using NetAdmin.Domain.Dto.Sys.Role; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,4 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsg; | using NetAdmin.Domain.Dto.Sys.SiteMsg; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.DbMaps.Sys; | namespace NetAdmin.Domain.DbMaps.Sys; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Job; | namespace NetAdmin.Domain.Dto.Sys.Job; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Job; | namespace NetAdmin.Domain.Dto.Sys.Job; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,7 +1,5 @@ | |||||||
| using CronExpressionDescriptor; | using CronExpressionDescriptor; | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
| using Options = CronExpressionDescriptor.Options; | using Options = CronExpressionDescriptor.Options; | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Job; | namespace NetAdmin.Domain.Dto.Sys.Job; | ||||||
|   | |||||||
| @@ -1,5 +1,4 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.Job; | using NetAdmin.Domain.Dto.Sys.Job; | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.JobRecord; | namespace NetAdmin.Domain.Dto.Sys.JobRecord; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Menu; | namespace NetAdmin.Domain.Dto.Sys.Menu; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Menu; | namespace NetAdmin.Domain.Dto.Sys.Menu; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,7 +1,6 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.Api; | using NetAdmin.Domain.Dto.Sys.Api; | ||||||
| using NetAdmin.Domain.Dto.Sys.RequestLogDetail; | using NetAdmin.Domain.Dto.Sys.RequestLogDetail; | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.RequestLog; | namespace NetAdmin.Domain.Dto.Sys.RequestLog; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,7 +1,6 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.Api; | using NetAdmin.Domain.Dto.Sys.Api; | ||||||
| using NetAdmin.Domain.Dto.Sys.RequestLogDetail; | using NetAdmin.Domain.Dto.Sys.RequestLogDetail; | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.RequestLog; | namespace NetAdmin.Domain.Dto.Sys.RequestLog; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Role; | namespace NetAdmin.Domain.Dto.Sys.Role; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Role; | namespace NetAdmin.Domain.Dto.Sys.Role; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.Role; | namespace NetAdmin.Domain.Dto.Sys.Role; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.SiteMsg; | namespace NetAdmin.Domain.Dto.Sys.SiteMsg; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,7 +1,6 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.Dept; | using NetAdmin.Domain.Dto.Sys.Dept; | ||||||
| using NetAdmin.Domain.Dto.Sys.Role; | using NetAdmin.Domain.Dto.Sys.Role; | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.SiteMsg; | namespace NetAdmin.Domain.Dto.Sys.SiteMsg; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -2,7 +2,6 @@ using NetAdmin.Domain.Dto.Sys.Dept; | |||||||
| using NetAdmin.Domain.Dto.Sys.Role; | using NetAdmin.Domain.Dto.Sys.Role; | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.SiteMsg; | namespace NetAdmin.Domain.Dto.Sys.SiteMsg; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | namespace NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | namespace NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,4 @@ | |||||||
| using NetAdmin.Domain.Dto.Sys.Captcha; | using NetAdmin.Domain.Dto.Sys.Captcha; | ||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.VerifyCode; | namespace NetAdmin.Domain.Dto.Sys.VerifyCode; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.VerifyCode; | namespace NetAdmin.Domain.Dto.Sys.VerifyCode; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Domain.Enums.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.Domain.Dto.Sys.VerifyCode; | namespace NetAdmin.Domain.Dto.Sys.VerifyCode; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
							
								
								
									
										13
									
								
								src/backend/NetAdmin.Domain/ProjectUsings.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								src/backend/NetAdmin.Domain/ProjectUsings.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | |||||||
|  | global using NetAdmin.Domain.Attributes; | ||||||
|  | global using NetAdmin.Domain.Attributes.DataValidation; | ||||||
|  | global using NetAdmin.Domain.DbMaps.Dependency; | ||||||
|  | global using NetAdmin.Domain.DbMaps.Dependency.Fields; | ||||||
|  | global using NetAdmin.Domain.DbMaps.Sys; | ||||||
|  | global using NetAdmin.Domain.Dto.Dependency; | ||||||
|  | global using NetAdmin.Domain.Enums.Sys; | ||||||
|  | global using CsvIgnore = CsvHelper.Configuration.Attributes.IgnoreAttribute; | ||||||
|  | global using CsvIndex = CsvHelper.Configuration.Attributes.IndexAttribute; | ||||||
|  | global using CsvName = CsvHelper.Configuration.Attributes.NameAttribute; | ||||||
|  | global using DynamicFilterOperators = NetAdmin.Domain.Enums.DynamicFilterOperators; | ||||||
|  | global using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; | ||||||
|  | global using SqlIndex = FreeSql.DataAnnotations.IndexAttribute; | ||||||
| @@ -1,3 +1,4 @@ | |||||||
|  | using NetAdmin.Application.Extensions; | ||||||
| using NetAdmin.Host.Attributes; | using NetAdmin.Host.Attributes; | ||||||
|  |  | ||||||
| namespace NetAdmin.Host.Filters; | namespace NetAdmin.Host.Filters; | ||||||
|   | |||||||
| @@ -1,3 +1,8 @@ | |||||||
|  | using NetAdmin.Domain.Contexts; | ||||||
|  | using NetAdmin.Domain.Dto.Sys.RequestLog; | ||||||
|  | using NetAdmin.Domain.Dto.Sys.RequestLogDetail; | ||||||
|  | using NetAdmin.Domain.Events.Sys; | ||||||
|  | using Yitter.IdGenerator; | ||||||
| using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; | using HttpMethods = NetAdmin.Domain.Enums.HttpMethods; | ||||||
|  |  | ||||||
| namespace NetAdmin.Host.Utils; | namespace NetAdmin.Host.Utils; | ||||||
|   | |||||||
| @@ -1,4 +1,6 @@ | |||||||
|  | using NetAdmin.Domain.Attributes; | ||||||
| using NetAdmin.Domain.Contexts; | using NetAdmin.Domain.Contexts; | ||||||
|  | using NetAdmin.Domain.DbMaps.Dependency.Fields; | ||||||
| using Yitter.IdGenerator; | using Yitter.IdGenerator; | ||||||
|  |  | ||||||
| namespace NetAdmin.Host.Utils; | namespace NetAdmin.Host.Utils; | ||||||
|   | |||||||
| @@ -1,7 +1,4 @@ | |||||||
| <Project Sdk="Microsoft.NET.Sdk"> | <Project Sdk="Microsoft.NET.Sdk"> | ||||||
|     <PropertyGroup> |  | ||||||
|         <DefineConstants>INFRAS</DefineConstants> |  | ||||||
|     </PropertyGroup> |  | ||||||
|     <Import Project="$(SolutionDir)/build/code.quality.props"/> |     <Import Project="$(SolutionDir)/build/code.quality.props"/> | ||||||
|     <Import Project="$(SolutionDir)/build/copy.pkg.xml.comment.files.targets"/> |     <Import Project="$(SolutionDir)/build/copy.pkg.xml.comment.files.targets"/> | ||||||
|     <Import Project="$(SolutionDir)/build/prebuild.targets"/> |     <Import Project="$(SolutionDir)/build/prebuild.targets"/> | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Api; | using NetAdmin.Domain.Dto.Sys.Api; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,4 +1,3 @@ | |||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Cache; | using NetAdmin.Domain.Dto.Sys.Cache; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Config; | using NetAdmin.Domain.Dto.Sys.Config; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Dept; | using NetAdmin.Domain.Dto.Sys.Dept; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Dic.Catalog; | using NetAdmin.Domain.Dto.Sys.Dic.Catalog; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Dic.Content; | using NetAdmin.Domain.Dto.Sys.Dic.Content; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,4 +1,3 @@ | |||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Dic.Catalog; | using NetAdmin.Domain.Dto.Sys.Dic.Catalog; | ||||||
| using NetAdmin.Domain.Dto.Sys.Dic.Content; | using NetAdmin.Domain.Dto.Sys.Dic.Content; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys; | using NetAdmin.Domain.Dto.Sys; | ||||||
| using NetAdmin.Domain.Dto.Sys.Job; | using NetAdmin.Domain.Dto.Sys.Job; | ||||||
| using NetAdmin.Domain.Dto.Sys.JobRecord; | using NetAdmin.Domain.Dto.Sys.JobRecord; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.JobRecord; | using NetAdmin.Domain.Dto.Sys.JobRecord; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.LoginLog; | using NetAdmin.Domain.Dto.Sys.LoginLog; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Menu; | using NetAdmin.Domain.Dto.Sys.Menu; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.RequestLogDetail; | using NetAdmin.Domain.Dto.Sys.RequestLogDetail; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys; | using NetAdmin.Domain.Dto.Sys; | ||||||
| using NetAdmin.Domain.Dto.Sys.RequestLog; | using NetAdmin.Domain.Dto.Sys.RequestLog; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Role; | using NetAdmin.Domain.Dto.Sys.Role; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsgDept; | using NetAdmin.Domain.Dto.Sys.SiteMsgDept; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsg; | using NetAdmin.Domain.Dto.Sys.SiteMsg; | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsgRole; | using NetAdmin.Domain.Dto.Sys.SiteMsgRole; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsgUser; | using NetAdmin.Domain.Dto.Sys.SiteMsgUser; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using NetAdmin.Domain.Dto.Sys.UserProfile; | using NetAdmin.Domain.Dto.Sys.UserProfile; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.UserProfile; | using NetAdmin.Domain.Dto.Sys.UserProfile; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.VerifyCode; | using NetAdmin.Domain.Dto.Sys.VerifyCode; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Sys; | namespace NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|   | |||||||
| @@ -1,5 +1,3 @@ | |||||||
| using NetAdmin.Application.Modules; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Tpl.Example; | using NetAdmin.Domain.Dto.Tpl.Example; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Modules.Tpl; | namespace NetAdmin.SysComponent.Application.Modules.Tpl; | ||||||
|   | |||||||
| @@ -0,0 +1,9 @@ | |||||||
|  | global using NetAdmin.Application.Modules; | ||||||
|  | global using NetAdmin.Application.Repositories; | ||||||
|  | global using NetAdmin.Application.Services; | ||||||
|  | global using NetAdmin.Domain.DbMaps.Sys; | ||||||
|  | global using NetAdmin.Domain.Dto.Dependency; | ||||||
|  | global using NetAdmin.SysComponent.Application.Modules.Sys; | ||||||
|  | global using NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  | global using DynamicFilterInfo = NetAdmin.Domain.Dto.DynamicFilterInfo; | ||||||
|  | global using DynamicFilterOperators = NetAdmin.Domain.Enums.DynamicFilterOperators; | ||||||
| @@ -1,8 +1,4 @@ | |||||||
| using NetAdmin.Application.Repositories; |  | ||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Api; | using NetAdmin.Domain.Dto.Sys.Api; | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys; | namespace NetAdmin.SysComponent.Application.Services.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,6 @@ | |||||||
| using System.Collections.Concurrent; | using System.Collections.Concurrent; | ||||||
| using NetAdmin.Application.Services; | using NetAdmin.Domain.Dto.Sys.Cache; | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; | using StackExchange.Redis; | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys; | namespace NetAdmin.SysComponent.Application.Services.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Captcha; | using NetAdmin.Domain.Dto.Sys.Captcha; | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; |  | ||||||
| using SixLabors.ImageSharp; | using SixLabors.ImageSharp; | ||||||
| using Yitter.IdGenerator; | using Yitter.IdGenerator; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Repositories; | using NetAdmin.Domain.Dto.Sys.Config; | ||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys; | namespace NetAdmin.SysComponent.Application.Services.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,5 @@ | |||||||
| using Microsoft.OpenApi.Extensions; | using Microsoft.OpenApi.Extensions; | ||||||
| using NetAdmin.Application.Services; | using NetAdmin.Domain.Attributes; | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys; | namespace NetAdmin.SysComponent.Application.Services.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Api; | using NetAdmin.Domain.Dto.Sys.Api; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Dic.Catalog; | using NetAdmin.Domain.Dto.Sys.Dic.Catalog; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Dic.Content; | using NetAdmin.Domain.Dto.Sys.Dic.Content; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,8 +1,5 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Dependency; |  | ||||||
| using NetAdmin.Domain.Dto.Sys; | using NetAdmin.Domain.Dto.Sys; | ||||||
| using NetAdmin.Domain.Dto.Sys.JobRecord; | using NetAdmin.Domain.Dto.Sys.JobRecord; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Job; | using NetAdmin.Domain.Dto.Sys.Job; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | using NetAdmin.Domain.Dto.Sys.SiteMsgFlag; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,3 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
| /// <summary> | /// <summary> | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.UserProfile; | using NetAdmin.Domain.Dto.Sys.UserProfile; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.User; | using NetAdmin.Domain.Dto.Sys.User; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.VerifyCode; | using NetAdmin.Domain.Dto.Sys.VerifyCode; | ||||||
| using NetAdmin.SysComponent.Application.Modules.Sys; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | namespace NetAdmin.SysComponent.Application.Services.Sys.Dependency; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Repositories; | using NetAdmin.Domain.Dto.Sys.Dept; | ||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys; | namespace NetAdmin.SysComponent.Application.Services.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,7 +1,5 @@ | |||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.Domain.Dto.Sys.Api; | using NetAdmin.Domain.Dto.Sys.Api; | ||||||
| using NetAdmin.Domain.Dto.Sys.Dev; | using NetAdmin.Domain.Dto.Sys.Dev; | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys; | namespace NetAdmin.SysComponent.Application.Services.Sys; | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,6 +1,4 @@ | |||||||
| using NetAdmin.Application.Repositories; | using NetAdmin.Domain.Dto.Sys.Dic.Catalog; | ||||||
| using NetAdmin.Application.Services; |  | ||||||
| using NetAdmin.SysComponent.Application.Services.Sys.Dependency; |  | ||||||
|  |  | ||||||
| namespace NetAdmin.SysComponent.Application.Services.Sys; | namespace NetAdmin.SysComponent.Application.Services.Sys; | ||||||
|  |  | ||||||
|   | |||||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user
	 GitHub
						GitHub