diff --git a/VOL.Builder/Class1.cs b/LM.Builder/Class1.cs similarity index 72% rename from VOL.Builder/Class1.cs rename to LM.Builder/Class1.cs index 6de12ab..084c91f 100644 --- a/VOL.Builder/Class1.cs +++ b/LM.Builder/Class1.cs @@ -1,6 +1,6 @@ using System; -namespace VOL.Builder +namespace LM.Builder { public class Class1 { diff --git a/VOL.Builder/IRepositories/Core/ISys_TableInfoRepository.cs b/LM.Builder/IRepositories/Core/ISys_TableInfoRepository.cs similarity index 62% rename from VOL.Builder/IRepositories/Core/ISys_TableInfoRepository.cs rename to LM.Builder/IRepositories/Core/ISys_TableInfoRepository.cs index b2e0e87..5ab7e1e 100644 --- a/VOL.Builder/IRepositories/Core/ISys_TableInfoRepository.cs +++ b/LM.Builder/IRepositories/Core/ISys_TableInfoRepository.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Builder.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Builder.IRepositories { public partial interface ISys_TableInfoRepository : IDependency,IRepository { diff --git a/VOL.Builder/IServices/Core/ISys_TableInfoService.cs b/LM.Builder/IServices/Core/ISys_TableInfoService.cs similarity index 50% rename from VOL.Builder/IServices/Core/ISys_TableInfoService.cs rename to LM.Builder/IServices/Core/ISys_TableInfoService.cs index 8ced98b..1099929 100644 --- a/VOL.Builder/IServices/Core/ISys_TableInfoService.cs +++ b/LM.Builder/IServices/Core/ISys_TableInfoService.cs @@ -1,7 +1,7 @@ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Builder.IServices +namespace LM.Builder.IServices { public partial interface ISys_TableInfoService : IService { diff --git a/VOL.Builder/IServices/Core/Partial/ISys_TableInfoService.cs b/LM.Builder/IServices/Core/Partial/ISys_TableInfoService.cs similarity index 86% rename from VOL.Builder/IServices/Core/Partial/ISys_TableInfoService.cs rename to LM.Builder/IServices/Core/Partial/ISys_TableInfoService.cs index c77a18f..5b601b0 100644 --- a/VOL.Builder/IServices/Core/Partial/ISys_TableInfoService.cs +++ b/LM.Builder/IServices/Core/Partial/ISys_TableInfoService.cs @@ -1,10 +1,10 @@ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Core.Utilities; +using LM.Core.Utilities; -namespace VOL.Builder.IServices +namespace LM.Builder.IServices { public partial interface ISys_TableInfoService { diff --git a/VOL.Builder/VOL.Builder.csproj b/LM.Builder/LM.Builder.csproj similarity index 87% rename from VOL.Builder/VOL.Builder.csproj rename to LM.Builder/LM.Builder.csproj index 84add9c..bd064dd 100644 --- a/VOL.Builder/VOL.Builder.csproj +++ b/LM.Builder/LM.Builder.csproj @@ -28,8 +28,8 @@ - - + + diff --git a/VOL.Builder/Properties/launchSettings.json b/LM.Builder/Properties/launchSettings.json similarity index 96% rename from VOL.Builder/Properties/launchSettings.json rename to LM.Builder/Properties/launchSettings.json index 3183d52..10059f6 100644 --- a/VOL.Builder/Properties/launchSettings.json +++ b/LM.Builder/Properties/launchSettings.json @@ -15,7 +15,7 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, - "VOL.Builder": { + "LM.Builder": { "commandName": "Project", "launchBrowser": true, "environmentVariables": { diff --git a/VOL.Builder/Repositories/Core/Sys_TableInfoRepository.cs b/LM.Builder/Repositories/Core/Sys_TableInfoRepository.cs similarity index 66% rename from VOL.Builder/Repositories/Core/Sys_TableInfoRepository.cs rename to LM.Builder/Repositories/Core/Sys_TableInfoRepository.cs index b6966ca..d2f8a6c 100644 --- a/VOL.Builder/Repositories/Core/Sys_TableInfoRepository.cs +++ b/LM.Builder/Repositories/Core/Sys_TableInfoRepository.cs @@ -1,10 +1,10 @@ -using VOL.Builder.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Builder.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Builder.Repositories +namespace LM.Builder.Repositories { public partial class Sys_TableInfoRepository : RepositoryBase, ISys_TableInfoRepository { diff --git a/VOL.Builder/Services/Core/Partial/Sys_TableInfoService.cs b/LM.Builder/Services/Core/Partial/Sys_TableInfoService.cs similarity index 99% rename from VOL.Builder/Services/Core/Partial/Sys_TableInfoService.cs rename to LM.Builder/Services/Core/Partial/Sys_TableInfoService.cs index 08c88ed..03ffd80 100644 --- a/VOL.Builder/Services/Core/Partial/Sys_TableInfoService.cs +++ b/LM.Builder/Services/Core/Partial/Sys_TableInfoService.cs @@ -1,4 +1,4 @@ -using VOL.Builder.Utility; +using LM.Builder.Utility; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyModel; using Newtonsoft.Json; @@ -11,18 +11,18 @@ using System.Reflection; using System.Runtime.Loader; using System.Text; using System.Threading.Tasks; -using VOL.Core.Const; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; -using VOL.Entity.DomainModels.Sys; -using VOL.Entity.SystemModels; -using VOL.Core.Configuration; +using LM.Core.Const; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Core.Utilities; +using LM.Entity.DomainModels; +using LM.Entity.DomainModels.Sys; +using LM.Entity.SystemModels; +using LM.Core.Configuration; -namespace VOL.Builder.Services +namespace LM.Builder.Services { public partial class Sys_TableInfoService { diff --git a/VOL.Builder/Services/Core/Sys_TableInfoService.cs b/LM.Builder/Services/Core/Sys_TableInfoService.cs similarity index 70% rename from VOL.Builder/Services/Core/Sys_TableInfoService.cs rename to LM.Builder/Services/Core/Sys_TableInfoService.cs index 0945997..2b547d1 100644 --- a/VOL.Builder/Services/Core/Sys_TableInfoService.cs +++ b/LM.Builder/Services/Core/Sys_TableInfoService.cs @@ -1,10 +1,10 @@ -using VOL.Builder.IRepositories; -using VOL.Builder.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Builder.IRepositories; +using LM.Builder.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Builder.Services +namespace LM.Builder.Services { public partial class Sys_TableInfoService : ServiceBase, ISys_TableInfoService, IDependency { diff --git a/VOL.Builder/Utility/ProjectPath.cs b/LM.Builder/Utility/ProjectPath.cs similarity index 98% rename from VOL.Builder/Utility/ProjectPath.cs rename to LM.Builder/Utility/ProjectPath.cs index ccaea57..683556f 100644 --- a/VOL.Builder/Utility/ProjectPath.cs +++ b/LM.Builder/Utility/ProjectPath.cs @@ -1,8 +1,8 @@ using System.IO; using System.Linq; -using VOL.Core.Extensions; +using LM.Core.Extensions; -namespace VOL.Builder.Utility +namespace LM.Builder.Utility { public class ProjectPath { diff --git a/VOL.Core/BaseInterface/IServices.cs b/LM.Core/BaseInterface/IServices.cs similarity index 78% rename from VOL.Core/BaseInterface/IServices.cs rename to LM.Core/BaseInterface/IServices.cs index 2a6954e..11c2572 100644 --- a/VOL.Core/BaseInterface/IServices.cs +++ b/LM.Core/BaseInterface/IServices.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.BaseInterface +namespace LM.Core.BaseInterface { public interface IServices { diff --git a/VOL.Core/BaseProvider/DictionaryComponent/DictionaryViewComponent.cs b/LM.Core/BaseProvider/DictionaryComponent/DictionaryViewComponent.cs similarity index 100% rename from VOL.Core/BaseProvider/DictionaryComponent/DictionaryViewComponent.cs rename to LM.Core/BaseProvider/DictionaryComponent/DictionaryViewComponent.cs diff --git a/VOL.Core/BaseProvider/IRepository.cs b/LM.Core/BaseProvider/IRepository.cs similarity index 99% rename from VOL.Core/BaseProvider/IRepository.cs rename to LM.Core/BaseProvider/IRepository.cs index e17343e..f913b2a 100644 --- a/VOL.Core/BaseProvider/IRepository.cs +++ b/LM.Core/BaseProvider/IRepository.cs @@ -8,12 +8,12 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; -using VOL.Core.DbContext; -using VOL.Core.Enums; -using VOL.Core.Utilities; -using VOL.Entity.SystemModels; +using LM.Core.DbContext; +using LM.Core.Enums; +using LM.Core.Utilities; +using LM.Entity.SystemModels; -namespace VOL.Core.BaseProvider +namespace LM.Core.BaseProvider { public interface IRepository where TEntity : BaseEntity { diff --git a/VOL.Core/BaseProvider/IService.cs b/LM.Core/BaseProvider/IService.cs similarity index 97% rename from VOL.Core/BaseProvider/IService.cs rename to LM.Core/BaseProvider/IService.cs index a3654c9..e4c9806 100644 --- a/VOL.Core/BaseProvider/IService.cs +++ b/LM.Core/BaseProvider/IService.cs @@ -5,12 +5,12 @@ using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; -using VOL.Core.CacheManager; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; -using VOL.Entity.SystemModels; +using LM.Core.CacheManager; +using LM.Core.Utilities; +using LM.Entity.DomainModels; +using LM.Entity.SystemModels; -namespace VOL.Core.BaseProvider +namespace LM.Core.BaseProvider { public interface IService where T : BaseEntity { diff --git a/VOL.Core/BaseProvider/RepositoryBase.cs b/LM.Core/BaseProvider/RepositoryBase.cs similarity index 98% rename from VOL.Core/BaseProvider/RepositoryBase.cs rename to LM.Core/BaseProvider/RepositoryBase.cs index eba33d4..beaf141 100644 --- a/VOL.Core/BaseProvider/RepositoryBase.cs +++ b/LM.Core/BaseProvider/RepositoryBase.cs @@ -11,16 +11,16 @@ using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Threading.Tasks; -using VOL.Core.DbContext; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.Utilities; -using VOL.Entity; -using VOL.Entity.SystemModels; +using LM.Core.DbContext; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.Utilities; +using LM.Entity; +using LM.Entity.SystemModels; -namespace VOL.Core.BaseProvider +namespace LM.Core.BaseProvider { public abstract class RepositoryBase where TEntity : BaseEntity, new() { diff --git a/VOL.Core/BaseProvider/ServerMapPath/PathProvider.cs b/LM.Core/BaseProvider/ServerMapPath/PathProvider.cs similarity index 92% rename from VOL.Core/BaseProvider/ServerMapPath/PathProvider.cs rename to LM.Core/BaseProvider/ServerMapPath/PathProvider.cs index 3a7ef29..97625cd 100644 --- a/VOL.Core/BaseProvider/ServerMapPath/PathProvider.cs +++ b/LM.Core/BaseProvider/ServerMapPath/PathProvider.cs @@ -1,10 +1,10 @@  using Microsoft.AspNetCore.Hosting; using System.IO; -using VOL.Core.Extensions; -using VOL.Core.Extensions.AutofacManager; +using LM.Core.Extensions; +using LM.Core.Extensions.AutofacManager; -namespace VOL.Core.BaseProvider.ServerMapPath +namespace LM.Core.BaseProvider.ServerMapPath { public interface IPathProvider : IDependency { diff --git a/VOL.Core/BaseProvider/ServiceBase.cs b/LM.Core/BaseProvider/ServiceBase.cs similarity index 99% rename from VOL.Core/BaseProvider/ServiceBase.cs rename to LM.Core/BaseProvider/ServiceBase.cs index 26a8a95..1ce244e 100644 --- a/VOL.Core/BaseProvider/ServiceBase.cs +++ b/LM.Core/BaseProvider/ServiceBase.cs @@ -7,24 +7,24 @@ using System.IO; using System.Linq; using System.Linq.Expressions; using System.Reflection; -using VOL.Core.CacheManager; -using VOL.Core.Configuration; -using VOL.Core.Const; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.Filters; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Core.Tenancy; -using VOL.Core.Utilities; -using VOL.Core.WorkFlow; -using VOL.Entity; -using VOL.Entity.DomainModels; -using VOL.Entity.SystemModels; +using LM.Core.CacheManager; +using LM.Core.Configuration; +using LM.Core.Const; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.Extensions.AutofacManager; +using LM.Core.Filters; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Core.Tenancy; +using LM.Core.Utilities; +using LM.Core.WorkFlow; +using LM.Entity; +using LM.Entity.DomainModels; +using LM.Entity.SystemModels; -namespace VOL.Core.BaseProvider +namespace LM.Core.BaseProvider { public abstract class ServiceBase : ServiceFunFilter where T : BaseEntity, new() diff --git a/VOL.Core/CacheManager/IService/ICacheService.cs b/LM.Core/CacheManager/IService/ICacheService.cs similarity index 98% rename from VOL.Core/CacheManager/IService/ICacheService.cs rename to LM.Core/CacheManager/IService/ICacheService.cs index c868e76..81db779 100644 --- a/VOL.Core/CacheManager/IService/ICacheService.cs +++ b/LM.Core/CacheManager/IService/ICacheService.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Text; using System.Threading.Tasks; -namespace VOL.Core.CacheManager +namespace LM.Core.CacheManager { public interface ICacheService : IDisposable { diff --git a/VOL.Core/CacheManager/Service/MemoryCacheService .cs b/LM.Core/CacheManager/Service/MemoryCacheService .cs similarity index 99% rename from VOL.Core/CacheManager/Service/MemoryCacheService .cs rename to LM.Core/CacheManager/Service/MemoryCacheService .cs index a93c7cb..14443d2 100644 --- a/VOL.Core/CacheManager/Service/MemoryCacheService .cs +++ b/LM.Core/CacheManager/Service/MemoryCacheService .cs @@ -4,7 +4,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace VOL.Core.CacheManager +namespace LM.Core.CacheManager { public class MemoryCacheService : ICacheService { diff --git a/VOL.Core/CacheManager/Service/RedisCacheService.cs b/LM.Core/CacheManager/Service/RedisCacheService.cs similarity index 97% rename from VOL.Core/CacheManager/Service/RedisCacheService.cs rename to LM.Core/CacheManager/Service/RedisCacheService.cs index 163175c..f64755d 100644 --- a/VOL.Core/CacheManager/Service/RedisCacheService.cs +++ b/LM.Core/CacheManager/Service/RedisCacheService.cs @@ -4,10 +4,10 @@ using StackExchange.Redis; using System; using System.Collections.Generic; using System.Linq; -using VOL.Core.Configuration; -using VOL.Core.Const; +using LM.Core.Configuration; +using LM.Core.Const; -namespace VOL.Core.CacheManager +namespace LM.Core.CacheManager { public class RedisCacheService : ICacheService { diff --git a/VOL.Core/Configuration/AppSetting.cs b/LM.Core/Configuration/AppSetting.cs similarity index 98% rename from VOL.Core/Configuration/AppSetting.cs rename to LM.Core/Configuration/AppSetting.cs index a0affe2..f63f99d 100644 --- a/VOL.Core/Configuration/AppSetting.cs +++ b/LM.Core/Configuration/AppSetting.cs @@ -3,10 +3,10 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Options; using System.IO; -using VOL.Core.Const; -using VOL.Core.Extensions; +using LM.Core.Const; +using LM.Core.Extensions; -namespace VOL.Core.Configuration +namespace LM.Core.Configuration { public static class AppSetting { diff --git a/VOL.Core/Const/ApplicationContentType.cs b/LM.Core/Const/ApplicationContentType.cs similarity index 93% rename from VOL.Core/Const/ApplicationContentType.cs rename to LM.Core/Const/ApplicationContentType.cs index 512ec8e..81a797a 100644 --- a/VOL.Core/Const/ApplicationContentType.cs +++ b/LM.Core/Const/ApplicationContentType.cs @@ -1,4 +1,4 @@ -namespace VOL.Core.Const +namespace LM.Core.Const { public class ApplicationContentType { diff --git a/VOL.Core/Const/DataBaseType.cs b/LM.Core/Const/DataBaseType.cs similarity index 77% rename from VOL.Core/Const/DataBaseType.cs rename to LM.Core/Const/DataBaseType.cs index 68f9062..f12ad37 100644 --- a/VOL.Core/Const/DataBaseType.cs +++ b/LM.Core/Const/DataBaseType.cs @@ -1,4 +1,4 @@ -namespace VOL.Core.Const +namespace LM.Core.Const { public static class DBType { diff --git a/VOL.Core/Const/HtmlElementType.cs b/LM.Core/Const/HtmlElementType.cs similarity index 97% rename from VOL.Core/Const/HtmlElementType.cs rename to LM.Core/Const/HtmlElementType.cs index ce298d8..bdeb076 100644 --- a/VOL.Core/Const/HtmlElementType.cs +++ b/LM.Core/Const/HtmlElementType.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Const +namespace LM.Core.Const { public struct HtmlElementType { diff --git a/VOL.Core/Const/Secret.cs b/LM.Core/Const/Secret.cs similarity index 96% rename from VOL.Core/Const/Secret.cs rename to LM.Core/Const/Secret.cs index 3f424f2..d5616a9 100644 --- a/VOL.Core/Const/Secret.cs +++ b/LM.Core/Const/Secret.cs @@ -1,4 +1,4 @@ -namespace VOL.Core.Const +namespace LM.Core.Const { /// /// 加密对应密钥Key diff --git a/VOL.Core/Const/SqlDbTypeName.cs b/LM.Core/Const/SqlDbTypeName.cs similarity index 97% rename from VOL.Core/Const/SqlDbTypeName.cs rename to LM.Core/Const/SqlDbTypeName.cs index cf269ec..74fb9b1 100644 --- a/VOL.Core/Const/SqlDbTypeName.cs +++ b/LM.Core/Const/SqlDbTypeName.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Const +namespace LM.Core.Const { public struct SqlDbTypeName { diff --git a/VOL.Core/Controllers/Basic/ApiBaseController.cs b/LM.Core/Controllers/Basic/ApiBaseController.cs similarity index 97% rename from VOL.Core/Controllers/Basic/ApiBaseController.cs rename to LM.Core/Controllers/Basic/ApiBaseController.cs index 9e30898..5d13f52 100644 --- a/VOL.Core/Controllers/Basic/ApiBaseController.cs +++ b/LM.Core/Controllers/Basic/ApiBaseController.cs @@ -6,15 +6,15 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Threading.Tasks; -using VOL.Core.Configuration; -using VOL.Core.Extensions; -using VOL.Core.Filters; -using VOL.Core.Middleware; -using VOL.Core.Services; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.Configuration; +using LM.Core.Extensions; +using LM.Core.Filters; +using LM.Core.Middleware; +using LM.Core.Services; +using LM.Core.Utilities; +using LM.Entity.DomainModels; -namespace VOL.Core.Controllers.Basic +namespace LM.Core.Controllers.Basic { [JWTAuthorize, ApiController] public class ApiBaseController : VolController diff --git a/VOL.Core/Controllers/Basic/VolController.cs b/LM.Core/Controllers/Basic/VolController.cs similarity index 96% rename from VOL.Core/Controllers/Basic/VolController.cs rename to LM.Core/Controllers/Basic/VolController.cs index 746601f..bd4bc15 100644 --- a/VOL.Core/Controllers/Basic/VolController.cs +++ b/LM.Core/Controllers/Basic/VolController.cs @@ -1,9 +1,9 @@ using Microsoft.AspNetCore.Mvc; using Newtonsoft.Json; using System; -using VOL.Core.Filters; +using LM.Core.Filters; -namespace VOL.Core.Controllers.Basic +namespace LM.Core.Controllers.Basic { [JWTAuthorize, ApiController] public class VolController : Controller diff --git a/VOL.Core/DBManager/DBConnectionAttribute.cs b/LM.Core/DBManager/DBConnectionAttribute.cs similarity index 86% rename from VOL.Core/DBManager/DBConnectionAttribute.cs rename to LM.Core/DBManager/DBConnectionAttribute.cs index 9c73779..b10cb07 100644 --- a/VOL.Core/DBManager/DBConnectionAttribute.cs +++ b/LM.Core/DBManager/DBConnectionAttribute.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.DBManager +namespace LM.Core.DBManager { public class DBConnectionAttribute : Attribute { diff --git a/VOL.Core/DBManager/DBServerProvider.cs b/LM.Core/DBManager/DBServerProvider.cs similarity index 90% rename from VOL.Core/DBManager/DBServerProvider.cs rename to LM.Core/DBManager/DBServerProvider.cs index 59a0686..34b28ec 100644 --- a/VOL.Core/DBManager/DBServerProvider.cs +++ b/LM.Core/DBManager/DBServerProvider.cs @@ -5,14 +5,14 @@ using System; using System.Collections.Generic; using System.Data; using System.Data.SqlClient; -using VOL.Core.Configuration; -using VOL.Core.Const; -using VOL.Core.DbContext; -using VOL.Core.DbSqlSugar; -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.Configuration; +using LM.Core.Const; +using LM.Core.DbContext; +using LM.Core.DbSqlSugar; +using LM.Core.Enums; +using LM.Core.Extensions; -namespace VOL.Core.DBManager +namespace LM.Core.DBManager { public partial class DBServerProvider: DbManger { diff --git a/VOL.Core/DBManager/DbManger.cs b/LM.Core/DBManager/DbManger.cs similarity index 93% rename from VOL.Core/DBManager/DbManger.cs rename to LM.Core/DBManager/DbManger.cs index 7d5e69a..9be5b7e 100644 --- a/VOL.Core/DBManager/DbManger.cs +++ b/LM.Core/DBManager/DbManger.cs @@ -5,12 +5,12 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.ManageUser; -using VOL.Core.Utilities; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.ManageUser; +using LM.Core.Utilities; -namespace VOL.Core.DbSqlSugar +namespace LM.Core.DbSqlSugar { public class DbManger { diff --git a/VOL.Core/DBManager/DbName.cs b/LM.Core/DBManager/DbName.cs similarity index 85% rename from VOL.Core/DBManager/DbName.cs rename to LM.Core/DBManager/DbName.cs index 8cf38c5..c332a8a 100644 --- a/VOL.Core/DBManager/DbName.cs +++ b/LM.Core/DBManager/DbName.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.DBManage +namespace LM.Core.DBManage { public struct DbName { diff --git a/VOL.Core/DBManager/SqlSugarExtension.cs b/LM.Core/DBManager/SqlSugarExtension.cs similarity index 97% rename from VOL.Core/DBManager/SqlSugarExtension.cs rename to LM.Core/DBManager/SqlSugarExtension.cs index c27aec0..0b2a2ba 100644 --- a/VOL.Core/DBManager/SqlSugarExtension.cs +++ b/LM.Core/DBManager/SqlSugarExtension.cs @@ -8,14 +8,14 @@ using System.Linq.Expressions; using System.Reflection; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Core.Configuration; -using VOL.Core.DbContext; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.BaseProvider; +using LM.Core.Configuration; +using LM.Core.DbContext; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.Extensions; -namespace VOL.Core.DBManager +namespace LM.Core.DBManager { public static class SqlSugarExtension { diff --git a/VOL.Core/DBManager/SqlSugarRegister.cs b/LM.Core/DBManager/SqlSugarRegister.cs similarity index 93% rename from VOL.Core/DBManager/SqlSugarRegister.cs rename to LM.Core/DBManager/SqlSugarRegister.cs index 36e8292..6f78f06 100644 --- a/VOL.Core/DBManager/SqlSugarRegister.cs +++ b/LM.Core/DBManager/SqlSugarRegister.cs @@ -8,13 +8,13 @@ using System.Linq.Expressions; using System.Reflection; using System.Text; using System.Threading.Tasks; -using VOL.Core.Configuration; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.Configuration; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Enums; +using LM.Core.Extensions; -namespace VOL.Core.DBManager +namespace LM.Core.DBManager { public static class SqlSugarRegister { diff --git a/VOL.Core/DbContext/DbContext.cs b/LM.Core/DbContext/DbContext.cs similarity index 92% rename from VOL.Core/DbContext/DbContext.cs rename to LM.Core/DbContext/DbContext.cs index d6f882b..7e75079 100644 --- a/VOL.Core/DbContext/DbContext.cs +++ b/LM.Core/DbContext/DbContext.cs @@ -4,9 +4,9 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.DBManager; +using LM.Core.DBManager; -namespace VOL.Core.DbContext +namespace LM.Core.DbContext { public abstract class DbContext { diff --git a/VOL.Core/DbContext/VOLContext.cs b/LM.Core/DbContext/VOLContext.cs similarity index 74% rename from VOL.Core/DbContext/VOLContext.cs rename to LM.Core/DbContext/VOLContext.cs index 51aa533..62c1b6a 100644 --- a/VOL.Core/DbContext/VOLContext.cs +++ b/LM.Core/DbContext/VOLContext.cs @@ -6,13 +6,13 @@ using System; using System.Linq; using System.Reflection; using System.Runtime.Loader; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Extensions; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.SystemModels; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Extensions; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.SystemModels; -namespace VOL.Core.DbContext +namespace LM.Core.DbContext { public class VOLContext : DbContext, IDependency { diff --git a/VOL.Core/Enums/ActionPermissionOptions.cs b/LM.Core/Enums/ActionPermissionOptions.cs similarity index 92% rename from VOL.Core/Enums/ActionPermissionOptions.cs rename to LM.Core/Enums/ActionPermissionOptions.cs index a20dd57..649d49f 100644 --- a/VOL.Core/Enums/ActionPermissionOptions.cs +++ b/LM.Core/Enums/ActionPermissionOptions.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum ActionPermissionOptions { diff --git a/VOL.Core/Enums/ApiMessage.cs b/LM.Core/Enums/ApiMessage.cs similarity index 98% rename from VOL.Core/Enums/ApiMessage.cs rename to LM.Core/Enums/ApiMessage.cs index d7526a6..1348be0 100644 --- a/VOL.Core/Enums/ApiMessage.cs +++ b/LM.Core/Enums/ApiMessage.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public struct ApiMessage { diff --git a/VOL.Core/Enums/ApiStatutsCode.cs b/LM.Core/Enums/ApiStatutsCode.cs similarity index 87% rename from VOL.Core/Enums/ApiStatutsCode.cs rename to LM.Core/Enums/ApiStatutsCode.cs index b16fe4c..1cef7a6 100644 --- a/VOL.Core/Enums/ApiStatutsCode.cs +++ b/LM.Core/Enums/ApiStatutsCode.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum ApiStatutsCode { diff --git a/VOL.Core/Enums/CPrefix.cs b/LM.Core/Enums/CPrefix.cs similarity index 93% rename from VOL.Core/Enums/CPrefix.cs rename to LM.Core/Enums/CPrefix.cs index b36345d..5f9b18a 100644 --- a/VOL.Core/Enums/CPrefix.cs +++ b/LM.Core/Enums/CPrefix.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum CPrefix { diff --git a/VOL.Core/Enums/DbCurrentType.cs b/LM.Core/Enums/DbCurrentType.cs similarity index 90% rename from VOL.Core/Enums/DbCurrentType.cs rename to LM.Core/Enums/DbCurrentType.cs index a703fba..aacaefa 100644 --- a/VOL.Core/Enums/DbCurrentType.cs +++ b/LM.Core/Enums/DbCurrentType.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum DbCurrentType { diff --git a/VOL.Core/Enums/LinqExpressionType.cs b/LM.Core/Enums/LinqExpressionType.cs similarity index 93% rename from VOL.Core/Enums/LinqExpressionType.cs rename to LM.Core/Enums/LinqExpressionType.cs index cb9fb32..f444060 100644 --- a/VOL.Core/Enums/LinqExpressionType.cs +++ b/LM.Core/Enums/LinqExpressionType.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum LinqExpressionType { diff --git a/VOL.Core/Enums/LoggerType.cs b/LM.Core/Enums/LoggerType.cs similarity index 97% rename from VOL.Core/Enums/LoggerType.cs rename to LM.Core/Enums/LoggerType.cs index c9ebd9a..717ce9f 100644 --- a/VOL.Core/Enums/LoggerType.cs +++ b/LM.Core/Enums/LoggerType.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum LoggerType { diff --git a/VOL.Core/Enums/QueryOrderBy.cs b/LM.Core/Enums/QueryOrderBy.cs similarity index 85% rename from VOL.Core/Enums/QueryOrderBy.cs rename to LM.Core/Enums/QueryOrderBy.cs index ab63f4d..2ad08f5 100644 --- a/VOL.Core/Enums/QueryOrderBy.cs +++ b/LM.Core/Enums/QueryOrderBy.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum QueryOrderBy { diff --git a/VOL.Core/Enums/ResponseType.cs b/LM.Core/Enums/ResponseType.cs similarity index 95% rename from VOL.Core/Enums/ResponseType.cs rename to LM.Core/Enums/ResponseType.cs index aa5ea5b..6d7fbbd 100644 --- a/VOL.Core/Enums/ResponseType.cs +++ b/LM.Core/Enums/ResponseType.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum ResponseType { diff --git a/VOL.Core/Enums/UserAgent.cs b/LM.Core/Enums/UserAgent.cs similarity index 88% rename from VOL.Core/Enums/UserAgent.cs rename to LM.Core/Enums/UserAgent.cs index 34d5ad9..8f04d64 100644 --- a/VOL.Core/Enums/UserAgent.cs +++ b/LM.Core/Enums/UserAgent.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Enums +namespace LM.Core.Enums { public enum UserAgent { diff --git a/VOL.Core/Extensions/AuthorizationResponse.cs b/LM.Core/Extensions/AuthorizationResponse.cs similarity index 92% rename from VOL.Core/Extensions/AuthorizationResponse.cs rename to LM.Core/Extensions/AuthorizationResponse.cs index 55ccbbb..2ac0b9a 100644 --- a/VOL.Core/Extensions/AuthorizationResponse.cs +++ b/LM.Core/Extensions/AuthorizationResponse.cs @@ -3,12 +3,12 @@ using Microsoft.AspNetCore.Mvc.Filters; using System.IdentityModel.Tokens.Jwt; using System.Net; using System.Security.Claims; -using VOL.Core.Configuration; -using VOL.Core.Enums; -using VOL.Core.Services; -using VOL.Core.Utilities; +using LM.Core.Configuration; +using LM.Core.Enums; +using LM.Core.Services; +using LM.Core.Utilities; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class AuthorizationResponse { diff --git a/VOL.Core/Extensions/AutofacManager/AutofacContainerModule.cs b/LM.Core/Extensions/AutofacManager/AutofacContainerModule.cs similarity index 68% rename from VOL.Core/Extensions/AutofacManager/AutofacContainerModule.cs rename to LM.Core/Extensions/AutofacManager/AutofacContainerModule.cs index 105bad3..626194f 100644 --- a/VOL.Core/Extensions/AutofacManager/AutofacContainerModule.cs +++ b/LM.Core/Extensions/AutofacManager/AutofacContainerModule.cs @@ -1,8 +1,8 @@ -using VOL.Core.Extensions; +using LM.Core.Extensions; using System; -using VOL.Core.Configuration; +using LM.Core.Configuration; -namespace VOL.Core.Extensions.AutofacManager +namespace LM.Core.Extensions.AutofacManager { public class AutofacContainerModule { diff --git a/VOL.Core/Extensions/AutofacManager/AutofacContainerModuleExtension.cs b/LM.Core/Extensions/AutofacManager/AutofacContainerModuleExtension.cs similarity index 88% rename from VOL.Core/Extensions/AutofacManager/AutofacContainerModuleExtension.cs rename to LM.Core/Extensions/AutofacManager/AutofacContainerModuleExtension.cs index 7cbebf4..a913323 100644 --- a/VOL.Core/Extensions/AutofacManager/AutofacContainerModuleExtension.cs +++ b/LM.Core/Extensions/AutofacManager/AutofacContainerModuleExtension.cs @@ -10,19 +10,19 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Runtime.Loader; -using VOL.Core.CacheManager; -using VOL.Core.Configuration; -using VOL.Core.Const; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.Extensions.AutofacManager; -//using VOL.Core.KafkaManager.IService; -//using VOL.Core.KafkaManager.Service; -using VOL.Core.ManageUser; -using VOL.Core.ObjectActionValidator; -using VOL.Core.Services; +using LM.Core.CacheManager; +using LM.Core.Configuration; +using LM.Core.Const; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.Extensions.AutofacManager; +//using LM.Core.KafkaManager.IService; +//using LM.Core.KafkaManager.Service; +using LM.Core.ManageUser; +using LM.Core.ObjectActionValidator; +using LM.Core.Services; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class AutofacContainerModuleExtension { diff --git a/VOL.Core/Extensions/AutofacManager/IDependency.cs b/LM.Core/Extensions/AutofacManager/IDependency.cs similarity index 78% rename from VOL.Core/Extensions/AutofacManager/IDependency.cs rename to LM.Core/Extensions/AutofacManager/IDependency.cs index 76814fc..cf90471 100644 --- a/VOL.Core/Extensions/AutofacManager/IDependency.cs +++ b/LM.Core/Extensions/AutofacManager/IDependency.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Core.Extensions.AutofacManager +namespace LM.Core.Extensions.AutofacManager { public interface IDependency { diff --git a/VOL.Core/Extensions/CacheKeyExtensions.cs b/LM.Core/Extensions/CacheKeyExtensions.cs similarity index 89% rename from VOL.Core/Extensions/CacheKeyExtensions.cs rename to LM.Core/Extensions/CacheKeyExtensions.cs index b9cc16c..5174c1e 100644 --- a/VOL.Core/Extensions/CacheKeyExtensions.cs +++ b/LM.Core/Extensions/CacheKeyExtensions.cs @@ -1,7 +1,7 @@ -using VOL.Core.Enums; +using LM.Core.Enums; using System; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class CacheKeyExtensions { diff --git a/VOL.Core/Extensions/ConvertJsonExtension.cs b/LM.Core/Extensions/ConvertJsonExtension.cs similarity index 99% rename from VOL.Core/Extensions/ConvertJsonExtension.cs rename to LM.Core/Extensions/ConvertJsonExtension.cs index 3a85cf8..e58fe1d 100644 --- a/VOL.Core/Extensions/ConvertJsonExtension.cs +++ b/LM.Core/Extensions/ConvertJsonExtension.cs @@ -5,9 +5,9 @@ using System.Collections.Generic; using System.Data; using System.Reflection; using System.Text; -using VOL.Core.Controllers.Basic; +using LM.Core.Controllers.Basic; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class ConvertJsonExtension { diff --git a/VOL.Core/Extensions/EntityProperties.cs b/LM.Core/Extensions/EntityProperties.cs similarity index 99% rename from VOL.Core/Extensions/EntityProperties.cs rename to LM.Core/Extensions/EntityProperties.cs index d9a1d18..cf188eb 100644 --- a/VOL.Core/Extensions/EntityProperties.cs +++ b/LM.Core/Extensions/EntityProperties.cs @@ -9,18 +9,18 @@ using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; -using VOL.Core.Configuration; -using VOL.Core.Const; -using VOL.Core.Enums; -using VOL.Core.Utilities; -using VOL.Entity; -using VOL.Entity.DomainModels; +using LM.Core.Configuration; +using LM.Core.Const; +using LM.Core.Enums; +using LM.Core.Utilities; +using LM.Entity; +using LM.Entity.DomainModels; /* * jxx 2017-08-09 * 通用实体属操作 */ -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class EntityProperties { diff --git a/VOL.Core/Extensions/GenericExtension.cs b/LM.Core/Extensions/GenericExtension.cs similarity index 99% rename from VOL.Core/Extensions/GenericExtension.cs rename to LM.Core/Extensions/GenericExtension.cs index bd5744b..b399354 100644 --- a/VOL.Core/Extensions/GenericExtension.cs +++ b/LM.Core/Extensions/GenericExtension.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Linq.Expressions; using System.Reflection; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { /// /// 泛型扩展 diff --git a/VOL.Core/Extensions/HtmlHelperViewExtensions.cs b/LM.Core/Extensions/HtmlHelperViewExtensions.cs similarity index 99% rename from VOL.Core/Extensions/HtmlHelperViewExtensions.cs rename to LM.Core/Extensions/HtmlHelperViewExtensions.cs index 868c40e..3ca1010 100644 --- a/VOL.Core/Extensions/HtmlHelperViewExtensions.cs +++ b/LM.Core/Extensions/HtmlHelperViewExtensions.cs @@ -11,7 +11,7 @@ using System.IO; using System.Text; using System.Threading.Tasks; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class HtmlHelperViewExtensions { diff --git a/VOL.Core/Extensions/IdentityCode.cs b/LM.Core/Extensions/IdentityCode.cs similarity index 93% rename from VOL.Core/Extensions/IdentityCode.cs rename to LM.Core/Extensions/IdentityCode.cs index 17e64bd..df96f9d 100644 --- a/VOL.Core/Extensions/IdentityCode.cs +++ b/LM.Core/Extensions/IdentityCode.cs @@ -4,13 +4,13 @@ using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; -using VOL.Core.Configuration; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.Configuration; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Enums; +using LM.Core.Extensions; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class IdentityCode diff --git a/VOL.Core/Extensions/LambdaExtensions.cs b/LM.Core/Extensions/LambdaExtensions.cs similarity index 99% rename from VOL.Core/Extensions/LambdaExtensions.cs rename to LM.Core/Extensions/LambdaExtensions.cs index af05b02..3b9ee7e 100644 --- a/VOL.Core/Extensions/LambdaExtensions.cs +++ b/LM.Core/Extensions/LambdaExtensions.cs @@ -4,9 +4,9 @@ using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Reflection; -using VOL.Core.Enums; +using LM.Core.Enums; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class LambdaExtensions { diff --git a/VOL.Core/Extensions/ObjectExtension.cs b/LM.Core/Extensions/ObjectExtension.cs similarity index 99% rename from VOL.Core/Extensions/ObjectExtension.cs rename to LM.Core/Extensions/ObjectExtension.cs index cd3dabb..09dae4f 100644 --- a/VOL.Core/Extensions/ObjectExtension.cs +++ b/LM.Core/Extensions/ObjectExtension.cs @@ -13,7 +13,7 @@ using System.Web; using System.Xml; using System.Xml.Linq; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class ObjectExtension diff --git a/VOL.Core/Extensions/RequestExtension.cs b/LM.Core/Extensions/RequestExtension.cs similarity index 99% rename from VOL.Core/Extensions/RequestExtension.cs rename to LM.Core/Extensions/RequestExtension.cs index cb81fc2..3aa34e0 100644 --- a/VOL.Core/Extensions/RequestExtension.cs +++ b/LM.Core/Extensions/RequestExtension.cs @@ -3,9 +3,9 @@ using System; using System.Collections.Generic; using System.IO; using System.Text; -using VOL.Core.Enums; +using LM.Core.Enums; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class HttpContextExtension { diff --git a/VOL.Core/Extensions/Response/ResponseMsg.cs b/LM.Core/Extensions/Response/ResponseMsg.cs similarity index 97% rename from VOL.Core/Extensions/Response/ResponseMsg.cs rename to LM.Core/Extensions/Response/ResponseMsg.cs index 934d995..3ee0c13 100644 --- a/VOL.Core/Extensions/Response/ResponseMsg.cs +++ b/LM.Core/Extensions/Response/ResponseMsg.cs @@ -1,6 +1,6 @@ -using VOL.Core.Enums; +using LM.Core.Enums; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class ResponseMsg { diff --git a/VOL.Core/Extensions/SecurityEncDecryptExtension.cs b/LM.Core/Extensions/SecurityEncDecryptExtension.cs similarity index 99% rename from VOL.Core/Extensions/SecurityEncDecryptExtension.cs rename to LM.Core/Extensions/SecurityEncDecryptExtension.cs index cb207e7..144921a 100644 --- a/VOL.Core/Extensions/SecurityEncDecryptExtension.cs +++ b/LM.Core/Extensions/SecurityEncDecryptExtension.cs @@ -3,7 +3,7 @@ using System.IO; using System.Security.Cryptography; using System.Text; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class SecurityEncDecryptExtensions { diff --git a/VOL.Core/Extensions/ServerExtension.cs b/LM.Core/Extensions/ServerExtension.cs similarity index 87% rename from VOL.Core/Extensions/ServerExtension.cs rename to LM.Core/Extensions/ServerExtension.cs index 3b56be4..5bb5a2f 100644 --- a/VOL.Core/Extensions/ServerExtension.cs +++ b/LM.Core/Extensions/ServerExtension.cs @@ -1,10 +1,10 @@ -using VOL.Core.BaseProvider.ServerMapPath; +using LM.Core.BaseProvider.ServerMapPath; using System; using System.Collections.Generic; using System.Text; -using VOL.Core.Extensions.AutofacManager; +using LM.Core.Extensions.AutofacManager; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class ServerExtension { diff --git a/VOL.Core/Extensions/ServiceProviderManagerExtension.cs b/LM.Core/Extensions/ServiceProviderManagerExtension.cs similarity index 88% rename from VOL.Core/Extensions/ServiceProviderManagerExtension.cs rename to LM.Core/Extensions/ServiceProviderManagerExtension.cs index e97720c..a25c7aa 100644 --- a/VOL.Core/Extensions/ServiceProviderManagerExtension.cs +++ b/LM.Core/Extensions/ServiceProviderManagerExtension.cs @@ -1,10 +1,10 @@ -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Text; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class ServiceProviderManagerExtension { diff --git a/VOL.Core/Extensions/StaticFileExtensions.cs b/LM.Core/Extensions/StaticFileExtensions.cs similarity index 98% rename from VOL.Core/Extensions/StaticFileExtensions.cs rename to LM.Core/Extensions/StaticFileExtensions.cs index e358f07..dab4d4c 100644 --- a/VOL.Core/Extensions/StaticFileExtensions.cs +++ b/LM.Core/Extensions/StaticFileExtensions.cs @@ -6,7 +6,7 @@ using System.Collections.Generic; using System.IO; using System.Text; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class StaticDefaultFileExtensions { diff --git a/VOL.Core/Extensions/StaticHttpContextExtensions.cs b/LM.Core/Extensions/StaticHttpContextExtensions.cs similarity index 96% rename from VOL.Core/Extensions/StaticHttpContextExtensions.cs rename to LM.Core/Extensions/StaticHttpContextExtensions.cs index e45407f..2b39f00 100644 --- a/VOL.Core/Extensions/StaticHttpContextExtensions.cs +++ b/LM.Core/Extensions/StaticHttpContextExtensions.cs @@ -5,7 +5,7 @@ using System; using System.Collections.Generic; using System.Text; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class StaticHttpContextExtensions { diff --git a/VOL.Core/Extensions/StringExtension.cs b/LM.Core/Extensions/StringExtension.cs similarity index 99% rename from VOL.Core/Extensions/StringExtension.cs rename to LM.Core/Extensions/StringExtension.cs index 8be7827..49cd6c6 100644 --- a/VOL.Core/Extensions/StringExtension.cs +++ b/LM.Core/Extensions/StringExtension.cs @@ -1,11 +1,11 @@ using System; using System.Runtime.InteropServices; using System.Text.RegularExpressions; -using VOL.Core.Const; -using VOL.Core.Enums; -using VOL.Core.ManageUser; +using LM.Core.Const; +using LM.Core.Enums; +using LM.Core.ManageUser; -namespace VOL.Core.Extensions +namespace LM.Core.Extensions { public static class StringExtension { diff --git a/VOL.Core/Filters/ActionExecuteFilter.cs b/LM.Core/Filters/ActionExecuteFilter.cs similarity index 72% rename from VOL.Core/Filters/ActionExecuteFilter.cs rename to LM.Core/Filters/ActionExecuteFilter.cs index c8703ac..5dc83ef 100644 --- a/VOL.Core/Filters/ActionExecuteFilter.cs +++ b/LM.Core/Filters/ActionExecuteFilter.cs @@ -2,13 +2,13 @@ using Microsoft.AspNetCore.Mvc.Filters; using System; using System.Linq; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.ObjectActionValidator; -using VOL.Core.Services; -using VOL.Core.Utilities; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.ObjectActionValidator; +using LM.Core.Services; +using LM.Core.Utilities; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public class ActionExecuteFilter : IActionFilter { diff --git a/VOL.Core/Filters/ActionPermissionAttribute.cs b/LM.Core/Filters/ActionPermissionAttribute.cs similarity index 97% rename from VOL.Core/Filters/ActionPermissionAttribute.cs rename to LM.Core/Filters/ActionPermissionAttribute.cs index d9f0fcc..f23d5fc 100644 --- a/VOL.Core/Filters/ActionPermissionAttribute.cs +++ b/LM.Core/Filters/ActionPermissionAttribute.cs @@ -2,10 +2,10 @@ using System; using System.Collections.Generic; using System.Linq; -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.Enums; +using LM.Core.Extensions; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public class ActionPermissionAttribute : TypeFilterAttribute { diff --git a/VOL.Core/Filters/ActionPermissionFilter.cs b/LM.Core/Filters/ActionPermissionFilter.cs similarity index 96% rename from VOL.Core/Filters/ActionPermissionFilter.cs rename to LM.Core/Filters/ActionPermissionFilter.cs index 4fb4783..9b78104 100644 --- a/VOL.Core/Filters/ActionPermissionFilter.cs +++ b/LM.Core/Filters/ActionPermissionFilter.cs @@ -2,14 +2,14 @@ using Microsoft.AspNetCore.Mvc.Filters; using System.Linq; using System.Threading.Tasks; -using VOL.Core.Configuration; -using VOL.Core.Enums; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Core.Utilities; -using VOL.Entity.AttributeManager; +using LM.Core.Configuration; +using LM.Core.Enums; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Core.Utilities; +using LM.Entity.AttributeManager; -namespace VOL.Core.Filters +namespace LM.Core.Filters { /// /// 1、控制器或controller设置了AllowAnonymousAttribute直接返回 diff --git a/VOL.Core/Filters/ActionPermissionRequirement.cs b/LM.Core/Filters/ActionPermissionRequirement.cs similarity index 96% rename from VOL.Core/Filters/ActionPermissionRequirement.cs rename to LM.Core/Filters/ActionPermissionRequirement.cs index 42ec407..a0a4dee 100644 --- a/VOL.Core/Filters/ActionPermissionRequirement.cs +++ b/LM.Core/Filters/ActionPermissionRequirement.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public class ActionPermissionRequirement { diff --git a/VOL.Core/Filters/ApiActionPermissionAttribute.cs b/LM.Core/Filters/ApiActionPermissionAttribute.cs similarity index 96% rename from VOL.Core/Filters/ApiActionPermissionAttribute.cs rename to LM.Core/Filters/ApiActionPermissionAttribute.cs index 78868e9..8a4a029 100644 --- a/VOL.Core/Filters/ApiActionPermissionAttribute.cs +++ b/LM.Core/Filters/ApiActionPermissionAttribute.cs @@ -1,7 +1,7 @@ using System; -using VOL.Core.Enums; +using LM.Core.Enums; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public class ApiActionPermissionAttribute : ActionPermissionAttribute { diff --git a/VOL.Core/Filters/ApiAuthorizeFilter.cs b/LM.Core/Filters/ApiAuthorizeFilter.cs similarity index 96% rename from VOL.Core/Filters/ApiAuthorizeFilter.cs rename to LM.Core/Filters/ApiAuthorizeFilter.cs index 4bacf2b..47df4a9 100644 --- a/VOL.Core/Filters/ApiAuthorizeFilter.cs +++ b/LM.Core/Filters/ApiAuthorizeFilter.cs @@ -6,12 +6,12 @@ using System.IdentityModel.Tokens.Jwt; using System.Linq; using System.Net; using System.Security.Claims; -using VOL.Core.Configuration; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using static VOL.Core.Filters.ApiTaskAttribute; +using LM.Core.Configuration; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using static LM.Core.Filters.ApiTaskAttribute; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public class ApiAuthorizeFilter : IAuthorizationFilter { diff --git a/VOL.Core/Filters/ApiTaskAttribute.cs b/LM.Core/Filters/ApiTaskAttribute.cs similarity index 86% rename from VOL.Core/Filters/ApiTaskAttribute.cs rename to LM.Core/Filters/ApiTaskAttribute.cs index 933f1ee..fdbe17e 100644 --- a/VOL.Core/Filters/ApiTaskAttribute.cs +++ b/LM.Core/Filters/ApiTaskAttribute.cs @@ -5,11 +5,11 @@ using Microsoft.Extensions.Primitives; using System; using System.Collections.Generic; using System.Text; -using VOL.Core.Configuration; -using VOL.Core.Extensions; -using VOL.Core.Quartz; +using LM.Core.Configuration; +using LM.Core.Extensions; +using LM.Core.Quartz; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public interface IApiTaskFilter : IFilterMetadata { diff --git a/VOL.Core/Filters/FixedTokenAttribute.cs b/LM.Core/Filters/FixedTokenAttribute.cs similarity index 92% rename from VOL.Core/Filters/FixedTokenAttribute.cs rename to LM.Core/Filters/FixedTokenAttribute.cs index 9df7752..d1e88d1 100644 --- a/VOL.Core/Filters/FixedTokenAttribute.cs +++ b/LM.Core/Filters/FixedTokenAttribute.cs @@ -3,12 +3,12 @@ using Microsoft.AspNetCore.Mvc.Filters; using System; using System.Net; using System.Security.Claims; -using VOL.Core.Configuration; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Core.Utilities; +using LM.Core.Configuration; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Core.Utilities; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public interface IFixedTokenFilter : IFilterMetadata { diff --git a/VOL.Core/Filters/JWTAuthorize.cs b/LM.Core/Filters/JWTAuthorize.cs similarity index 90% rename from VOL.Core/Filters/JWTAuthorize.cs rename to LM.Core/Filters/JWTAuthorize.cs index 4274dce..6583483 100644 --- a/VOL.Core/Filters/JWTAuthorize.cs +++ b/LM.Core/Filters/JWTAuthorize.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Text; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public class JWTAuthorizeAttribute : AuthorizeAttribute { diff --git a/VOL.Core/Filters/ServiceFunFilter.cs b/LM.Core/Filters/ServiceFunFilter.cs similarity index 98% rename from VOL.Core/Filters/ServiceFunFilter.cs rename to LM.Core/Filters/ServiceFunFilter.cs index 44f0143..8a663ee 100644 --- a/VOL.Core/Filters/ServiceFunFilter.cs +++ b/LM.Core/Filters/ServiceFunFilter.cs @@ -4,12 +4,12 @@ using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; -using VOL.Core.Enums; -using VOL.Core.Utilities; -using VOL.Core.WorkFlow; -using VOL.Entity.DomainModels; +using LM.Core.Enums; +using LM.Core.Utilities; +using LM.Core.WorkFlow; +using LM.Entity.DomainModels; -namespace VOL.Core.Filters +namespace LM.Core.Filters { public abstract class ServiceFunFilter where T : class { diff --git a/VOL.Core/Infrastructure/DictionaryHandler.cs b/LM.Core/Infrastructure/DictionaryHandler.cs similarity index 94% rename from VOL.Core/Infrastructure/DictionaryHandler.cs rename to LM.Core/Infrastructure/DictionaryHandler.cs index 9c30260..272662e 100644 --- a/VOL.Core/Infrastructure/DictionaryHandler.cs +++ b/LM.Core/Infrastructure/DictionaryHandler.cs @@ -2,12 +2,12 @@ using System; using System.Collections.Generic; using System.Text; -using VOL.Core.Const; -using VOL.Core.Enums; -using VOL.Core.ManageUser; -using VOL.Core.UserManager; +using LM.Core.Const; +using LM.Core.Enums; +using LM.Core.ManageUser; +using LM.Core.UserManager; -namespace VOL.Core.Infrastructure +namespace LM.Core.Infrastructure { public static class DictionaryHandler { diff --git a/VOL.Core/Infrastructure/DictionaryManager.cs b/LM.Core/Infrastructure/DictionaryManager.cs similarity index 94% rename from VOL.Core/Infrastructure/DictionaryManager.cs rename to LM.Core/Infrastructure/DictionaryManager.cs index bbe6481..9854c86 100644 --- a/VOL.Core/Infrastructure/DictionaryManager.cs +++ b/LM.Core/Infrastructure/DictionaryManager.cs @@ -2,14 +2,14 @@ using System; using System.Collections.Generic; using System.Linq; -using VOL.Core.CacheManager; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.Services; -using VOL.Entity.DomainModels; +using LM.Core.CacheManager; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Extensions.AutofacManager; +using LM.Core.Services; +using LM.Entity.DomainModels; -namespace VOL.Core.Infrastructure +namespace LM.Core.Infrastructure { public static class DictionaryManager { diff --git a/VOL.Core/KafkaManager/IService/IKafkaConsumer.cs b/LM.Core/KafkaManager/IService/IKafkaConsumer.cs similarity index 97% rename from VOL.Core/KafkaManager/IService/IKafkaConsumer.cs rename to LM.Core/KafkaManager/IService/IKafkaConsumer.cs index f82f0ed..2d2f44c 100644 --- a/VOL.Core/KafkaManager/IService/IKafkaConsumer.cs +++ b/LM.Core/KafkaManager/IService/IKafkaConsumer.cs @@ -3,7 +3,7 @@ //using System.Collections.Generic; //using System.Text; -//namespace VOL.Core.KafkaManager.IService +//namespace LM.Core.KafkaManager.IService //{ // public interface IKafkaConsumer : IDisposable // { diff --git a/VOL.Core/KafkaManager/IService/IKafkaProducer.cs b/LM.Core/KafkaManager/IService/IKafkaProducer.cs similarity index 94% rename from VOL.Core/KafkaManager/IService/IKafkaProducer.cs rename to LM.Core/KafkaManager/IService/IKafkaProducer.cs index b4e331a..fc0a247 100644 --- a/VOL.Core/KafkaManager/IService/IKafkaProducer.cs +++ b/LM.Core/KafkaManager/IService/IKafkaProducer.cs @@ -3,7 +3,7 @@ //using System.Text; //using System.Threading.Tasks; -//namespace VOL.Core.KafkaManager.IService +//namespace LM.Core.KafkaManager.IService //{ // public interface IKafkaProducer // { diff --git a/VOL.Core/KafkaManager/KafkaConfig.cs b/LM.Core/KafkaManager/KafkaConfig.cs similarity index 96% rename from VOL.Core/KafkaManager/KafkaConfig.cs rename to LM.Core/KafkaManager/KafkaConfig.cs index 524f66c..c4c3f41 100644 --- a/VOL.Core/KafkaManager/KafkaConfig.cs +++ b/LM.Core/KafkaManager/KafkaConfig.cs @@ -2,9 +2,9 @@ //using System; //using System.Collections.Generic; //using System.Text; -//using VOL.Core.Configuration; +//using LM.Core.Configuration; -//namespace VOL.Core.KafkaManager +//namespace LM.Core.KafkaManager //{ // /// // /// 配置类 diff --git a/VOL.Core/KafkaManager/KafkaHelper.cs b/LM.Core/KafkaManager/KafkaHelper.cs similarity index 99% rename from VOL.Core/KafkaManager/KafkaHelper.cs rename to LM.Core/KafkaManager/KafkaHelper.cs index 8436554..488c3ed 100644 --- a/VOL.Core/KafkaManager/KafkaHelper.cs +++ b/LM.Core/KafkaManager/KafkaHelper.cs @@ -7,7 +7,7 @@ //using System.Text; //using System.Text.RegularExpressions; -//namespace VOL.Core.KafkaManager +//namespace LM.Core.KafkaManager //{ // /// // /// 辅助类 diff --git a/VOL.Core/KafkaManager/Service/KafkaConsumer.cs b/LM.Core/KafkaManager/Service/KafkaConsumer.cs similarity index 98% rename from VOL.Core/KafkaManager/Service/KafkaConsumer.cs rename to LM.Core/KafkaManager/Service/KafkaConsumer.cs index 3ff75df..3bbf172 100644 --- a/VOL.Core/KafkaManager/Service/KafkaConsumer.cs +++ b/LM.Core/KafkaManager/Service/KafkaConsumer.cs @@ -3,12 +3,12 @@ //using System.Collections.Generic; //using System.Text; //using System.Threading.Tasks; -//using VOL.Core.Configuration; -//using VOL.Core.Enums; -//using VOL.Core.KafkaManager.IService; -//using VOL.Core.Services; +//using LM.Core.Configuration; +//using LM.Core.Enums; +//using LM.Core.KafkaManager.IService; +//using LM.Core.Services; -//namespace VOL.Core.KafkaManager.Service +//namespace LM.Core.KafkaManager.Service //{ // /// // /// 消费者 (Message.Key的数据类型为string、Message.Value的数据类型为string) diff --git a/VOL.Core/KafkaManager/Service/KafkaProducer.cs b/LM.Core/KafkaManager/Service/KafkaProducer.cs similarity index 96% rename from VOL.Core/KafkaManager/Service/KafkaProducer.cs rename to LM.Core/KafkaManager/Service/KafkaProducer.cs index 59bf932..938e486 100644 --- a/VOL.Core/KafkaManager/Service/KafkaProducer.cs +++ b/LM.Core/KafkaManager/Service/KafkaProducer.cs @@ -3,11 +3,11 @@ //using System.Collections.Generic; //using System.Text; //using System.Threading.Tasks; -//using VOL.Core.Enums; -//using VOL.Core.KafkaManager.IService; -//using VOL.Core.Services; +//using LM.Core.Enums; +//using LM.Core.KafkaManager.IService; +//using LM.Core.Services; -//namespace VOL.Core.KafkaManager.Service +//namespace LM.Core.KafkaManager.Service //{ // /// // /// 生产者 控制器或Service里面构造函数注入即可调用 diff --git a/VOL.Core/VOL.Core.csproj b/LM.Core/LM.Core.csproj similarity index 97% rename from VOL.Core/VOL.Core.csproj rename to LM.Core/LM.Core.csproj index 8340389..bcdc547 100644 --- a/VOL.Core/VOL.Core.csproj +++ b/LM.Core/LM.Core.csproj @@ -63,7 +63,7 @@ - + diff --git a/VOL.Core/Middleware/ActionLog.cs b/LM.Core/Middleware/ActionLog.cs similarity index 95% rename from VOL.Core/Middleware/ActionLog.cs rename to LM.Core/Middleware/ActionLog.cs index 1d31e5b..b6dd3c7 100644 --- a/VOL.Core/Middleware/ActionLog.cs +++ b/LM.Core/Middleware/ActionLog.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Core.Middleware +namespace LM.Core.Middleware { public class ActionLog : Attribute { diff --git a/VOL.Core/Middleware/ExceptionHandlerMiddleWare.cs b/LM.Core/Middleware/ExceptionHandlerMiddleWare.cs similarity index 93% rename from VOL.Core/Middleware/ExceptionHandlerMiddleWare.cs rename to LM.Core/Middleware/ExceptionHandlerMiddleWare.cs index bc949f1..3af8944 100644 --- a/VOL.Core/Middleware/ExceptionHandlerMiddleWare.cs +++ b/LM.Core/Middleware/ExceptionHandlerMiddleWare.cs @@ -7,13 +7,13 @@ using System; using System.IO; using System.Text; using System.Threading.Tasks; -using VOL.Core.Const; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Core.Services; +using LM.Core.Const; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Core.Services; -namespace VOL.Core.Middleware +namespace LM.Core.Middleware { public class ExceptionHandlerMiddleWare diff --git a/VOL.Core/Middleware/HttpRequestMiddleware.cs b/LM.Core/Middleware/HttpRequestMiddleware.cs similarity index 95% rename from VOL.Core/Middleware/HttpRequestMiddleware.cs rename to LM.Core/Middleware/HttpRequestMiddleware.cs index 8b2dcad..4066631 100644 --- a/VOL.Core/Middleware/HttpRequestMiddleware.cs +++ b/LM.Core/Middleware/HttpRequestMiddleware.cs @@ -4,7 +4,7 @@ using System.IO; using System.Collections.Generic; using System.Text; -namespace VOL.Core.Middleware +namespace LM.Core.Middleware { public class HttpRequestMiddleware { diff --git a/VOL.Core/ModelBinder/BaseBinderProvider.cs b/LM.Core/ModelBinder/BaseBinderProvider.cs similarity index 90% rename from VOL.Core/ModelBinder/BaseBinderProvider.cs rename to LM.Core/ModelBinder/BaseBinderProvider.cs index 8478f26..0b46630 100644 --- a/VOL.Core/ModelBinder/BaseBinderProvider.cs +++ b/LM.Core/ModelBinder/BaseBinderProvider.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Linq; -namespace VOL.Core.ModelBinder +namespace LM.Core.ModelBinder { public class BaseBinderProvider : IModelBinderProvider { @@ -28,8 +28,8 @@ namespace VOL.Core.ModelBinder AddType(typeof(Dictionary)); AddType(typeof(List>)); AddType(typeof(List)); - AddType(typeof(List)); - AddType(typeof(VOL.Entity.DomainModels.Sys_TableInfo)); + AddType(typeof(List)); + AddType(typeof(LM.Entity.DomainModels.Sys_TableInfo)); } /// /// 增加一个委托用于调用 return new BaseModelBinder();时对参数进行行校验,待完.. diff --git a/VOL.Core/ModelBinder/BaseModelBinder.cs b/LM.Core/ModelBinder/BaseModelBinder.cs similarity index 95% rename from VOL.Core/ModelBinder/BaseModelBinder.cs rename to LM.Core/ModelBinder/BaseModelBinder.cs index 614a3f2..a8fe1fa 100644 --- a/VOL.Core/ModelBinder/BaseModelBinder.cs +++ b/LM.Core/ModelBinder/BaseModelBinder.cs @@ -2,9 +2,9 @@ using System; using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Entity.DomainModels; +using LM.Entity.DomainModels; -namespace VOL.Core.ModelBinder +namespace LM.Core.ModelBinder { public class BaseModelBinder : IModelBinder { diff --git a/VOL.Core/ModelBinder/BinderObject.cs b/LM.Core/ModelBinder/BinderObject.cs similarity index 85% rename from VOL.Core/ModelBinder/BinderObject.cs rename to LM.Core/ModelBinder/BinderObject.cs index c939428..192447d 100644 --- a/VOL.Core/ModelBinder/BinderObject.cs +++ b/LM.Core/ModelBinder/BinderObject.cs @@ -1,6 +1,6 @@ using System; -namespace VOL.Core.ModelBinder +namespace LM.Core.ModelBinder { public class BinderObject where T : class { diff --git a/VOL.Core/ObjectActionValidator/ExpressValidator/GeneralOptions.cs b/LM.Core/ObjectActionValidator/ExpressValidator/GeneralOptions.cs similarity index 98% rename from VOL.Core/ObjectActionValidator/ExpressValidator/GeneralOptions.cs rename to LM.Core/ObjectActionValidator/ExpressValidator/GeneralOptions.cs index 8db4ffa..2b14388 100644 --- a/VOL.Core/ObjectActionValidator/ExpressValidator/GeneralOptions.cs +++ b/LM.Core/ObjectActionValidator/ExpressValidator/GeneralOptions.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.ObjectActionValidator +namespace LM.Core.ObjectActionValidator { /// /// 普通参数配置 diff --git a/VOL.Core/ObjectActionValidator/ExpressValidator/MethodsValidator.cs b/LM.Core/ObjectActionValidator/ExpressValidator/MethodsValidator.cs similarity index 99% rename from VOL.Core/ObjectActionValidator/ExpressValidator/MethodsValidator.cs rename to LM.Core/ObjectActionValidator/ExpressValidator/MethodsValidator.cs index 765723c..334eee3 100644 --- a/VOL.Core/ObjectActionValidator/ExpressValidator/MethodsValidator.cs +++ b/LM.Core/ObjectActionValidator/ExpressValidator/MethodsValidator.cs @@ -8,12 +8,12 @@ using System.Linq; using System.Linq.Expressions; using System.Reflection; using System.Text; -using VOL.Core.Extensions; -using VOL.Core.Filters; -using VOL.Core.Utilities; +using LM.Core.Extensions; +using LM.Core.Filters; +using LM.Core.Utilities; -namespace VOL.Core.ObjectActionValidator +namespace LM.Core.ObjectActionValidator { public static class MethodsValidator { diff --git a/VOL.Core/ObjectActionValidator/ExpressValidator/ObjectModelValidatorState.cs b/LM.Core/ObjectActionValidator/ExpressValidator/ObjectModelValidatorState.cs similarity index 96% rename from VOL.Core/ObjectActionValidator/ExpressValidator/ObjectModelValidatorState.cs rename to LM.Core/ObjectActionValidator/ExpressValidator/ObjectModelValidatorState.cs index b1e7db9..cfc8e0a 100644 --- a/VOL.Core/ObjectActionValidator/ExpressValidator/ObjectModelValidatorState.cs +++ b/LM.Core/ObjectActionValidator/ExpressValidator/ObjectModelValidatorState.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.ObjectActionValidator +namespace LM.Core.ObjectActionValidator { public class ObjectModelValidatorState { diff --git a/VOL.Core/ObjectActionValidator/Filters/ObjectGeneralValidatorFilter.cs b/LM.Core/ObjectActionValidator/Filters/ObjectGeneralValidatorFilter.cs similarity index 85% rename from VOL.Core/ObjectActionValidator/Filters/ObjectGeneralValidatorFilter.cs rename to LM.Core/ObjectActionValidator/Filters/ObjectGeneralValidatorFilter.cs index 3e4bc99..cd21ff4 100644 --- a/VOL.Core/ObjectActionValidator/Filters/ObjectGeneralValidatorFilter.cs +++ b/LM.Core/ObjectActionValidator/Filters/ObjectGeneralValidatorFilter.cs @@ -4,10 +4,10 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Text; -using VOL.Core.Infrastructure; -using VOL.Core.ObjectActionValidator; +using LM.Core.Infrastructure; +using LM.Core.ObjectActionValidator; -namespace VOL.Core.ObjectActionValidator +namespace LM.Core.ObjectActionValidator { //General public class ObjectGeneralValidatorFilter :Attribute, IFilterMetadata diff --git a/VOL.Core/ObjectActionValidator/Filters/ObjectModelValidatorFilter.cs b/LM.Core/ObjectActionValidator/Filters/ObjectModelValidatorFilter.cs similarity index 92% rename from VOL.Core/ObjectActionValidator/Filters/ObjectModelValidatorFilter.cs rename to LM.Core/ObjectActionValidator/Filters/ObjectModelValidatorFilter.cs index c8ac51e..7cb8759 100644 --- a/VOL.Core/ObjectActionValidator/Filters/ObjectModelValidatorFilter.cs +++ b/LM.Core/ObjectActionValidator/Filters/ObjectModelValidatorFilter.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; -namespace VOL.Core.ObjectActionValidator +namespace LM.Core.ObjectActionValidator { public class ObjectModelValidatorFilter : Attribute { diff --git a/VOL.Core/ObjectActionValidator/NullObjectModelValidator.cs b/LM.Core/ObjectActionValidator/NullObjectModelValidator.cs similarity index 87% rename from VOL.Core/ObjectActionValidator/NullObjectModelValidator.cs rename to LM.Core/ObjectActionValidator/NullObjectModelValidator.cs index d12f9ec..c5dd3a0 100644 --- a/VOL.Core/ObjectActionValidator/NullObjectModelValidator.cs +++ b/LM.Core/ObjectActionValidator/NullObjectModelValidator.cs @@ -5,10 +5,10 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; -using VOL.Core.Extensions; -using VOL.Core.Filters; +using LM.Core.Extensions; +using LM.Core.Filters; -namespace VOL.Core.ObjectActionValidator +namespace LM.Core.ObjectActionValidator { public class NullObjectModelValidator : IObjectModelValidator { diff --git a/VOL.Core/ObjectActionValidator/ValidationContainer.cs b/LM.Core/ObjectActionValidator/ValidationContainer.cs similarity index 97% rename from VOL.Core/ObjectActionValidator/ValidationContainer.cs rename to LM.Core/ObjectActionValidator/ValidationContainer.cs index 843740c..3af3d00 100644 --- a/VOL.Core/ObjectActionValidator/ValidationContainer.cs +++ b/LM.Core/ObjectActionValidator/ValidationContainer.cs @@ -3,10 +3,10 @@ using System; using System.Collections.Generic; using System.Linq.Expressions; using System.Text; -using VOL.Core.Extensions; -using VOL.Entity.DomainModels; +using LM.Core.Extensions; +using LM.Entity.DomainModels; -namespace VOL.Core.ObjectActionValidator +namespace LM.Core.ObjectActionValidator { /// /// 对方法指定属性校验,此处配置完成就不用每处都写if esle判断值是合法 diff --git a/VOL.Core/Properties/launchSettings.json b/LM.Core/Properties/launchSettings.json similarity index 97% rename from VOL.Core/Properties/launchSettings.json rename to LM.Core/Properties/launchSettings.json index 17f5f46..bd14d1c 100644 --- a/VOL.Core/Properties/launchSettings.json +++ b/LM.Core/Properties/launchSettings.json @@ -15,7 +15,7 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, - "VOL.Core": { + "LM.Core": { "commandName": "Project", "launchBrowser": true, "environmentVariables": { diff --git a/VOL.Core/Quartz/HttpManager.cs b/LM.Core/Quartz/HttpManager.cs similarity index 97% rename from VOL.Core/Quartz/HttpManager.cs rename to LM.Core/Quartz/HttpManager.cs index 46957e0..1243788 100644 --- a/VOL.Core/Quartz/HttpManager.cs +++ b/LM.Core/Quartz/HttpManager.cs @@ -7,9 +7,9 @@ using System.Net.Http; using System.Net.Http.Headers; using System.Text; using System.Threading.Tasks; -using VOL.Core.Extensions; +using LM.Core.Extensions; -namespace VOL.Core.Quartz +namespace LM.Core.Quartz { public static class HttpManager { diff --git a/VOL.Core/Quartz/HttpResultfulJob.cs b/LM.Core/Quartz/HttpResultfulJob.cs similarity index 97% rename from VOL.Core/Quartz/HttpResultfulJob.cs rename to LM.Core/Quartz/HttpResultfulJob.cs index 4e82e39..3ec1dfb 100644 --- a/VOL.Core/Quartz/HttpResultfulJob.cs +++ b/LM.Core/Quartz/HttpResultfulJob.cs @@ -8,11 +8,11 @@ using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Entity.DomainModels; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Entity.DomainModels; -namespace VOL.Core.Quartz +namespace LM.Core.Quartz { public class HttpResultfulJob : IJob { diff --git a/VOL.Core/Quartz/IOCJobFactory.cs b/LM.Core/Quartz/IOCJobFactory.cs similarity index 96% rename from VOL.Core/Quartz/IOCJobFactory.cs rename to LM.Core/Quartz/IOCJobFactory.cs index ad328e7..d89e886 100644 --- a/VOL.Core/Quartz/IOCJobFactory.cs +++ b/LM.Core/Quartz/IOCJobFactory.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -namespace VOL.Core.Quartz +namespace LM.Core.Quartz { public class IOCJobFactory: IJobFactory { diff --git a/VOL.Core/Quartz/JobAction.cs b/LM.Core/Quartz/JobAction.cs similarity index 90% rename from VOL.Core/Quartz/JobAction.cs rename to LM.Core/Quartz/JobAction.cs index 4e64657..d1148ca 100644 --- a/VOL.Core/Quartz/JobAction.cs +++ b/LM.Core/Quartz/JobAction.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Quartz +namespace LM.Core.Quartz { public enum JobAction { diff --git a/VOL.Core/Quartz/QuartzAuthorization.cs b/LM.Core/Quartz/QuartzAuthorization.cs similarity index 96% rename from VOL.Core/Quartz/QuartzAuthorization.cs rename to LM.Core/Quartz/QuartzAuthorization.cs index 0a8f77f..10b25d2 100644 --- a/VOL.Core/Quartz/QuartzAuthorization.cs +++ b/LM.Core/Quartz/QuartzAuthorization.cs @@ -5,10 +5,10 @@ using System; using System.Collections.Generic; using System.Security.Cryptography; using System.Text; -using VOL.Core.Configuration; -using VOL.Core.Extensions; +using LM.Core.Configuration; +using LM.Core.Extensions; -namespace VOL.Core.Quartz +namespace LM.Core.Quartz { public static class QuartzAuthorization { diff --git a/VOL.Core/Quartz/QuartzFileHelper.cs b/LM.Core/Quartz/QuartzFileHelper.cs similarity index 88% rename from VOL.Core/Quartz/QuartzFileHelper.cs rename to LM.Core/Quartz/QuartzFileHelper.cs index f182a1d..6e51fc5 100644 --- a/VOL.Core/Quartz/QuartzFileHelper.cs +++ b/LM.Core/Quartz/QuartzFileHelper.cs @@ -1,12 +1,12 @@ using System; using System.Collections.Generic; using System.Text; -using VOL.Core.Configuration; -using VOL.Core.Extensions; -using VOL.Core.Utilities; +using LM.Core.Configuration; +using LM.Core.Extensions; +using LM.Core.Utilities; -namespace VOL.Core.Quartz +namespace LM.Core.Quartz { public static class QuartzFileHelper { diff --git a/VOL.Core/Quartz/QuartzNETExtension.cs b/LM.Core/Quartz/QuartzNETExtension.cs similarity index 98% rename from VOL.Core/Quartz/QuartzNETExtension.cs rename to LM.Core/Quartz/QuartzNETExtension.cs index d6cb3aa..d63088e 100644 --- a/VOL.Core/Quartz/QuartzNETExtension.cs +++ b/LM.Core/Quartz/QuartzNETExtension.cs @@ -11,13 +11,13 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Quartz; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Quartz; +using LM.Core.Utilities; +using LM.Entity.DomainModels; -namespace VOL.Core.Quartz +namespace LM.Core.Quartz { public static class QuartzNETExtension { diff --git a/VOL.Core/Services/ActionExecutingLogger.cs b/LM.Core/Services/ActionExecutingLogger.cs similarity index 96% rename from VOL.Core/Services/ActionExecutingLogger.cs rename to LM.Core/Services/ActionExecutingLogger.cs index 1a17d4b..c981a8f 100644 --- a/VOL.Core/Services/ActionExecutingLogger.cs +++ b/LM.Core/Services/ActionExecutingLogger.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Text; -namespace VOL.Core.Services +namespace LM.Core.Services { public class ActionObserver { diff --git a/VOL.Core/Services/Logger.cs b/LM.Core/Services/Logger.cs similarity index 97% rename from VOL.Core/Services/Logger.cs rename to LM.Core/Services/Logger.cs index c83fb4b..6d2aa72 100644 --- a/VOL.Core/Services/Logger.cs +++ b/LM.Core/Services/Logger.cs @@ -9,16 +9,16 @@ using System.Text; using System.Threading; using System.Threading.Tasks; using System.Web; -using VOL.Core.Configuration; -using VOL.Core.Const; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Entity.DomainModels; +using LM.Core.Configuration; +using LM.Core.Const; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Entity.DomainModels; -namespace VOL.Core.Services +namespace LM.Core.Services { /// /// 通过内置队列异步定时写日志 diff --git a/VOL.Core/Tenancy/TenancyManager.cs b/LM.Core/Tenancy/TenancyManager.cs similarity index 97% rename from VOL.Core/Tenancy/TenancyManager.cs rename to LM.Core/Tenancy/TenancyManager.cs index 6d714cc..48278a8 100644 --- a/VOL.Core/Tenancy/TenancyManager.cs +++ b/LM.Core/Tenancy/TenancyManager.cs @@ -1,9 +1,9 @@ using System; using System.Collections.Generic; using System.Text; -using VOL.Core.ManageUser; +using LM.Core.ManageUser; -namespace VOL.Core.Tenancy +namespace LM.Core.Tenancy { public static class TenancyManager where T : class { diff --git a/VOL.Core/UserManager/DepartmentContext.cs b/LM.Core/UserManager/DepartmentContext.cs similarity index 94% rename from VOL.Core/UserManager/DepartmentContext.cs rename to LM.Core/UserManager/DepartmentContext.cs index 800a4ab..0a5dee3 100644 --- a/VOL.Core/UserManager/DepartmentContext.cs +++ b/LM.Core/UserManager/DepartmentContext.cs @@ -3,13 +3,13 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Text; -using VOL.Core.CacheManager; -using VOL.Core.DBManager; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.CacheManager; +using LM.Core.DBManager; +using LM.Core.Extensions.AutofacManager; +using LM.Core.Utilities; +using LM.Entity.DomainModels; -namespace VOL.Core.UserManager +namespace LM.Core.UserManager { public static class DepartmentContext { diff --git a/VOL.Core/UserManager/RoleContext.cs b/LM.Core/UserManager/RoleContext.cs similarity index 95% rename from VOL.Core/UserManager/RoleContext.cs rename to LM.Core/UserManager/RoleContext.cs index 0ee601e..8e4effd 100644 --- a/VOL.Core/UserManager/RoleContext.cs +++ b/LM.Core/UserManager/RoleContext.cs @@ -2,14 +2,14 @@ using System; using System.Collections.Generic; using System.Linq; -using VOL.Core.CacheManager; -using VOL.Core.DBManager; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Entity.DomainModels; +using LM.Core.CacheManager; +using LM.Core.DBManager; +using LM.Core.Extensions.AutofacManager; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Entity.DomainModels; -namespace VOL.Core.UserManager +namespace LM.Core.UserManager { public static class RoleContext { diff --git a/VOL.Core/UserManager/UserContext.cs b/LM.Core/UserManager/UserContext.cs similarity index 98% rename from VOL.Core/UserManager/UserContext.cs rename to LM.Core/UserManager/UserContext.cs index dfbfe60..f01036f 100644 --- a/VOL.Core/UserManager/UserContext.cs +++ b/LM.Core/UserManager/UserContext.cs @@ -6,16 +6,16 @@ using System.IdentityModel.Tokens.Jwt; using System.Linq; using System.Security.Claims; using System.Threading.Tasks; -using VOL.Core.CacheManager; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.UserManager; -using VOL.Entity; -using VOL.Entity.DomainModels; +using LM.Core.CacheManager; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.Extensions.AutofacManager; +using LM.Core.UserManager; +using LM.Entity; +using LM.Entity.DomainModels; -namespace VOL.Core.ManageUser +namespace LM.Core.ManageUser { public class UserContext { diff --git a/VOL.Core/Utilities/ApiAuthorizeRequire.cs b/LM.Core/Utilities/ApiAuthorizeRequire.cs similarity index 86% rename from VOL.Core/Utilities/ApiAuthorizeRequire.cs rename to LM.Core/Utilities/ApiAuthorizeRequire.cs index 3653bdf..64b535d 100644 --- a/VOL.Core/Utilities/ApiAuthorizeRequire.cs +++ b/LM.Core/Utilities/ApiAuthorizeRequire.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class ApiAuthorizeRequire { diff --git a/VOL.Core/Utilities/DateTimeExtension.cs b/LM.Core/Utilities/DateTimeExtension.cs similarity index 97% rename from VOL.Core/Utilities/DateTimeExtension.cs rename to LM.Core/Utilities/DateTimeExtension.cs index 4d2b29c..f19291d 100644 --- a/VOL.Core/Utilities/DateTimeExtension.cs +++ b/LM.Core/Utilities/DateTimeExtension.cs @@ -5,7 +5,7 @@ using System.Text; using System.IO; using System.Collections; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public static class DateTimeExtension { diff --git a/VOL.Core/Utilities/DateTimeHelper.cs b/LM.Core/Utilities/DateTimeHelper.cs similarity index 96% rename from VOL.Core/Utilities/DateTimeHelper.cs rename to LM.Core/Utilities/DateTimeHelper.cs index ac140af..3cb4ed1 100644 --- a/VOL.Core/Utilities/DateTimeHelper.cs +++ b/LM.Core/Utilities/DateTimeHelper.cs @@ -3,7 +3,7 @@ using System.Text; using System; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class DateTimeHelper { diff --git a/VOL.Core/Utilities/DynamicPropertyBag .cs b/LM.Core/Utilities/DynamicPropertyBag .cs similarity index 97% rename from VOL.Core/Utilities/DynamicPropertyBag .cs rename to LM.Core/Utilities/DynamicPropertyBag .cs index 90045ec..6689ebb 100644 --- a/VOL.Core/Utilities/DynamicPropertyBag .cs +++ b/LM.Core/Utilities/DynamicPropertyBag .cs @@ -5,7 +5,7 @@ using System.Text; using System.Dynamic; using System.IO; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { /// /// 动态属性Bag diff --git a/VOL.Core/Utilities/EPPlusHelper.cs b/LM.Core/Utilities/EPPlusHelper.cs similarity index 99% rename from VOL.Core/Utilities/EPPlusHelper.cs rename to LM.Core/Utilities/EPPlusHelper.cs index 07173fd..947fce6 100644 --- a/VOL.Core/Utilities/EPPlusHelper.cs +++ b/LM.Core/Utilities/EPPlusHelper.cs @@ -9,12 +9,12 @@ using System.IO; using System.Linq; using System.Linq.Expressions; using System.Reflection; -using VOL.Core.DBManager; -using VOL.Core.Extensions; -using VOL.Core.Infrastructure; -using VOL.Entity.DomainModels; +using LM.Core.DBManager; +using LM.Core.Extensions; +using LM.Core.Infrastructure; +using LM.Entity.DomainModels; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class EPPlusHelper { diff --git a/VOL.Core/Utilities/FileHelper.cs b/LM.Core/Utilities/FileHelper.cs similarity index 99% rename from VOL.Core/Utilities/FileHelper.cs rename to LM.Core/Utilities/FileHelper.cs index 5ac20c9..ec3c960 100644 --- a/VOL.Core/Utilities/FileHelper.cs +++ b/LM.Core/Utilities/FileHelper.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; -using VOL.Core.Extensions; +using LM.Core.Extensions; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class FileHelper { diff --git a/VOL.Core/Utilities/HttpContext.cs b/LM.Core/Utilities/HttpContext.cs similarity index 93% rename from VOL.Core/Utilities/HttpContext.cs rename to LM.Core/Utilities/HttpContext.cs index 13135e3..a49576b 100644 --- a/VOL.Core/Utilities/HttpContext.cs +++ b/LM.Core/Utilities/HttpContext.cs @@ -3,7 +3,7 @@ using System; using System.Collections.Generic; using System.Text; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public static class HttpContext { diff --git a/VOL.Core/Utilities/HttpManager.cs b/LM.Core/Utilities/HttpManager.cs similarity index 98% rename from VOL.Core/Utilities/HttpManager.cs rename to LM.Core/Utilities/HttpManager.cs index cdfb894..44cb8b8 100644 --- a/VOL.Core/Utilities/HttpManager.cs +++ b/LM.Core/Utilities/HttpManager.cs @@ -5,7 +5,7 @@ using System.Net; using System.Text; using System.Threading.Tasks; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class HttpManager { diff --git a/VOL.Core/Utilities/JwtHelper.cs b/LM.Core/Utilities/JwtHelper.cs similarity index 97% rename from VOL.Core/Utilities/JwtHelper.cs rename to LM.Core/Utilities/JwtHelper.cs index f3ece2d..96f2b84 100644 --- a/VOL.Core/Utilities/JwtHelper.cs +++ b/LM.Core/Utilities/JwtHelper.cs @@ -4,11 +4,11 @@ using System.Collections.Generic; using System.IdentityModel.Tokens.Jwt; using System.Security.Claims; using System.Text; -using VOL.Core.Configuration; -using VOL.Core.Extensions; -using VOL.Entity.DomainModels; +using LM.Core.Configuration; +using LM.Core.Extensions; +using LM.Entity.DomainModels; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class JwtHelper { diff --git a/VOL.Core/Utilities/MailHelper.cs b/LM.Core/Utilities/MailHelper.cs similarity index 95% rename from VOL.Core/Utilities/MailHelper.cs rename to LM.Core/Utilities/MailHelper.cs index 7bc183f..d625c0f 100644 --- a/VOL.Core/Utilities/MailHelper.cs +++ b/LM.Core/Utilities/MailHelper.cs @@ -4,10 +4,10 @@ using System.Collections.Generic; using System.Net; using System.Net.Mail; using System.Text; -using VOL.Core.Configuration; -using VOL.Core.Extensions; +using LM.Core.Configuration; +using LM.Core.Extensions; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public static class MailHelper { diff --git a/VOL.Core/Utilities/NPOIHelper.cs b/LM.Core/Utilities/NPOIHelper.cs similarity index 99% rename from VOL.Core/Utilities/NPOIHelper.cs rename to LM.Core/Utilities/NPOIHelper.cs index 33cbde4..2b2239e 100644 --- a/VOL.Core/Utilities/NPOIHelper.cs +++ b/LM.Core/Utilities/NPOIHelper.cs @@ -7,7 +7,7 @@ //using System.IO; //using System.Text; -//namespace VOL.Core.Utilities +//namespace LM.Core.Utilities //{ // public class NPOIHelper // { diff --git a/VOL.Core/Utilities/PDFHelper/IPDFService.cs b/LM.Core/Utilities/PDFHelper/IPDFService.cs similarity index 90% rename from VOL.Core/Utilities/PDFHelper/IPDFService.cs rename to LM.Core/Utilities/PDFHelper/IPDFService.cs index 006400f..a373484 100644 --- a/VOL.Core/Utilities/PDFHelper/IPDFService.cs +++ b/LM.Core/Utilities/PDFHelper/IPDFService.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.Utilities.PDFHelper +namespace LM.Core.Utilities.PDFHelper { /// /// pdf接口 diff --git a/VOL.Core/Utilities/PDFHelper/PDFService.cs b/LM.Core/Utilities/PDFHelper/PDFService.cs similarity index 98% rename from VOL.Core/Utilities/PDFHelper/PDFService.cs rename to LM.Core/Utilities/PDFHelper/PDFService.cs index 54bae2e..a87d4bb 100644 --- a/VOL.Core/Utilities/PDFHelper/PDFService.cs +++ b/LM.Core/Utilities/PDFHelper/PDFService.cs @@ -2,7 +2,7 @@ //using WkHtmlToPdfDotNet; //using WkHtmlToPdfDotNet.Contracts; -//namespace VOL.Core.Utilities.PDFHelper +//namespace LM.Core.Utilities.PDFHelper //{ // /// // /// pdf实现 diff --git a/VOL.Core/Utilities/Response/FilterResponse.cs b/LM.Core/Utilities/Response/FilterResponse.cs similarity index 94% rename from VOL.Core/Utilities/Response/FilterResponse.cs rename to LM.Core/Utilities/Response/FilterResponse.cs index fca90f5..2f85254 100644 --- a/VOL.Core/Utilities/Response/FilterResponse.cs +++ b/LM.Core/Utilities/Response/FilterResponse.cs @@ -1,13 +1,13 @@ -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.Enums; +using LM.Core.Extensions; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; using Newtonsoft.Json; using System.Net; using System.Text; -using VOL.Core.Const; +using LM.Core.Const; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public static class FilterResponse { diff --git a/VOL.Core/Utilities/Response/WebResponseContent.cs b/LM.Core/Utilities/Response/WebResponseContent.cs similarity index 96% rename from VOL.Core/Utilities/Response/WebResponseContent.cs rename to LM.Core/Utilities/Response/WebResponseContent.cs index aeb7048..4a12ff6 100644 --- a/VOL.Core/Utilities/Response/WebResponseContent.cs +++ b/LM.Core/Utilities/Response/WebResponseContent.cs @@ -1,7 +1,7 @@ -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.Enums; +using LM.Core.Extensions; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class WebResponseContent { diff --git a/VOL.Core/Utilities/SecurityEncDecrypt.cs b/LM.Core/Utilities/SecurityEncDecrypt.cs similarity index 98% rename from VOL.Core/Utilities/SecurityEncDecrypt.cs rename to LM.Core/Utilities/SecurityEncDecrypt.cs index 4750d42..09c1e9a 100644 --- a/VOL.Core/Utilities/SecurityEncDecrypt.cs +++ b/LM.Core/Utilities/SecurityEncDecrypt.cs @@ -3,9 +3,9 @@ using System; using System.IO; using System.Security.Cryptography; using System.Text; -using VOL.Core.Services; +using LM.Core.Services; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public class SecurityEncDecrypt { diff --git a/VOL.Core/Utilities/VierificationCode.cs b/LM.Core/Utilities/VierificationCode.cs similarity index 99% rename from VOL.Core/Utilities/VierificationCode.cs rename to LM.Core/Utilities/VierificationCode.cs index c297d3b..98c9950 100644 --- a/VOL.Core/Utilities/VierificationCode.cs +++ b/LM.Core/Utilities/VierificationCode.cs @@ -5,7 +5,7 @@ using System.Drawing.Imaging; using System.IO; using System.Text; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public static class VierificationCode { diff --git a/VOL.Core/Utilities/VierificationCodeHelpers.cs b/LM.Core/Utilities/VierificationCodeHelpers.cs similarity index 99% rename from VOL.Core/Utilities/VierificationCodeHelpers.cs rename to LM.Core/Utilities/VierificationCodeHelpers.cs index 3ed7a2d..a3e3875 100644 --- a/VOL.Core/Utilities/VierificationCodeHelpers.cs +++ b/LM.Core/Utilities/VierificationCodeHelpers.cs @@ -3,7 +3,7 @@ using System; using System.IO; using System.Linq; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public static class VierificationCodeHelpers { //验证码字体集合 diff --git a/VOL.Core/Utilities/VierificationCodeServices.cs b/LM.Core/Utilities/VierificationCodeServices.cs similarity index 99% rename from VOL.Core/Utilities/VierificationCodeServices.cs rename to LM.Core/Utilities/VierificationCodeServices.cs index 85d66eb..a86b10a 100644 --- a/VOL.Core/Utilities/VierificationCodeServices.cs +++ b/LM.Core/Utilities/VierificationCodeServices.cs @@ -4,7 +4,7 @@ using System.IO; using System.Linq; using System.Runtime.InteropServices; -namespace VOL.Core.Utilities +namespace LM.Core.Utilities { public static class VierificationCodeServices { //验证码字体集合 diff --git a/VOL.Core/Utilities/XmlHelper.cs b/LM.Core/Utilities/XmlHelper.cs similarity index 100% rename from VOL.Core/Utilities/XmlHelper.cs rename to LM.Core/Utilities/XmlHelper.cs diff --git a/VOL.Core/WorkFlow/AuditBack.cs b/LM.Core/WorkFlow/AuditBack.cs similarity index 87% rename from VOL.Core/WorkFlow/AuditBack.cs rename to LM.Core/WorkFlow/AuditBack.cs index edd577d..21c32ff 100644 --- a/VOL.Core/WorkFlow/AuditBack.cs +++ b/LM.Core/WorkFlow/AuditBack.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public enum AuditBack { diff --git a/VOL.Core/WorkFlow/AuditRefuse.cs b/LM.Core/WorkFlow/AuditRefuse.cs similarity index 87% rename from VOL.Core/WorkFlow/AuditRefuse.cs rename to LM.Core/WorkFlow/AuditRefuse.cs index 47433f5..bb296f2 100644 --- a/VOL.Core/WorkFlow/AuditRefuse.cs +++ b/LM.Core/WorkFlow/AuditRefuse.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public enum AuditRefuse { diff --git a/VOL.Core/WorkFlow/AuditStatus.cs b/LM.Core/WorkFlow/AuditStatus.cs similarity index 92% rename from VOL.Core/WorkFlow/AuditStatus.cs rename to LM.Core/WorkFlow/AuditStatus.cs index f2706e9..a3f2da2 100644 --- a/VOL.Core/WorkFlow/AuditStatus.cs +++ b/LM.Core/WorkFlow/AuditStatus.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public enum AuditStatus { diff --git a/VOL.Core/WorkFlow/FieldFilter.cs b/LM.Core/WorkFlow/FieldFilter.cs similarity index 89% rename from VOL.Core/WorkFlow/FieldFilter.cs rename to LM.Core/WorkFlow/FieldFilter.cs index 46ace02..a48cafc 100644 --- a/VOL.Core/WorkFlow/FieldFilter.cs +++ b/LM.Core/WorkFlow/FieldFilter.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public class FieldFilter { diff --git a/VOL.Core/WorkFlow/StepType.cs b/LM.Core/WorkFlow/StepType.cs similarity index 84% rename from VOL.Core/WorkFlow/StepType.cs rename to LM.Core/WorkFlow/StepType.cs index 9950913..324857a 100644 --- a/VOL.Core/WorkFlow/StepType.cs +++ b/LM.Core/WorkFlow/StepType.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public enum StepType { diff --git a/VOL.Core/WorkFlow/WorkFlowContainer.cs b/LM.Core/WorkFlow/WorkFlowContainer.cs similarity index 98% rename from VOL.Core/WorkFlow/WorkFlowContainer.cs rename to LM.Core/WorkFlow/WorkFlowContainer.cs index 8bc790c..1db699c 100644 --- a/VOL.Core/WorkFlow/WorkFlowContainer.cs +++ b/LM.Core/WorkFlow/WorkFlowContainer.cs @@ -7,13 +7,13 @@ using System.Linq.Expressions; using System.Reflection; using System.Text; using System.Threading.Tasks; -using VOL.Core.DBManager; -using VOL.Core.DbSqlSugar; -using VOL.Core.Extensions; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.DBManager; +using LM.Core.DbSqlSugar; +using LM.Core.Extensions; +using LM.Core.Utilities; +using LM.Entity.DomainModels; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public class WorkFlowContainer { diff --git a/VOL.Core/WorkFlow/WorkFlowFilter.cs b/LM.Core/WorkFlow/WorkFlowFilter.cs similarity index 97% rename from VOL.Core/WorkFlow/WorkFlowFilter.cs rename to LM.Core/WorkFlow/WorkFlowFilter.cs index f9d0aab..f14bdfe 100644 --- a/VOL.Core/WorkFlow/WorkFlowFilter.cs +++ b/LM.Core/WorkFlow/WorkFlowFilter.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Text; -using VOL.Core.Enums; -using VOL.Core.Extensions; +using LM.Core.Enums; +using LM.Core.Extensions; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public static class WorkFlowFilter { diff --git a/VOL.Core/WorkFlow/WorkFlowManager.cs b/LM.Core/WorkFlow/WorkFlowManager.cs similarity index 99% rename from VOL.Core/WorkFlow/WorkFlowManager.cs rename to LM.Core/WorkFlow/WorkFlowManager.cs index 1338bbc..3c972be 100644 --- a/VOL.Core/WorkFlow/WorkFlowManager.cs +++ b/LM.Core/WorkFlow/WorkFlowManager.cs @@ -8,17 +8,17 @@ using System.Net; using System.Reflection; using System.Text; using System.Threading.Tasks; -using VOL.Core.DbContext; -using VOL.Core.DBManager; -using VOL.Core.Extensions; -using VOL.Core.Infrastructure; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.DbContext; +using LM.Core.DBManager; +using LM.Core.Extensions; +using LM.Core.Infrastructure; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Core.Utilities; +using LM.Entity.DomainModels; using static Npgsql.PostgresTypes.PostgresCompositeType; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public static class WorkFlowManager { diff --git a/VOL.Core/WorkFlow/WorkFlowTableOptions.cs b/LM.Core/WorkFlow/WorkFlowTableOptions.cs similarity index 89% rename from VOL.Core/WorkFlow/WorkFlowTableOptions.cs rename to LM.Core/WorkFlow/WorkFlowTableOptions.cs index d37de9c..a5d5aa2 100644 --- a/VOL.Core/WorkFlow/WorkFlowTableOptions.cs +++ b/LM.Core/WorkFlow/WorkFlowTableOptions.cs @@ -3,9 +3,9 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq.Expressions; using System.Text; -using VOL.Entity.DomainModels; +using LM.Entity.DomainModels; -namespace VOL.Core.WorkFlow +namespace LM.Core.WorkFlow { public class WorkFlowTableOptions:Sys_WorkFlow { diff --git a/VOL.YSErp/VOL.YSErp.csproj b/LM.DingTalk/LM.DingTalk.csproj similarity index 79% rename from VOL.YSErp/VOL.YSErp.csproj rename to LM.DingTalk/LM.DingTalk.csproj index 4d4b247..8621265 100644 --- a/VOL.YSErp/VOL.YSErp.csproj +++ b/LM.DingTalk/LM.DingTalk.csproj @@ -7,7 +7,7 @@ - + diff --git a/VOL.DingTalk/Models/Biz/DingTalkDepartment.cs b/LM.DingTalk/Models/Biz/DingTalkDepartment.cs similarity index 96% rename from VOL.DingTalk/Models/Biz/DingTalkDepartment.cs rename to LM.DingTalk/Models/Biz/DingTalkDepartment.cs index eb9fdf9..e31cf6a 100644 --- a/VOL.DingTalk/Models/Biz/DingTalkDepartment.cs +++ b/LM.DingTalk/Models/Biz/DingTalkDepartment.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.DingTalk.Models.Biz +namespace LM.DingTalk.Models.Biz { public class DingTalkDepartment diff --git a/VOL.DingTalk/Models/Biz/DingTalkEmployee.cs b/LM.DingTalk/Models/Biz/DingTalkEmployee.cs similarity index 98% rename from VOL.DingTalk/Models/Biz/DingTalkEmployee.cs rename to LM.DingTalk/Models/Biz/DingTalkEmployee.cs index 3673d93..13e3d46 100644 --- a/VOL.DingTalk/Models/Biz/DingTalkEmployee.cs +++ b/LM.DingTalk/Models/Biz/DingTalkEmployee.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.DingTalk.Models.Biz +namespace LM.DingTalk.Models.Biz { public class DingTalkEmployee { diff --git a/VOL.DingTalk/Models/Biz/DingTalkEmployeeRsp.cs b/LM.DingTalk/Models/Biz/DingTalkEmployeeRsp.cs similarity index 96% rename from VOL.DingTalk/Models/Biz/DingTalkEmployeeRsp.cs rename to LM.DingTalk/Models/Biz/DingTalkEmployeeRsp.cs index 8da6d08..8379307 100644 --- a/VOL.DingTalk/Models/Biz/DingTalkEmployeeRsp.cs +++ b/LM.DingTalk/Models/Biz/DingTalkEmployeeRsp.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.DingTalk.Models.Biz +namespace LM.DingTalk.Models.Biz { public class DingTalkEmployeeRsp { diff --git a/VOL.DingTalk/Models/Biz/DingTalkEmployeeUpdate.cs b/LM.DingTalk/Models/Biz/DingTalkEmployeeUpdate.cs similarity index 99% rename from VOL.DingTalk/Models/Biz/DingTalkEmployeeUpdate.cs rename to LM.DingTalk/Models/Biz/DingTalkEmployeeUpdate.cs index 4f0bbd2..ccd6df1 100644 --- a/VOL.DingTalk/Models/Biz/DingTalkEmployeeUpdate.cs +++ b/LM.DingTalk/Models/Biz/DingTalkEmployeeUpdate.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.DingTalk.Models.Biz +namespace LM.DingTalk.Models.Biz { /// /// 20250929 属性文档参考 https://open.dingtalk.com/document/orgapp/update-dedicated-accounts-information diff --git a/VOL.DingTalk/Models/Biz/DingTalkResponse.cs b/LM.DingTalk/Models/Biz/DingTalkResponse.cs similarity index 92% rename from VOL.DingTalk/Models/Biz/DingTalkResponse.cs rename to LM.DingTalk/Models/Biz/DingTalkResponse.cs index 2cdb3d3..a0fd8ef 100644 --- a/VOL.DingTalk/Models/Biz/DingTalkResponse.cs +++ b/LM.DingTalk/Models/Biz/DingTalkResponse.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.DingTalk.Models.Biz +namespace LM.DingTalk.Models.Biz { internal class DingTalkResponse { diff --git a/VOL.DingTalk/Models/DingTalkConfig.cs b/LM.DingTalk/Models/DingTalkConfig.cs similarity index 97% rename from VOL.DingTalk/Models/DingTalkConfig.cs rename to LM.DingTalk/Models/DingTalkConfig.cs index f54b0d0..3a860db 100644 --- a/VOL.DingTalk/Models/DingTalkConfig.cs +++ b/LM.DingTalk/Models/DingTalkConfig.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.DingTalk.Models +namespace LM.DingTalk.Models { /* "dingtalk": { diff --git a/VOL.DingTalk/Models/SystemToken.cs b/LM.DingTalk/Models/SystemToken.cs similarity index 94% rename from VOL.DingTalk/Models/SystemToken.cs rename to LM.DingTalk/Models/SystemToken.cs index cff57e0..5de99b2 100644 --- a/VOL.DingTalk/Models/SystemToken.cs +++ b/LM.DingTalk/Models/SystemToken.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.DingTalk.Models +namespace LM.DingTalk.Models { public class SystemToken { diff --git a/VOL.DingTalk/Services/Biz/DingTalkService.cs b/LM.DingTalk/Services/Biz/DingTalkService.cs similarity index 99% rename from VOL.DingTalk/Services/Biz/DingTalkService.cs rename to LM.DingTalk/Services/Biz/DingTalkService.cs index 0c4bc5a..c308ad1 100644 --- a/VOL.DingTalk/Services/Biz/DingTalkService.cs +++ b/LM.DingTalk/Services/Biz/DingTalkService.cs @@ -3,12 +3,12 @@ using System.Globalization; using System.Linq; using System.Net.Http.Headers; using System.Text; -using VOL.Core.Services; -using VOL.DingTalk.Models; -using VOL.DingTalk.Models.Biz; -using static VOL.DingTalk.Util; +using LM.Core.Services; +using LM.DingTalk.Models; +using LM.DingTalk.Models.Biz; +using static LM.DingTalk.Util; -namespace VOL.DingTalk.Services.Biz +namespace LM.DingTalk.Services.Biz { public class DingTalkService { diff --git a/VOL.DingTalk/Util.cs b/LM.DingTalk/Util.cs similarity index 95% rename from VOL.DingTalk/Util.cs rename to LM.DingTalk/Util.cs index 2a175f7..e5fcc15 100644 --- a/VOL.DingTalk/Util.cs +++ b/LM.DingTalk/Util.cs @@ -4,9 +4,9 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.DingTalk.Models.Biz; +using LM.DingTalk.Models.Biz; -namespace VOL.DingTalk +namespace LM.DingTalk { public class Util { diff --git a/VOL.Entity/AttributeManager/DBType.cs b/LM.Entity/AttributeManager/DBType.cs similarity index 54% rename from VOL.Entity/AttributeManager/DBType.cs rename to LM.Entity/AttributeManager/DBType.cs index cf01c61..7768c59 100644 --- a/VOL.Entity/AttributeManager/DBType.cs +++ b/LM.Entity/AttributeManager/DBType.cs @@ -1,4 +1,4 @@ -//namespace VOL.Entity.AttributeManager +//namespace LM.Entity.AttributeManager //{ // public class DBType // { diff --git a/VOL.Entity/AttributeManager/EntityAttribute.cs b/LM.Entity/AttributeManager/EntityAttribute.cs similarity index 98% rename from VOL.Entity/AttributeManager/EntityAttribute.cs rename to LM.Entity/AttributeManager/EntityAttribute.cs index 8afd618..0566dc4 100644 --- a/VOL.Entity/AttributeManager/EntityAttribute.cs +++ b/LM.Entity/AttributeManager/EntityAttribute.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity +namespace LM.Entity { public class EntityAttribute : Attribute { diff --git a/VOL.Entity/AttributeManager/PermissionTableAttribute.cs b/LM.Entity/AttributeManager/PermissionTableAttribute.cs similarity index 86% rename from VOL.Entity/AttributeManager/PermissionTableAttribute.cs rename to LM.Entity/AttributeManager/PermissionTableAttribute.cs index c6c1409..c53ac9a 100644 --- a/VOL.Entity/AttributeManager/PermissionTableAttribute.cs +++ b/LM.Entity/AttributeManager/PermissionTableAttribute.cs @@ -1,6 +1,6 @@ using System; -namespace VOL.Entity.AttributeManager +namespace LM.Entity.AttributeManager { public class PermissionTableAttribute : Attribute { diff --git a/VOL.Entity/BaseCore/MappingManager.cs b/LM.Entity/BaseCore/MappingManager.cs similarity index 97% rename from VOL.Entity/BaseCore/MappingManager.cs rename to LM.Entity/BaseCore/MappingManager.cs index 04e490b..bfd1df8 100644 --- a/VOL.Entity/BaseCore/MappingManager.cs +++ b/LM.Entity/BaseCore/MappingManager.cs @@ -6,7 +6,7 @@ using System.Linq; using System.Reflection; using System.Text; -//namespace VOL.Entity.MappingConfiguration +//namespace LM.Entity.MappingConfiguration //{ // public interface IEntityMappingConfiguration diff --git a/VOL.Entity/DomainModels/ApiEntity/Input/ApiSys_UserInput.cs b/LM.Entity/DomainModels/ApiEntity/Input/ApiSys_UserInput.cs similarity index 95% rename from VOL.Entity/DomainModels/ApiEntity/Input/ApiSys_UserInput.cs rename to LM.Entity/DomainModels/ApiEntity/Input/ApiSys_UserInput.cs index 44aee15..2d5b351 100644 --- a/VOL.Entity/DomainModels/ApiEntity/Input/ApiSys_UserInput.cs +++ b/LM.Entity/DomainModels/ApiEntity/Input/ApiSys_UserInput.cs @@ -5,9 +5,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity; +using LM.Entity; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class ApiSys_UserInput { diff --git a/VOL.Entity/DomainModels/ApiEntity/OutPut/ApiSys_UserOutput.cs b/LM.Entity/DomainModels/ApiEntity/OutPut/ApiSys_UserOutput.cs similarity index 95% rename from VOL.Entity/DomainModels/ApiEntity/OutPut/ApiSys_UserOutput.cs rename to LM.Entity/DomainModels/ApiEntity/OutPut/ApiSys_UserOutput.cs index 2f63378..fcb59ec 100644 --- a/VOL.Entity/DomainModels/ApiEntity/OutPut/ApiSys_UserOutput.cs +++ b/LM.Entity/DomainModels/ApiEntity/OutPut/ApiSys_UserOutput.cs @@ -5,9 +5,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity; +using LM.Entity; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class ApiSys_UserOutput { diff --git a/VOL.Entity/DomainModels/Core/LoadSingleDataModel.cs b/LM.Entity/DomainModels/Core/LoadSingleDataModel.cs similarity index 96% rename from VOL.Entity/DomainModels/Core/LoadSingleDataModel.cs rename to LM.Entity/DomainModels/Core/LoadSingleDataModel.cs index 29ba68f..276cddc 100644 --- a/VOL.Entity/DomainModels/Core/LoadSingleDataModel.cs +++ b/LM.Entity/DomainModels/Core/LoadSingleDataModel.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class PageDataOptions { diff --git a/VOL.Entity/DomainModels/Core/PageGridData.cs b/LM.Entity/DomainModels/Core/PageGridData.cs similarity index 94% rename from VOL.Entity/DomainModels/Core/PageGridData.cs rename to LM.Entity/DomainModels/Core/PageGridData.cs index 4765eb8..740b7a0 100644 --- a/VOL.Entity/DomainModels/Core/PageGridData.cs +++ b/LM.Entity/DomainModels/Core/PageGridData.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class PageGridData { diff --git a/VOL.Entity/DomainModels/Core/SaveDataModel.cs b/LM.Entity/DomainModels/Core/SaveDataModel.cs similarity index 93% rename from VOL.Entity/DomainModels/Core/SaveDataModel.cs rename to LM.Entity/DomainModels/Core/SaveDataModel.cs index ab71466..2803b84 100644 --- a/VOL.Entity/DomainModels/Core/SaveDataModel.cs +++ b/LM.Entity/DomainModels/Core/SaveDataModel.cs @@ -2,7 +2,7 @@ using System.Collections; using System.Collections.Generic; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class SaveModel { diff --git a/VOL.Entity/DomainModels/Core/Sys_TableColumn.cs b/LM.Entity/DomainModels/Core/Sys_TableColumn.cs similarity index 98% rename from VOL.Entity/DomainModels/Core/Sys_TableColumn.cs rename to LM.Entity/DomainModels/Core/Sys_TableColumn.cs index 670721b..57df899 100644 --- a/VOL.Entity/DomainModels/Core/Sys_TableColumn.cs +++ b/LM.Entity/DomainModels/Core/Sys_TableColumn.cs @@ -1,10 +1,10 @@ -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using SqlSugar; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Table("Sys_TableColumn")] public class Sys_TableColumn : BaseEntity diff --git a/VOL.Entity/DomainModels/Core/Sys_TableInfo.cs b/LM.Entity/DomainModels/Core/Sys_TableInfo.cs similarity index 96% rename from VOL.Entity/DomainModels/Core/Sys_TableInfo.cs rename to LM.Entity/DomainModels/Core/Sys_TableInfo.cs index 4c74cc0..6bf2b49 100644 --- a/VOL.Entity/DomainModels/Core/Sys_TableInfo.cs +++ b/LM.Entity/DomainModels/Core/Sys_TableInfo.cs @@ -1,11 +1,11 @@ -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Collections.Generic; using SqlSugar; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Table("Sys_TableInfo")] [EntityAttribute(DetailTable = new Type[] { typeof(Sys_TableColumn) })] diff --git a/VOL.Entity/DomainModels/DeptShip/HR_DeptShip.cs b/LM.Entity/DomainModels/DeptShip/HR_DeptShip.cs similarity index 96% rename from VOL.Entity/DomainModels/DeptShip/HR_DeptShip.cs rename to LM.Entity/DomainModels/DeptShip/HR_DeptShip.cs index ea4b048..e39aadf 100644 --- a/VOL.Entity/DomainModels/DeptShip/HR_DeptShip.cs +++ b/LM.Entity/DomainModels/DeptShip/HR_DeptShip.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "跨系统部门关联",TableName = "HR_DeptShip")] public partial class HR_DeptShip:BaseEntity diff --git a/VOL.Entity/DomainModels/DeptShip/SystemDept/HR_DingTalkDept.cs b/LM.Entity/DomainModels/DeptShip/SystemDept/HR_DingTalkDept.cs similarity index 91% rename from VOL.Entity/DomainModels/DeptShip/SystemDept/HR_DingTalkDept.cs rename to LM.Entity/DomainModels/DeptShip/SystemDept/HR_DingTalkDept.cs index 7bba1d6..cc37cbf 100644 --- a/VOL.Entity/DomainModels/DeptShip/SystemDept/HR_DingTalkDept.cs +++ b/LM.Entity/DomainModels/DeptShip/SystemDept/HR_DingTalkDept.cs @@ -6,7 +6,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity.DomainModels.DeptShip.SystemDept +namespace LM.Entity.DomainModels.DeptShip.SystemDept { public class HR_DingTalkDept { diff --git a/VOL.Entity/DomainModels/DeptShip/SystemDept/HR_YSDept.cs b/LM.Entity/DomainModels/DeptShip/SystemDept/HR_YSDept.cs similarity index 94% rename from VOL.Entity/DomainModels/DeptShip/SystemDept/HR_YSDept.cs rename to LM.Entity/DomainModels/DeptShip/SystemDept/HR_YSDept.cs index 9677d77..035de23 100644 --- a/VOL.Entity/DomainModels/DeptShip/SystemDept/HR_YSDept.cs +++ b/LM.Entity/DomainModels/DeptShip/SystemDept/HR_YSDept.cs @@ -8,7 +8,7 @@ using System.Security.Principal; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity.DomainModels.DeptShip.SystemDept +namespace LM.Entity.DomainModels.DeptShip.SystemDept { public class HR_YSDept { diff --git a/VOL.Entity/DomainModels/DeptShip/partial/HR_DeptShip.cs b/LM.Entity/DomainModels/DeptShip/partial/HR_DeptShip.cs similarity index 89% rename from VOL.Entity/DomainModels/DeptShip/partial/HR_DeptShip.cs rename to LM.Entity/DomainModels/DeptShip/partial/HR_DeptShip.cs index bd37a63..bf72bf0 100644 --- a/VOL.Entity/DomainModels/DeptShip/partial/HR_DeptShip.cs +++ b/LM.Entity/DomainModels/DeptShip/partial/HR_DeptShip.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class HR_DeptShip diff --git a/VOL.Entity/DomainModels/DeptSync/HR_DeptSync.cs b/LM.Entity/DomainModels/DeptSync/HR_DeptSync.cs similarity index 96% rename from VOL.Entity/DomainModels/DeptSync/HR_DeptSync.cs rename to LM.Entity/DomainModels/DeptSync/HR_DeptSync.cs index 235598e..9899c9d 100644 --- a/VOL.Entity/DomainModels/DeptSync/HR_DeptSync.cs +++ b/LM.Entity/DomainModels/DeptSync/HR_DeptSync.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "部门信息同步",TableName = "HR_DeptSync")] public partial class HR_DeptSync:BaseEntity diff --git a/VOL.Entity/DomainModels/DeptSync/partial/HR_DeptSync.cs b/LM.Entity/DomainModels/DeptSync/partial/HR_DeptSync.cs similarity index 89% rename from VOL.Entity/DomainModels/DeptSync/partial/HR_DeptSync.cs rename to LM.Entity/DomainModels/DeptSync/partial/HR_DeptSync.cs index fedf391..9e25dec 100644 --- a/VOL.Entity/DomainModels/DeptSync/partial/HR_DeptSync.cs +++ b/LM.Entity/DomainModels/DeptSync/partial/HR_DeptSync.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class HR_DeptSync diff --git a/VOL.Entity/DomainModels/EmployeeSync/HR_EmployeeSync.cs b/LM.Entity/DomainModels/EmployeeSync/HR_EmployeeSync.cs similarity index 97% rename from VOL.Entity/DomainModels/EmployeeSync/HR_EmployeeSync.cs rename to LM.Entity/DomainModels/EmployeeSync/HR_EmployeeSync.cs index fcd53b5..a12fff2 100644 --- a/VOL.Entity/DomainModels/EmployeeSync/HR_EmployeeSync.cs +++ b/LM.Entity/DomainModels/EmployeeSync/HR_EmployeeSync.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "员工信息同步",TableName = "HR_EmployeeSync")] public partial class HR_EmployeeSync:BaseEntity diff --git a/VOL.Entity/DomainModels/EmployeeSync/partial/HR_EmployeeSync.cs b/LM.Entity/DomainModels/EmployeeSync/partial/HR_EmployeeSync.cs similarity index 90% rename from VOL.Entity/DomainModels/EmployeeSync/partial/HR_EmployeeSync.cs rename to LM.Entity/DomainModels/EmployeeSync/partial/HR_EmployeeSync.cs index ac8b221..c70b55e 100644 --- a/VOL.Entity/DomainModels/EmployeeSync/partial/HR_EmployeeSync.cs +++ b/LM.Entity/DomainModels/EmployeeSync/partial/HR_EmployeeSync.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class HR_EmployeeSync diff --git a/VOL.Entity/DomainModels/News/App_News.cs b/LM.Entity/DomainModels/News/App_News.cs similarity index 98% rename from VOL.Entity/DomainModels/News/App_News.cs rename to LM.Entity/DomainModels/News/App_News.cs index 9ad594e..160313e 100644 --- a/VOL.Entity/DomainModels/News/App_News.cs +++ b/LM.Entity/DomainModels/News/App_News.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Table("App_News")] [Entity(TableCnName = "新闻列表",TableName = "App_News")] diff --git a/VOL.Entity/DomainModels/Quartz/Sys_QuartzLog.cs b/LM.Entity/DomainModels/Quartz/Sys_QuartzLog.cs similarity index 98% rename from VOL.Entity/DomainModels/Quartz/Sys_QuartzLog.cs rename to LM.Entity/DomainModels/Quartz/Sys_QuartzLog.cs index 31ceb85..a987d65 100644 --- a/VOL.Entity/DomainModels/Quartz/Sys_QuartzLog.cs +++ b/LM.Entity/DomainModels/Quartz/Sys_QuartzLog.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "执行记录",TableName = "Sys_QuartzLog")] public partial class Sys_QuartzLog:BaseEntity diff --git a/VOL.Entity/DomainModels/Quartz/Sys_QuartzOptions.cs b/LM.Entity/DomainModels/Quartz/Sys_QuartzOptions.cs similarity index 98% rename from VOL.Entity/DomainModels/Quartz/Sys_QuartzOptions.cs rename to LM.Entity/DomainModels/Quartz/Sys_QuartzOptions.cs index f0bf4f6..4d3a6c6 100644 --- a/VOL.Entity/DomainModels/Quartz/Sys_QuartzOptions.cs +++ b/LM.Entity/DomainModels/Quartz/Sys_QuartzOptions.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "定时任务",TableName = "Sys_QuartzOptions")] public partial class Sys_QuartzOptions:BaseEntity diff --git a/VOL.Entity/DomainModels/Quartz/partial/Sys_QuartzLog.cs b/LM.Entity/DomainModels/Quartz/partial/Sys_QuartzLog.cs similarity index 89% rename from VOL.Entity/DomainModels/Quartz/partial/Sys_QuartzLog.cs rename to LM.Entity/DomainModels/Quartz/partial/Sys_QuartzLog.cs index b9d9863..b7285e1 100644 --- a/VOL.Entity/DomainModels/Quartz/partial/Sys_QuartzLog.cs +++ b/LM.Entity/DomainModels/Quartz/partial/Sys_QuartzLog.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_QuartzLog diff --git a/VOL.Entity/DomainModels/Quartz/partial/Sys_QuartzOptions.cs b/LM.Entity/DomainModels/Quartz/partial/Sys_QuartzOptions.cs similarity index 89% rename from VOL.Entity/DomainModels/Quartz/partial/Sys_QuartzOptions.cs rename to LM.Entity/DomainModels/Quartz/partial/Sys_QuartzOptions.cs index 78cc7a5..1b9372b 100644 --- a/VOL.Entity/DomainModels/Quartz/partial/Sys_QuartzOptions.cs +++ b/LM.Entity/DomainModels/Quartz/partial/Sys_QuartzOptions.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_QuartzOptions diff --git a/VOL.Entity/DomainModels/System/LoginInfo.cs b/LM.Entity/DomainModels/System/LoginInfo.cs similarity index 95% rename from VOL.Entity/DomainModels/System/LoginInfo.cs rename to LM.Entity/DomainModels/System/LoginInfo.cs index 12f58f6..8189055 100644 --- a/VOL.Entity/DomainModels/System/LoginInfo.cs +++ b/LM.Entity/DomainModels/System/LoginInfo.cs @@ -1,7 +1,7 @@ using Newtonsoft.Json; using System.ComponentModel.DataAnnotations; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class LoginInfo { diff --git a/VOL.Entity/DomainModels/System/Permissions.cs b/LM.Entity/DomainModels/System/Permissions.cs similarity index 95% rename from VOL.Entity/DomainModels/System/Permissions.cs rename to LM.Entity/DomainModels/System/Permissions.cs index 18a60f5..81b51cb 100644 --- a/VOL.Entity/DomainModels/System/Permissions.cs +++ b/LM.Entity/DomainModels/System/Permissions.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class Permissions { diff --git a/VOL.Entity/DomainModels/System/RoleAuthor.cs b/LM.Entity/DomainModels/System/RoleAuthor.cs similarity index 85% rename from VOL.Entity/DomainModels/System/RoleAuthor.cs rename to LM.Entity/DomainModels/System/RoleAuthor.cs index 309ae49..5d552c3 100644 --- a/VOL.Entity/DomainModels/System/RoleAuthor.cs +++ b/LM.Entity/DomainModels/System/RoleAuthor.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class RoleAuthor { diff --git a/VOL.Entity/DomainModels/System/Sys_Department.cs b/LM.Entity/DomainModels/System/Sys_Department.cs similarity index 98% rename from VOL.Entity/DomainModels/System/Sys_Department.cs rename to LM.Entity/DomainModels/System/Sys_Department.cs index 7717109..8a196b6 100644 --- a/VOL.Entity/DomainModels/System/Sys_Department.cs +++ b/LM.Entity/DomainModels/System/Sys_Department.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "组织架构",TableName = "Sys_Department")] public partial class Sys_Department:BaseEntity diff --git a/VOL.Entity/DomainModels/System/Sys_Dictionary.cs b/LM.Entity/DomainModels/System/Sys_Dictionary.cs similarity index 98% rename from VOL.Entity/DomainModels/System/Sys_Dictionary.cs rename to LM.Entity/DomainModels/System/Sys_Dictionary.cs index a0e4c97..3a2e859 100644 --- a/VOL.Entity/DomainModels/System/Sys_Dictionary.cs +++ b/LM.Entity/DomainModels/System/Sys_Dictionary.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "字典数据",TableName = "Sys_Dictionary",DetailTable = new Type[] { typeof(Sys_DictionaryList)},DetailTableCnName = "字典明细")] public partial class Sys_Dictionary:BaseEntity diff --git a/VOL.Entity/DomainModels/System/Sys_DictionaryList.cs b/LM.Entity/DomainModels/System/Sys_DictionaryList.cs similarity index 98% rename from VOL.Entity/DomainModels/System/Sys_DictionaryList.cs rename to LM.Entity/DomainModels/System/Sys_DictionaryList.cs index 60bbe8b..33ab23b 100644 --- a/VOL.Entity/DomainModels/System/Sys_DictionaryList.cs +++ b/LM.Entity/DomainModels/System/Sys_DictionaryList.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "字典明细",TableName = "Sys_DictionaryList")] public partial class Sys_DictionaryList:BaseEntity diff --git a/VOL.Entity/DomainModels/System/Sys_Log.cs b/LM.Entity/DomainModels/System/Sys_Log.cs similarity index 98% rename from VOL.Entity/DomainModels/System/Sys_Log.cs rename to LM.Entity/DomainModels/System/Sys_Log.cs index a84bbf3..a845dfa 100644 --- a/VOL.Entity/DomainModels/System/Sys_Log.cs +++ b/LM.Entity/DomainModels/System/Sys_Log.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "系统日志",TableName = "Sys_Log")] public partial class Sys_Log:BaseEntity diff --git a/VOL.Entity/DomainModels/System/Sys_Menu.cs b/LM.Entity/DomainModels/System/Sys_Menu.cs similarity index 98% rename from VOL.Entity/DomainModels/System/Sys_Menu.cs rename to LM.Entity/DomainModels/System/Sys_Menu.cs index d122e5b..7da1510 100644 --- a/VOL.Entity/DomainModels/System/Sys_Menu.cs +++ b/LM.Entity/DomainModels/System/Sys_Menu.cs @@ -12,9 +12,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Table("Sys_Menu")] [EntityAttribute(TableCnName = "菜单配置")] diff --git a/VOL.Entity/DomainModels/System/Sys_Role.cs b/LM.Entity/DomainModels/System/Sys_Role.cs similarity index 98% rename from VOL.Entity/DomainModels/System/Sys_Role.cs rename to LM.Entity/DomainModels/System/Sys_Role.cs index bfb7041..d6a27e9 100644 --- a/VOL.Entity/DomainModels/System/Sys_Role.cs +++ b/LM.Entity/DomainModels/System/Sys_Role.cs @@ -11,9 +11,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "角色管理",TableName = "Sys_Role")] public partial class Sys_Role:BaseEntity diff --git a/VOL.Entity/DomainModels/System/Sys_RoleAuth.cs b/LM.Entity/DomainModels/System/Sys_RoleAuth.cs similarity index 96% rename from VOL.Entity/DomainModels/System/Sys_RoleAuth.cs rename to LM.Entity/DomainModels/System/Sys_RoleAuth.cs index 28301cf..79037d1 100644 --- a/VOL.Entity/DomainModels/System/Sys_RoleAuth.cs +++ b/LM.Entity/DomainModels/System/Sys_RoleAuth.cs @@ -1,4 +1,4 @@ -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; @@ -8,7 +8,7 @@ using System.Text; using System.Threading.Tasks; using SqlSugar; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Table("Sys_RoleAuth")] public class Sys_RoleAuth: BaseEntity diff --git a/VOL.Entity/DomainModels/System/Sys_User.cs b/LM.Entity/DomainModels/System/Sys_User.cs similarity index 99% rename from VOL.Entity/DomainModels/System/Sys_User.cs rename to LM.Entity/DomainModels/System/Sys_User.cs index da2767f..0a25302 100644 --- a/VOL.Entity/DomainModels/System/Sys_User.cs +++ b/LM.Entity/DomainModels/System/Sys_User.cs @@ -11,9 +11,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "用户管理",TableName = "Sys_User",DBServer = "SysDbContext",ApiInput = typeof(ApiSys_UserInput),ApiOutput = typeof(ApiSys_UserOutput))] public partial class Sys_User:BaseEntity diff --git a/VOL.Entity/DomainModels/System/Sys_UserDepartment.cs b/LM.Entity/DomainModels/System/Sys_UserDepartment.cs similarity index 97% rename from VOL.Entity/DomainModels/System/Sys_UserDepartment.cs rename to LM.Entity/DomainModels/System/Sys_UserDepartment.cs index 9c9c502..7f419c6 100644 --- a/VOL.Entity/DomainModels/System/Sys_UserDepartment.cs +++ b/LM.Entity/DomainModels/System/Sys_UserDepartment.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "用户所属组织",TableName = "Sys_UserDepartment")] public partial class Sys_UserDepartment:BaseEntity diff --git a/VOL.Entity/DomainModels/System/TableColumnInfo.cs b/LM.Entity/DomainModels/System/TableColumnInfo.cs similarity index 88% rename from VOL.Entity/DomainModels/System/TableColumnInfo.cs rename to LM.Entity/DomainModels/System/TableColumnInfo.cs index fa793b8..38946d5 100644 --- a/VOL.Entity/DomainModels/System/TableColumnInfo.cs +++ b/LM.Entity/DomainModels/System/TableColumnInfo.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity.DomainModels.Sys +namespace LM.Entity.DomainModels.Sys { public class TableColumnInfo { diff --git a/VOL.Entity/DomainModels/System/UserInfo.cs b/LM.Entity/DomainModels/System/UserInfo.cs similarity index 91% rename from VOL.Entity/DomainModels/System/UserInfo.cs rename to LM.Entity/DomainModels/System/UserInfo.cs index cf091fb..7a891eb 100644 --- a/VOL.Entity/DomainModels/System/UserInfo.cs +++ b/LM.Entity/DomainModels/System/UserInfo.cs @@ -1,11 +1,11 @@ -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public class UserInfo { diff --git a/VOL.Entity/DomainModels/System/partial/Sys_Department.cs b/LM.Entity/DomainModels/System/partial/Sys_Department.cs similarity index 89% rename from VOL.Entity/DomainModels/System/partial/Sys_Department.cs rename to LM.Entity/DomainModels/System/partial/Sys_Department.cs index 58bc804..fa0cd69 100644 --- a/VOL.Entity/DomainModels/System/partial/Sys_Department.cs +++ b/LM.Entity/DomainModels/System/partial/Sys_Department.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_Department diff --git a/VOL.Entity/DomainModels/System/partial/Sys_Dictionary.cs b/LM.Entity/DomainModels/System/partial/Sys_Dictionary.cs similarity index 90% rename from VOL.Entity/DomainModels/System/partial/Sys_Dictionary.cs rename to LM.Entity/DomainModels/System/partial/Sys_Dictionary.cs index d0d421b..b70875d 100644 --- a/VOL.Entity/DomainModels/System/partial/Sys_Dictionary.cs +++ b/LM.Entity/DomainModels/System/partial/Sys_Dictionary.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_Dictionary diff --git a/VOL.Entity/DomainModels/System/partial/Sys_DictionaryList.cs b/LM.Entity/DomainModels/System/partial/Sys_DictionaryList.cs similarity index 90% rename from VOL.Entity/DomainModels/System/partial/Sys_DictionaryList.cs rename to LM.Entity/DomainModels/System/partial/Sys_DictionaryList.cs index 3e4c752..6e4114f 100644 --- a/VOL.Entity/DomainModels/System/partial/Sys_DictionaryList.cs +++ b/LM.Entity/DomainModels/System/partial/Sys_DictionaryList.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_DictionaryList diff --git a/VOL.Entity/DomainModels/System/partial/Sys_Log.cs b/LM.Entity/DomainModels/System/partial/Sys_Log.cs similarity index 89% rename from VOL.Entity/DomainModels/System/partial/Sys_Log.cs rename to LM.Entity/DomainModels/System/partial/Sys_Log.cs index 0190c69..0837a9d 100644 --- a/VOL.Entity/DomainModels/System/partial/Sys_Log.cs +++ b/LM.Entity/DomainModels/System/partial/Sys_Log.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_Log diff --git a/VOL.Entity/DomainModels/System/partial/Sys_Role.cs b/LM.Entity/DomainModels/System/partial/Sys_Role.cs similarity index 89% rename from VOL.Entity/DomainModels/System/partial/Sys_Role.cs rename to LM.Entity/DomainModels/System/partial/Sys_Role.cs index 514603e..c36c7b0 100644 --- a/VOL.Entity/DomainModels/System/partial/Sys_Role.cs +++ b/LM.Entity/DomainModels/System/partial/Sys_Role.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_Role diff --git a/VOL.Entity/DomainModels/System/partial/Sys_User.cs b/LM.Entity/DomainModels/System/partial/Sys_User.cs similarity index 89% rename from VOL.Entity/DomainModels/System/partial/Sys_User.cs rename to LM.Entity/DomainModels/System/partial/Sys_User.cs index a257c4d..48e4fbc 100644 --- a/VOL.Entity/DomainModels/System/partial/Sys_User.cs +++ b/LM.Entity/DomainModels/System/partial/Sys_User.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_User diff --git a/VOL.Entity/DomainModels/System/partial/Sys_UserDepartment.cs b/LM.Entity/DomainModels/System/partial/Sys_UserDepartment.cs similarity index 89% rename from VOL.Entity/DomainModels/System/partial/Sys_UserDepartment.cs rename to LM.Entity/DomainModels/System/partial/Sys_UserDepartment.cs index ce996da..4d2551f 100644 --- a/VOL.Entity/DomainModels/System/partial/Sys_UserDepartment.cs +++ b/LM.Entity/DomainModels/System/partial/Sys_UserDepartment.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_UserDepartment diff --git a/VOL.Entity/DomainModels/System/vSys_Dictionary.cs b/LM.Entity/DomainModels/System/vSys_Dictionary.cs similarity index 95% rename from VOL.Entity/DomainModels/System/vSys_Dictionary.cs rename to LM.Entity/DomainModels/System/vSys_Dictionary.cs index a3b9f53..dcde9a2 100644 --- a/VOL.Entity/DomainModels/System/vSys_Dictionary.cs +++ b/LM.Entity/DomainModels/System/vSys_Dictionary.cs @@ -11,10 +11,10 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity; -using VOL.Entity.SystemModels; +using LM.Entity; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [EntityAttribute(TableCnName = "字典视图")] public class vSys_Dictionary:BaseEntity diff --git a/VOL.Entity/DomainModels/flow/Sys_WorkFlow.cs b/LM.Entity/DomainModels/flow/Sys_WorkFlow.cs similarity index 98% rename from VOL.Entity/DomainModels/flow/Sys_WorkFlow.cs rename to LM.Entity/DomainModels/flow/Sys_WorkFlow.cs index 21c5e1b..283ac1a 100644 --- a/VOL.Entity/DomainModels/flow/Sys_WorkFlow.cs +++ b/LM.Entity/DomainModels/flow/Sys_WorkFlow.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "审批流程配置",TableName = "Sys_WorkFlow",DetailTable = new Type[] { typeof(Sys_WorkFlowStep)},DetailTableCnName = "审批步骤")] public partial class Sys_WorkFlow:BaseEntity diff --git a/VOL.Entity/DomainModels/flow/Sys_WorkFlowStep.cs b/LM.Entity/DomainModels/flow/Sys_WorkFlowStep.cs similarity index 98% rename from VOL.Entity/DomainModels/flow/Sys_WorkFlowStep.cs rename to LM.Entity/DomainModels/flow/Sys_WorkFlowStep.cs index 3162adf..cba3fea 100644 --- a/VOL.Entity/DomainModels/flow/Sys_WorkFlowStep.cs +++ b/LM.Entity/DomainModels/flow/Sys_WorkFlowStep.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "审批节点配置",TableName = "Sys_WorkFlowStep")] public partial class Sys_WorkFlowStep:BaseEntity diff --git a/VOL.Entity/DomainModels/flow/Sys_WorkFlowTable.cs b/LM.Entity/DomainModels/flow/Sys_WorkFlowTable.cs similarity index 98% rename from VOL.Entity/DomainModels/flow/Sys_WorkFlowTable.cs rename to LM.Entity/DomainModels/flow/Sys_WorkFlowTable.cs index 79dc8b4..df6fb85 100644 --- a/VOL.Entity/DomainModels/flow/Sys_WorkFlowTable.cs +++ b/LM.Entity/DomainModels/flow/Sys_WorkFlowTable.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "审批流程",TableName = "Sys_WorkFlowTable",DetailTable = new Type[] { typeof(Sys_WorkFlowTableStep)},DetailTableCnName = "审批节点")] public partial class Sys_WorkFlowTable:BaseEntity diff --git a/VOL.Entity/DomainModels/flow/Sys_WorkFlowTableAuditLog.cs b/LM.Entity/DomainModels/flow/Sys_WorkFlowTableAuditLog.cs similarity index 97% rename from VOL.Entity/DomainModels/flow/Sys_WorkFlowTableAuditLog.cs rename to LM.Entity/DomainModels/flow/Sys_WorkFlowTableAuditLog.cs index 26b1299..69d0dbc 100644 --- a/VOL.Entity/DomainModels/flow/Sys_WorkFlowTableAuditLog.cs +++ b/LM.Entity/DomainModels/flow/Sys_WorkFlowTableAuditLog.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "审批记录",TableName = "Sys_WorkFlowTableAuditLog")] public partial class Sys_WorkFlowTableAuditLog:BaseEntity diff --git a/VOL.Entity/DomainModels/flow/Sys_WorkFlowTableStep.cs b/LM.Entity/DomainModels/flow/Sys_WorkFlowTableStep.cs similarity index 98% rename from VOL.Entity/DomainModels/flow/Sys_WorkFlowTableStep.cs rename to LM.Entity/DomainModels/flow/Sys_WorkFlowTableStep.cs index 14583b5..19fc2cf 100644 --- a/VOL.Entity/DomainModels/flow/Sys_WorkFlowTableStep.cs +++ b/LM.Entity/DomainModels/flow/Sys_WorkFlowTableStep.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "审批节点",TableName = "Sys_WorkFlowTableStep")] public partial class Sys_WorkFlowTableStep:BaseEntity diff --git a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlow.cs b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlow.cs similarity index 89% rename from VOL.Entity/DomainModels/flow/partial/Sys_WorkFlow.cs rename to LM.Entity/DomainModels/flow/partial/Sys_WorkFlow.cs index 2291d36..4a9108a 100644 --- a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlow.cs +++ b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlow.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_WorkFlow diff --git a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowStep.cs b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowStep.cs similarity index 89% rename from VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowStep.cs rename to LM.Entity/DomainModels/flow/partial/Sys_WorkFlowStep.cs index e4dfade..69e076a 100644 --- a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowStep.cs +++ b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowStep.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_WorkFlowStep diff --git a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTable.cs b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTable.cs similarity index 89% rename from VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTable.cs rename to LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTable.cs index 8b642f8..db7ebed 100644 --- a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTable.cs +++ b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTable.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_WorkFlowTable diff --git a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTableAuditLog.cs b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTableAuditLog.cs similarity index 89% rename from VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTableAuditLog.cs rename to LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTableAuditLog.cs index 25d6b39..963033f 100644 --- a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTableAuditLog.cs +++ b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTableAuditLog.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_WorkFlowTableAuditLog diff --git a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTableStep.cs b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTableStep.cs similarity index 89% rename from VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTableStep.cs rename to LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTableStep.cs index 6426637..91fd58f 100644 --- a/VOL.Entity/DomainModels/flow/partial/Sys_WorkFlowTableStep.cs +++ b/LM.Entity/DomainModels/flow/partial/Sys_WorkFlowTableStep.cs @@ -9,9 +9,9 @@ using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class Sys_WorkFlowTableStep diff --git a/VOL.Entity/DomainModels/form/FormCollectionObject.cs b/LM.Entity/DomainModels/form/FormCollectionObject.cs similarity index 97% rename from VOL.Entity/DomainModels/form/FormCollectionObject.cs rename to LM.Entity/DomainModels/form/FormCollectionObject.cs index 7540ff5..04a8065 100644 --- a/VOL.Entity/DomainModels/form/FormCollectionObject.cs +++ b/LM.Entity/DomainModels/form/FormCollectionObject.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "数据采集",TableName = "FormCollectionObject")] public partial class FormCollectionObject:BaseEntity diff --git a/VOL.Entity/DomainModels/form/FormDesignOptions.cs b/LM.Entity/DomainModels/form/FormDesignOptions.cs similarity index 98% rename from VOL.Entity/DomainModels/form/FormDesignOptions.cs rename to LM.Entity/DomainModels/form/FormDesignOptions.cs index fc5d85c..3a33041 100644 --- a/VOL.Entity/DomainModels/form/FormDesignOptions.cs +++ b/LM.Entity/DomainModels/form/FormDesignOptions.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { [Entity(TableCnName = "表单设计",TableName = "FormDesignOptions")] public partial class FormDesignOptions:BaseEntity diff --git a/VOL.Entity/DomainModels/form/partial/FormCollectionObject.cs b/LM.Entity/DomainModels/form/partial/FormCollectionObject.cs similarity index 90% rename from VOL.Entity/DomainModels/form/partial/FormCollectionObject.cs rename to LM.Entity/DomainModels/form/partial/FormCollectionObject.cs index 931395c..aaf596f 100644 --- a/VOL.Entity/DomainModels/form/partial/FormCollectionObject.cs +++ b/LM.Entity/DomainModels/form/partial/FormCollectionObject.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class FormCollectionObject diff --git a/VOL.Entity/DomainModels/form/partial/FormDesignOptions.cs b/LM.Entity/DomainModels/form/partial/FormDesignOptions.cs similarity index 90% rename from VOL.Entity/DomainModels/form/partial/FormDesignOptions.cs rename to LM.Entity/DomainModels/form/partial/FormDesignOptions.cs index e4ae686..a434348 100644 --- a/VOL.Entity/DomainModels/form/partial/FormDesignOptions.cs +++ b/LM.Entity/DomainModels/form/partial/FormDesignOptions.cs @@ -10,9 +10,9 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; -using VOL.Entity.SystemModels; +using LM.Entity.SystemModels; -namespace VOL.Entity.DomainModels +namespace LM.Entity.DomainModels { public partial class FormDesignOptions diff --git a/VOL.Entity/IBaseInterface.cs b/LM.Entity/IBaseInterface.cs similarity index 85% rename from VOL.Entity/IBaseInterface.cs rename to LM.Entity/IBaseInterface.cs index 9154ce7..c5c94f3 100644 --- a/VOL.Entity/IBaseInterface.cs +++ b/LM.Entity/IBaseInterface.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Entity +namespace LM.Entity { public interface IBaseInterface { diff --git a/VOL.Entity/VOL.Entity.csproj b/LM.Entity/LM.Entity.csproj similarity index 100% rename from VOL.Entity/VOL.Entity.csproj rename to LM.Entity/LM.Entity.csproj diff --git a/VOL.Entity/MappingConfiguration/MappingManager.cs b/LM.Entity/MappingConfiguration/MappingManager.cs similarity index 99% rename from VOL.Entity/MappingConfiguration/MappingManager.cs rename to LM.Entity/MappingConfiguration/MappingManager.cs index 98f41ca..5eb190a 100644 --- a/VOL.Entity/MappingConfiguration/MappingManager.cs +++ b/LM.Entity/MappingConfiguration/MappingManager.cs @@ -5,7 +5,7 @@ using System.Collections.Generic; using System.Linq; using System.Reflection; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public interface IEntityMappingConfiguration diff --git a/VOL.Entity/MappingConfiguration/News/App_NewsMapConfig.cs b/LM.Entity/MappingConfiguration/News/App_NewsMapConfig.cs similarity index 73% rename from VOL.Entity/MappingConfiguration/News/App_NewsMapConfig.cs rename to LM.Entity/MappingConfiguration/News/App_NewsMapConfig.cs index 2aaf504..7bea250 100644 --- a/VOL.Entity/MappingConfiguration/News/App_NewsMapConfig.cs +++ b/LM.Entity/MappingConfiguration/News/App_NewsMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class App_NewsMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/Quartz/Sys_QuartzLogMapConfig.cs b/LM.Entity/MappingConfiguration/Quartz/Sys_QuartzLogMapConfig.cs similarity index 74% rename from VOL.Entity/MappingConfiguration/Quartz/Sys_QuartzLogMapConfig.cs rename to LM.Entity/MappingConfiguration/Quartz/Sys_QuartzLogMapConfig.cs index cb51f96..5de7c8d 100644 --- a/VOL.Entity/MappingConfiguration/Quartz/Sys_QuartzLogMapConfig.cs +++ b/LM.Entity/MappingConfiguration/Quartz/Sys_QuartzLogMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_QuartzLogMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/Quartz/Sys_QuartzOptionsMapConfig.cs b/LM.Entity/MappingConfiguration/Quartz/Sys_QuartzOptionsMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/Quartz/Sys_QuartzOptionsMapConfig.cs rename to LM.Entity/MappingConfiguration/Quartz/Sys_QuartzOptionsMapConfig.cs index b4d8050..0c6f6cb 100644 --- a/VOL.Entity/MappingConfiguration/Quartz/Sys_QuartzOptionsMapConfig.cs +++ b/LM.Entity/MappingConfiguration/Quartz/Sys_QuartzOptionsMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_QuartzOptionsMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_DepartmentMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_DepartmentMapConfig.cs similarity index 74% rename from VOL.Entity/MappingConfiguration/System/Sys_DepartmentMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_DepartmentMapConfig.cs index 053d4b7..08808a5 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_DepartmentMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_DepartmentMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_DepartmentMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_DictionaryListMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_DictionaryListMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/System/Sys_DictionaryListMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_DictionaryListMapConfig.cs index d5860a8..0d619b4 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_DictionaryListMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_DictionaryListMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_DictionaryListMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_DictionaryMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_DictionaryMapConfig.cs similarity index 74% rename from VOL.Entity/MappingConfiguration/System/Sys_DictionaryMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_DictionaryMapConfig.cs index b0802be..76acdd8 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_DictionaryMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_DictionaryMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_DictionaryMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_LogMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_LogMapConfig.cs similarity index 73% rename from VOL.Entity/MappingConfiguration/System/Sys_LogMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_LogMapConfig.cs index 40852ee..df85d42 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_LogMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_LogMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_LogMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_MenuMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_MenuMapConfig.cs similarity index 73% rename from VOL.Entity/MappingConfiguration/System/Sys_MenuMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_MenuMapConfig.cs index 2dca84d..7f5f377 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_MenuMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_MenuMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_MenuMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_RoleMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_RoleMapConfig.cs similarity index 73% rename from VOL.Entity/MappingConfiguration/System/Sys_RoleMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_RoleMapConfig.cs index 4cf6fd1..5910b53 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_RoleMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_RoleMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_RoleMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_UserDepartmentMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_UserDepartmentMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/System/Sys_UserDepartmentMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_UserDepartmentMapConfig.cs index 9cadd48..3540a24 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_UserDepartmentMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_UserDepartmentMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_UserDepartmentMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/Sys_UserMapConfig.cs b/LM.Entity/MappingConfiguration/System/Sys_UserMapConfig.cs similarity index 73% rename from VOL.Entity/MappingConfiguration/System/Sys_UserMapConfig.cs rename to LM.Entity/MappingConfiguration/System/Sys_UserMapConfig.cs index 63a4560..f6f7ec2 100644 --- a/VOL.Entity/MappingConfiguration/System/Sys_UserMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/Sys_UserMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_UserMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/System/vSys_DictionaryMapConfig.cs b/LM.Entity/MappingConfiguration/System/vSys_DictionaryMapConfig.cs similarity index 72% rename from VOL.Entity/MappingConfiguration/System/vSys_DictionaryMapConfig.cs rename to LM.Entity/MappingConfiguration/System/vSys_DictionaryMapConfig.cs index 744771f..284dca8 100644 --- a/VOL.Entity/MappingConfiguration/System/vSys_DictionaryMapConfig.cs +++ b/LM.Entity/MappingConfiguration/System/vSys_DictionaryMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Framework.Entity.MappingConfiguration +namespace LM.Framework.Entity.MappingConfiguration { public class vSys_DictionaryMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowMapConfig.cs b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowMapConfig.cs similarity index 74% rename from VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowMapConfig.cs rename to LM.Entity/MappingConfiguration/flow/Sys_WorkFlowMapConfig.cs index 4c9c9f3..5057fc3 100644 --- a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowMapConfig.cs +++ b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_WorkFlowMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowStepMapConfig.cs b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowStepMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowStepMapConfig.cs rename to LM.Entity/MappingConfiguration/flow/Sys_WorkFlowStepMapConfig.cs index 0c30cdb..c93f75b 100644 --- a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowStepMapConfig.cs +++ b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowStepMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_WorkFlowStepMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableAuditLogMapConfig.cs b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableAuditLogMapConfig.cs similarity index 76% rename from VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableAuditLogMapConfig.cs rename to LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableAuditLogMapConfig.cs index c4094a6..2c81dd6 100644 --- a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableAuditLogMapConfig.cs +++ b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableAuditLogMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_WorkFlowTableAuditLogMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableMapConfig.cs b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableMapConfig.cs rename to LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableMapConfig.cs index 20e13ba..c21152d 100644 --- a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableMapConfig.cs +++ b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_WorkFlowTableMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableStepMapConfig.cs b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableStepMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableStepMapConfig.cs rename to LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableStepMapConfig.cs index e1c1efa..2ad94fe 100644 --- a/VOL.Entity/MappingConfiguration/flow/Sys_WorkFlowTableStepMapConfig.cs +++ b/LM.Entity/MappingConfiguration/flow/Sys_WorkFlowTableStepMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class Sys_WorkFlowTableStepMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs b/LM.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs rename to LM.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs index b6114e2..77749f3 100644 --- a/VOL.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs +++ b/LM.Entity/MappingConfiguration/form/FormCollectionObjectMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class FormCollectionObjectMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/MappingConfiguration/form/FormDesignOptionsMapConfig.cs b/LM.Entity/MappingConfiguration/form/FormDesignOptionsMapConfig.cs similarity index 75% rename from VOL.Entity/MappingConfiguration/form/FormDesignOptionsMapConfig.cs rename to LM.Entity/MappingConfiguration/form/FormDesignOptionsMapConfig.cs index a69b4f5..6671b34 100644 --- a/VOL.Entity/MappingConfiguration/form/FormDesignOptionsMapConfig.cs +++ b/LM.Entity/MappingConfiguration/form/FormDesignOptionsMapConfig.cs @@ -1,8 +1,8 @@ -using VOL.Entity.MappingConfiguration; -using VOL.Entity.DomainModels; +using LM.Entity.MappingConfiguration; +using LM.Entity.DomainModels; using Microsoft.EntityFrameworkCore.Metadata.Builders; -namespace VOL.Entity.MappingConfiguration +namespace LM.Entity.MappingConfiguration { public class FormDesignOptionsMapConfig : EntityMappingConfiguration { diff --git a/VOL.Entity/SystemModels/BaseEntity.cs b/LM.Entity/SystemModels/BaseEntity.cs similarity index 77% rename from VOL.Entity/SystemModels/BaseEntity.cs rename to LM.Entity/SystemModels/BaseEntity.cs index d69379e..096301e 100644 --- a/VOL.Entity/SystemModels/BaseEntity.cs +++ b/LM.Entity/SystemModels/BaseEntity.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace VOL.Entity.SystemModels +namespace LM.Entity.SystemModels { public class BaseEntity { diff --git a/VOL.Entity/SystemModels/Sys_MenuRole.cs b/LM.Entity/SystemModels/Sys_MenuRole.cs similarity index 95% rename from VOL.Entity/SystemModels/Sys_MenuRole.cs rename to LM.Entity/SystemModels/Sys_MenuRole.cs index 608c81b..fa4b052 100644 --- a/VOL.Entity/SystemModels/Sys_MenuRole.cs +++ b/LM.Entity/SystemModels/Sys_MenuRole.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; -namespace VOL.Entity +namespace LM.Entity { public class Sys_Actions { diff --git a/VOL.HR/IRepositories/DeptShip/IHR_DeptShipRepository.cs b/LM.HR/IRepositories/DeptShip/IHR_DeptShipRepository.cs similarity index 76% rename from VOL.HR/IRepositories/DeptShip/IHR_DeptShipRepository.cs rename to LM.HR/IRepositories/DeptShip/IHR_DeptShipRepository.cs index afd0276..ade7015 100644 --- a/VOL.HR/IRepositories/DeptShip/IHR_DeptShipRepository.cs +++ b/LM.HR/IRepositories/DeptShip/IHR_DeptShipRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.HR.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.HR.IRepositories { public partial interface IHR_DeptShipRepository : IDependency,IRepository { diff --git a/VOL.HR/IRepositories/DeptSync/IHR_DeptSyncRepository.cs b/LM.HR/IRepositories/DeptSync/IHR_DeptSyncRepository.cs similarity index 76% rename from VOL.HR/IRepositories/DeptSync/IHR_DeptSyncRepository.cs rename to LM.HR/IRepositories/DeptSync/IHR_DeptSyncRepository.cs index daed029..e0d0c9f 100644 --- a/VOL.HR/IRepositories/DeptSync/IHR_DeptSyncRepository.cs +++ b/LM.HR/IRepositories/DeptSync/IHR_DeptSyncRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.HR.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.HR.IRepositories { public partial interface IHR_DeptSyncRepository : IDependency,IRepository { diff --git a/VOL.HR/IRepositories/EmployeeSync/IHR_EmployeeSyncRepository.cs b/LM.HR/IRepositories/EmployeeSync/IHR_EmployeeSyncRepository.cs similarity index 77% rename from VOL.HR/IRepositories/EmployeeSync/IHR_EmployeeSyncRepository.cs rename to LM.HR/IRepositories/EmployeeSync/IHR_EmployeeSyncRepository.cs index 3bec52a..9b1af86 100644 --- a/VOL.HR/IRepositories/EmployeeSync/IHR_EmployeeSyncRepository.cs +++ b/LM.HR/IRepositories/EmployeeSync/IHR_EmployeeSyncRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.HR.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.HR.IRepositories { public partial interface IHR_EmployeeSyncRepository : IDependency,IRepository { diff --git a/VOL.HR/IServices/DeptShip/IHR_DeptShipService.cs b/LM.HR/IServices/DeptShip/IHR_DeptShipService.cs similarity index 66% rename from VOL.HR/IServices/DeptShip/IHR_DeptShipService.cs rename to LM.HR/IServices/DeptShip/IHR_DeptShipService.cs index e70ab7d..7de1b05 100644 --- a/VOL.HR/IServices/DeptShip/IHR_DeptShipService.cs +++ b/LM.HR/IServices/DeptShip/IHR_DeptShipService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.HR.IServices +namespace LM.HR.IServices { public partial interface IHR_DeptShipService : IService { diff --git a/VOL.HR/IServices/DeptShip/Partial/IHR_DeptShipService.cs b/LM.HR/IServices/DeptShip/Partial/IHR_DeptShipService.cs similarity index 63% rename from VOL.HR/IServices/DeptShip/Partial/IHR_DeptShipService.cs rename to LM.HR/IServices/DeptShip/Partial/IHR_DeptShipService.cs index baf61d6..e4ba40a 100644 --- a/VOL.HR/IServices/DeptShip/Partial/IHR_DeptShipService.cs +++ b/LM.HR/IServices/DeptShip/Partial/IHR_DeptShipService.cs @@ -1,13 +1,13 @@ /* *所有关于HR_DeptShip类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.YSErp.Models.Biz; -using VOL.DingTalk.Models.Biz; -namespace VOL.HR.IServices +using LM.YSErp.Models.Biz; +using LM.DingTalk.Models.Biz; +namespace LM.HR.IServices { public partial interface IHR_DeptShipService { diff --git a/VOL.HR/IServices/DeptSync/IHR_DeptSyncService.cs b/LM.HR/IServices/DeptSync/IHR_DeptSyncService.cs similarity index 66% rename from VOL.HR/IServices/DeptSync/IHR_DeptSyncService.cs rename to LM.HR/IServices/DeptSync/IHR_DeptSyncService.cs index 985851d..cfcae25 100644 --- a/VOL.HR/IServices/DeptSync/IHR_DeptSyncService.cs +++ b/LM.HR/IServices/DeptSync/IHR_DeptSyncService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.HR.IServices +namespace LM.HR.IServices { public partial interface IHR_DeptSyncService : IService { diff --git a/VOL.HR/IServices/DeptSync/Partial/IHR_DeptSyncService.cs b/LM.HR/IServices/DeptSync/Partial/IHR_DeptSyncService.cs similarity index 70% rename from VOL.HR/IServices/DeptSync/Partial/IHR_DeptSyncService.cs rename to LM.HR/IServices/DeptSync/Partial/IHR_DeptSyncService.cs index b798f06..1aad04d 100644 --- a/VOL.HR/IServices/DeptSync/Partial/IHR_DeptSyncService.cs +++ b/LM.HR/IServices/DeptSync/Partial/IHR_DeptSyncService.cs @@ -1,12 +1,12 @@ /* *所有关于HR_DeptSync类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.DingTalk.Models.Biz; -namespace VOL.HR.IServices +using LM.DingTalk.Models.Biz; +namespace LM.HR.IServices { public partial interface IHR_DeptSyncService { diff --git a/VOL.HR/IServices/EmployeeSync/IHR_EmployeeSyncService.cs b/LM.HR/IServices/EmployeeSync/IHR_EmployeeSyncService.cs similarity index 67% rename from VOL.HR/IServices/EmployeeSync/IHR_EmployeeSyncService.cs rename to LM.HR/IServices/EmployeeSync/IHR_EmployeeSyncService.cs index c5f91be..414b26f 100644 --- a/VOL.HR/IServices/EmployeeSync/IHR_EmployeeSyncService.cs +++ b/LM.HR/IServices/EmployeeSync/IHR_EmployeeSyncService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.HR.IServices +namespace LM.HR.IServices { public partial interface IHR_EmployeeSyncService : IService { diff --git a/VOL.HR/IServices/EmployeeSync/Partial/IHR_EmployeeSyncService.cs b/LM.HR/IServices/EmployeeSync/Partial/IHR_EmployeeSyncService.cs similarity index 72% rename from VOL.HR/IServices/EmployeeSync/Partial/IHR_EmployeeSyncService.cs rename to LM.HR/IServices/EmployeeSync/Partial/IHR_EmployeeSyncService.cs index a5e07ea..d23c07a 100644 --- a/VOL.HR/IServices/EmployeeSync/Partial/IHR_EmployeeSyncService.cs +++ b/LM.HR/IServices/EmployeeSync/Partial/IHR_EmployeeSyncService.cs @@ -1,13 +1,13 @@ /* *所有关于HR_EmployeeSync类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.YSErp.Models.Biz; -using VOL.DingTalk.Models.Biz; -namespace VOL.HR.IServices +using LM.YSErp.Models.Biz; +using LM.DingTalk.Models.Biz; +namespace LM.HR.IServices { public partial interface IHR_EmployeeSyncService { diff --git a/VOL.HR/VOL.HR.csproj b/LM.HR/LM.HR.csproj similarity index 55% rename from VOL.HR/VOL.HR.csproj rename to LM.HR/LM.HR.csproj index d744867..4deb8b2 100644 --- a/VOL.HR/VOL.HR.csproj +++ b/LM.HR/LM.HR.csproj @@ -7,10 +7,10 @@ - - - - + + + + diff --git a/VOL.HR/Repositories/DeptShip/HR_DeptShipRepository.cs b/LM.HR/Repositories/DeptShip/HR_DeptShipRepository.cs similarity index 76% rename from VOL.HR/Repositories/DeptShip/HR_DeptShipRepository.cs rename to LM.HR/Repositories/DeptShip/HR_DeptShipRepository.cs index ad028c8..7e08ca7 100644 --- a/VOL.HR/Repositories/DeptShip/HR_DeptShipRepository.cs +++ b/LM.HR/Repositories/DeptShip/HR_DeptShipRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹HR_DeptShipRepository编写代码 */ -using VOL.HR.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.HR.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.HR.Repositories +namespace LM.HR.Repositories { public partial class HR_DeptShipRepository : RepositoryBase , IHR_DeptShipRepository diff --git a/VOL.HR/Repositories/DeptSync/HR_DeptSyncRepository.cs b/LM.HR/Repositories/DeptSync/HR_DeptSyncRepository.cs similarity index 76% rename from VOL.HR/Repositories/DeptSync/HR_DeptSyncRepository.cs rename to LM.HR/Repositories/DeptSync/HR_DeptSyncRepository.cs index 270cf50..a1e5b4b 100644 --- a/VOL.HR/Repositories/DeptSync/HR_DeptSyncRepository.cs +++ b/LM.HR/Repositories/DeptSync/HR_DeptSyncRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹HR_DeptSyncRepository编写代码 */ -using VOL.HR.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.HR.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.HR.Repositories +namespace LM.HR.Repositories { public partial class HR_DeptSyncRepository : RepositoryBase , IHR_DeptSyncRepository diff --git a/VOL.HR/Repositories/EmployeeSync/HR_EmployeeSyncRepository.cs b/LM.HR/Repositories/EmployeeSync/HR_EmployeeSyncRepository.cs similarity index 76% rename from VOL.HR/Repositories/EmployeeSync/HR_EmployeeSyncRepository.cs rename to LM.HR/Repositories/EmployeeSync/HR_EmployeeSyncRepository.cs index 1f84889..7449af1 100644 --- a/VOL.HR/Repositories/EmployeeSync/HR_EmployeeSyncRepository.cs +++ b/LM.HR/Repositories/EmployeeSync/HR_EmployeeSyncRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹HR_EmployeeSyncRepository编写代码 */ -using VOL.HR.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.HR.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.HR.Repositories +namespace LM.HR.Repositories { public partial class HR_EmployeeSyncRepository : RepositoryBase , IHR_EmployeeSyncRepository diff --git a/VOL.HR/Services/DeptShip/HR_DeptShipService.cs b/LM.HR/Services/DeptShip/HR_DeptShipService.cs similarity index 74% rename from VOL.HR/Services/DeptShip/HR_DeptShipService.cs rename to LM.HR/Services/DeptShip/HR_DeptShipService.cs index dfb1c41..f34bc90 100644 --- a/VOL.HR/Services/DeptShip/HR_DeptShipService.cs +++ b/LM.HR/Services/DeptShip/HR_DeptShipService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下HR_DeptShipService与IHR_DeptShipService中编写 */ -using VOL.HR.IRepositories; -using VOL.HR.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.HR.IRepositories; +using LM.HR.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.HR.Services +namespace LM.HR.Services { public partial class HR_DeptShipService : ServiceBase , IHR_DeptShipService, IDependency diff --git a/VOL.HR/Services/DeptShip/Partial/HR_DeptShipService.cs b/LM.HR/Services/DeptShip/Partial/HR_DeptShipService.cs similarity index 94% rename from VOL.HR/Services/DeptShip/Partial/HR_DeptShipService.cs rename to LM.HR/Services/DeptShip/Partial/HR_DeptShipService.cs index 2a09829..2906579 100644 --- a/VOL.HR/Services/DeptShip/Partial/HR_DeptShipService.cs +++ b/LM.HR/Services/DeptShip/Partial/HR_DeptShipService.cs @@ -9,13 +9,13 @@ using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Newtonsoft.Json; -using VOL.DingTalk.Models.Biz; -using VOL.DingTalk.Services.Biz; -using VOL.HR.IRepositories; -using VOL.YSErp.Models.Biz; -using VOL.YSErp.Services.Biz; +using LM.DingTalk.Models.Biz; +using LM.DingTalk.Services.Biz; +using LM.HR.IRepositories; +using LM.YSErp.Models.Biz; +using LM.YSErp.Services.Biz; -namespace VOL.HR.Services +namespace LM.HR.Services { public partial class HR_DeptShipService { diff --git a/VOL.HR/Services/DeptSync/HR_DeptSyncService.cs b/LM.HR/Services/DeptSync/HR_DeptSyncService.cs similarity index 74% rename from VOL.HR/Services/DeptSync/HR_DeptSyncService.cs rename to LM.HR/Services/DeptSync/HR_DeptSyncService.cs index 348ae73..600ebf1 100644 --- a/VOL.HR/Services/DeptSync/HR_DeptSyncService.cs +++ b/LM.HR/Services/DeptSync/HR_DeptSyncService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下HR_DeptSyncService与IHR_DeptSyncService中编写 */ -using VOL.HR.IRepositories; -using VOL.HR.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.HR.IRepositories; +using LM.HR.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.HR.Services +namespace LM.HR.Services { public partial class HR_DeptSyncService : ServiceBase , IHR_DeptSyncService, IDependency diff --git a/VOL.HR/Services/DeptSync/Partial/HR_DeptSyncService.cs b/LM.HR/Services/DeptSync/Partial/HR_DeptSyncService.cs similarity index 96% rename from VOL.HR/Services/DeptSync/Partial/HR_DeptSyncService.cs rename to LM.HR/Services/DeptSync/Partial/HR_DeptSyncService.cs index 15a094d..965c42d 100644 --- a/VOL.HR/Services/DeptSync/Partial/HR_DeptSyncService.cs +++ b/LM.HR/Services/DeptSync/Partial/HR_DeptSyncService.cs @@ -9,16 +9,16 @@ using Microsoft.AspNetCore.Http; using Microsoft.Extensions.DependencyInjection; using Newtonsoft.Json; -using VOL.Core.DBManager; -using VOL.Core.Extensions; -using VOL.DingTalk.Models.Biz; -using VOL.DingTalk.Services.Biz; -using VOL.Entity.DomainModels.DeptShip.SystemDept; -using VOL.HR.IRepositories; -using VOL.YSErp.Models.Biz; -using VOL.YSErp.Services.Biz; +using LM.Core.DBManager; +using LM.Core.Extensions; +using LM.DingTalk.Models.Biz; +using LM.DingTalk.Services.Biz; +using LM.Entity.DomainModels.DeptShip.SystemDept; +using LM.HR.IRepositories; +using LM.YSErp.Models.Biz; +using LM.YSErp.Services.Biz; -namespace VOL.HR.Services +namespace LM.HR.Services { public partial class HR_DeptSyncService { diff --git a/VOL.HR/Services/EmployeeSync/HR_EmployeeSyncService.cs b/LM.HR/Services/EmployeeSync/HR_EmployeeSyncService.cs similarity index 75% rename from VOL.HR/Services/EmployeeSync/HR_EmployeeSyncService.cs rename to LM.HR/Services/EmployeeSync/HR_EmployeeSyncService.cs index 04d2989..669bbc4 100644 --- a/VOL.HR/Services/EmployeeSync/HR_EmployeeSyncService.cs +++ b/LM.HR/Services/EmployeeSync/HR_EmployeeSyncService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下HR_EmployeeSyncService与IHR_EmployeeSyncService中编写 */ -using VOL.HR.IRepositories; -using VOL.HR.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.HR.IRepositories; +using LM.HR.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.HR.Services +namespace LM.HR.Services { public partial class HR_EmployeeSyncService : ServiceBase , IHR_EmployeeSyncService, IDependency diff --git a/VOL.HR/Services/EmployeeSync/Partial/HR_EmployeeSyncService.cs b/LM.HR/Services/EmployeeSync/Partial/HR_EmployeeSyncService.cs similarity index 94% rename from VOL.HR/Services/EmployeeSync/Partial/HR_EmployeeSyncService.cs rename to LM.HR/Services/EmployeeSync/Partial/HR_EmployeeSyncService.cs index 5431d6c..b9d89d7 100644 --- a/VOL.HR/Services/EmployeeSync/Partial/HR_EmployeeSyncService.cs +++ b/LM.HR/Services/EmployeeSync/Partial/HR_EmployeeSyncService.cs @@ -17,21 +17,21 @@ using System.Linq; using System.Linq.Expressions; using System.Net.Http.Headers; using System.Text; -using VOL.Core.BaseProvider; -using VOL.Core.CacheManager; -using VOL.Core.DBManager; -using VOL.Core.Extensions; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.Utilities; -using VOL.DingTalk.Models.Biz; -using VOL.DingTalk.Services.Biz; -using VOL.Entity.DomainModels; -using VOL.HR.IRepositories; -using VOL.YSErp.Models.Biz; -using VOL.YSErp.Services.Biz; -using static VOL.YSErp.Models.Biz.YSERPEmployeeInfo; +using LM.Core.BaseProvider; +using LM.Core.CacheManager; +using LM.Core.DBManager; +using LM.Core.Extensions; +using LM.Core.Extensions.AutofacManager; +using LM.Core.Utilities; +using LM.DingTalk.Models.Biz; +using LM.DingTalk.Services.Biz; +using LM.Entity.DomainModels; +using LM.HR.IRepositories; +using LM.YSErp.Models.Biz; +using LM.YSErp.Services.Biz; +using static LM.YSErp.Models.Biz.YSERPEmployeeInfo; -namespace VOL.HR.Services +namespace LM.HR.Services { public partial class HR_EmployeeSyncService { diff --git a/VOL.Sys/IRepositories/Quartz/ISys_QuartzLogRepository.cs b/LM.Sys/IRepositories/Quartz/ISys_QuartzLogRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/Quartz/ISys_QuartzLogRepository.cs rename to LM.Sys/IRepositories/Quartz/ISys_QuartzLogRepository.cs index 9935418..562ddc5 100644 --- a/VOL.Sys/IRepositories/Quartz/ISys_QuartzLogRepository.cs +++ b/LM.Sys/IRepositories/Quartz/ISys_QuartzLogRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_QuartzLogRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/Quartz/ISys_QuartzOptionsRepository.cs b/LM.Sys/IRepositories/Quartz/ISys_QuartzOptionsRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/Quartz/ISys_QuartzOptionsRepository.cs rename to LM.Sys/IRepositories/Quartz/ISys_QuartzOptionsRepository.cs index 4342e38..09150d2 100644 --- a/VOL.Sys/IRepositories/Quartz/ISys_QuartzOptionsRepository.cs +++ b/LM.Sys/IRepositories/Quartz/ISys_QuartzOptionsRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_QuartzOptionsRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/ISys_DepartmentRepository.cs b/LM.Sys/IRepositories/System/ISys_DepartmentRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/System/ISys_DepartmentRepository.cs rename to LM.Sys/IRepositories/System/ISys_DepartmentRepository.cs index 7926036..e4c53b1 100644 --- a/VOL.Sys/IRepositories/System/ISys_DepartmentRepository.cs +++ b/LM.Sys/IRepositories/System/ISys_DepartmentRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_DepartmentRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/ISys_DictionaryListRepository.cs b/LM.Sys/IRepositories/System/ISys_DictionaryListRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/System/ISys_DictionaryListRepository.cs rename to LM.Sys/IRepositories/System/ISys_DictionaryListRepository.cs index 03bd07e..5ec5561 100644 --- a/VOL.Sys/IRepositories/System/ISys_DictionaryListRepository.cs +++ b/LM.Sys/IRepositories/System/ISys_DictionaryListRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_DictionaryListRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/ISys_DictionaryRepository.cs b/LM.Sys/IRepositories/System/ISys_DictionaryRepository.cs similarity index 72% rename from VOL.Sys/IRepositories/System/ISys_DictionaryRepository.cs rename to LM.Sys/IRepositories/System/ISys_DictionaryRepository.cs index 3ac0180..baa2a3a 100644 --- a/VOL.Sys/IRepositories/System/ISys_DictionaryRepository.cs +++ b/LM.Sys/IRepositories/System/ISys_DictionaryRepository.cs @@ -9,10 +9,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_DictionaryRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/ISys_LogRepository.cs b/LM.Sys/IRepositories/System/ISys_LogRepository.cs similarity index 62% rename from VOL.Sys/IRepositories/System/ISys_LogRepository.cs rename to LM.Sys/IRepositories/System/ISys_LogRepository.cs index 00f20ce..85bcf4c 100644 --- a/VOL.Sys/IRepositories/System/ISys_LogRepository.cs +++ b/LM.Sys/IRepositories/System/ISys_LogRepository.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_LogRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/ISys_MenuRepository.cs b/LM.Sys/IRepositories/System/ISys_MenuRepository.cs similarity index 62% rename from VOL.Sys/IRepositories/System/ISys_MenuRepository.cs rename to LM.Sys/IRepositories/System/ISys_MenuRepository.cs index 6a63a83..4a11099 100644 --- a/VOL.Sys/IRepositories/System/ISys_MenuRepository.cs +++ b/LM.Sys/IRepositories/System/ISys_MenuRepository.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_MenuRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/ISys_RoleRepository.cs b/LM.Sys/IRepositories/System/ISys_RoleRepository.cs similarity index 76% rename from VOL.Sys/IRepositories/System/ISys_RoleRepository.cs rename to LM.Sys/IRepositories/System/ISys_RoleRepository.cs index 67d486b..93e0b6b 100644 --- a/VOL.Sys/IRepositories/System/ISys_RoleRepository.cs +++ b/LM.Sys/IRepositories/System/ISys_RoleRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_RoleRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/ISys_UserRepository.cs b/LM.Sys/IRepositories/System/ISys_UserRepository.cs similarity index 76% rename from VOL.Sys/IRepositories/System/ISys_UserRepository.cs rename to LM.Sys/IRepositories/System/ISys_UserRepository.cs index 9c3e185..a453bbb 100644 --- a/VOL.Sys/IRepositories/System/ISys_UserRepository.cs +++ b/LM.Sys/IRepositories/System/ISys_UserRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_UserRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/System/IvSys_DictionaryRepository.cs b/LM.Sys/IRepositories/System/IvSys_DictionaryRepository.cs similarity index 72% rename from VOL.Sys/IRepositories/System/IvSys_DictionaryRepository.cs rename to LM.Sys/IRepositories/System/IvSys_DictionaryRepository.cs index ad6f99f..8d5dcd3 100644 --- a/VOL.Sys/IRepositories/System/IvSys_DictionaryRepository.cs +++ b/LM.Sys/IRepositories/System/IvSys_DictionaryRepository.cs @@ -9,10 +9,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface IvSys_DictionaryRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/flow/ISys_WorkFlowRepository.cs b/LM.Sys/IRepositories/flow/ISys_WorkFlowRepository.cs similarity index 76% rename from VOL.Sys/IRepositories/flow/ISys_WorkFlowRepository.cs rename to LM.Sys/IRepositories/flow/ISys_WorkFlowRepository.cs index 585ee37..473f94f 100644 --- a/VOL.Sys/IRepositories/flow/ISys_WorkFlowRepository.cs +++ b/LM.Sys/IRepositories/flow/ISys_WorkFlowRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_WorkFlowRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/flow/ISys_WorkFlowStepRepository.cs b/LM.Sys/IRepositories/flow/ISys_WorkFlowStepRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/flow/ISys_WorkFlowStepRepository.cs rename to LM.Sys/IRepositories/flow/ISys_WorkFlowStepRepository.cs index 621f41f..6b11887 100644 --- a/VOL.Sys/IRepositories/flow/ISys_WorkFlowStepRepository.cs +++ b/LM.Sys/IRepositories/flow/ISys_WorkFlowStepRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_WorkFlowStepRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/flow/ISys_WorkFlowTableAuditLogRepository.cs b/LM.Sys/IRepositories/flow/ISys_WorkFlowTableAuditLogRepository.cs similarity index 78% rename from VOL.Sys/IRepositories/flow/ISys_WorkFlowTableAuditLogRepository.cs rename to LM.Sys/IRepositories/flow/ISys_WorkFlowTableAuditLogRepository.cs index bb6bbee..099e9ab 100644 --- a/VOL.Sys/IRepositories/flow/ISys_WorkFlowTableAuditLogRepository.cs +++ b/LM.Sys/IRepositories/flow/ISys_WorkFlowTableAuditLogRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_WorkFlowTableAuditLogRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/flow/ISys_WorkFlowTableRepository.cs b/LM.Sys/IRepositories/flow/ISys_WorkFlowTableRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/flow/ISys_WorkFlowTableRepository.cs rename to LM.Sys/IRepositories/flow/ISys_WorkFlowTableRepository.cs index 744aa18..ace4b12 100644 --- a/VOL.Sys/IRepositories/flow/ISys_WorkFlowTableRepository.cs +++ b/LM.Sys/IRepositories/flow/ISys_WorkFlowTableRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_WorkFlowTableRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/flow/ISys_WorkFlowTableStepRepository.cs b/LM.Sys/IRepositories/flow/ISys_WorkFlowTableStepRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/flow/ISys_WorkFlowTableStepRepository.cs rename to LM.Sys/IRepositories/flow/ISys_WorkFlowTableStepRepository.cs index 004e339..77e2970 100644 --- a/VOL.Sys/IRepositories/flow/ISys_WorkFlowTableStepRepository.cs +++ b/LM.Sys/IRepositories/flow/ISys_WorkFlowTableStepRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface ISys_WorkFlowTableStepRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/form/IFormCollectionObjectRepository.cs b/LM.Sys/IRepositories/form/IFormCollectionObjectRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/form/IFormCollectionObjectRepository.cs rename to LM.Sys/IRepositories/form/IFormCollectionObjectRepository.cs index b4741b3..0784ca3 100644 --- a/VOL.Sys/IRepositories/form/IFormCollectionObjectRepository.cs +++ b/LM.Sys/IRepositories/form/IFormCollectionObjectRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface IFormCollectionObjectRepository : IDependency,IRepository { diff --git a/VOL.Sys/IRepositories/form/IFormDesignOptionsRepository.cs b/LM.Sys/IRepositories/form/IFormDesignOptionsRepository.cs similarity index 77% rename from VOL.Sys/IRepositories/form/IFormDesignOptionsRepository.cs rename to LM.Sys/IRepositories/form/IFormDesignOptionsRepository.cs index aa2d287..43deb16 100644 --- a/VOL.Sys/IRepositories/form/IFormDesignOptionsRepository.cs +++ b/LM.Sys/IRepositories/form/IFormDesignOptionsRepository.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Extensions.AutofacManager; -namespace VOL.Sys.IRepositories +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Extensions.AutofacManager; +namespace LM.Sys.IRepositories { public partial interface IFormDesignOptionsRepository : IDependency,IRepository { diff --git a/VOL.Sys/IServices/Quartz/ISys_QuartzLogService.cs b/LM.Sys/IServices/Quartz/ISys_QuartzLogService.cs similarity index 66% rename from VOL.Sys/IServices/Quartz/ISys_QuartzLogService.cs rename to LM.Sys/IServices/Quartz/ISys_QuartzLogService.cs index 28e36d9..a84f439 100644 --- a/VOL.Sys/IServices/Quartz/ISys_QuartzLogService.cs +++ b/LM.Sys/IServices/Quartz/ISys_QuartzLogService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_QuartzLogService : IService { diff --git a/VOL.Sys/IServices/Quartz/ISys_QuartzOptionsService.cs b/LM.Sys/IServices/Quartz/ISys_QuartzOptionsService.cs similarity index 67% rename from VOL.Sys/IServices/Quartz/ISys_QuartzOptionsService.cs rename to LM.Sys/IServices/Quartz/ISys_QuartzOptionsService.cs index 63021e6..78c7b88 100644 --- a/VOL.Sys/IServices/Quartz/ISys_QuartzOptionsService.cs +++ b/LM.Sys/IServices/Quartz/ISys_QuartzOptionsService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_QuartzOptionsService : IService { diff --git a/VOL.Sys/IServices/Quartz/Partial/ISys_QuartzLogService.cs b/LM.Sys/IServices/Quartz/Partial/ISys_QuartzLogService.cs similarity index 60% rename from VOL.Sys/IServices/Quartz/Partial/ISys_QuartzLogService.cs rename to LM.Sys/IServices/Quartz/Partial/ISys_QuartzLogService.cs index 538baa3..89d4e7d 100644 --- a/VOL.Sys/IServices/Quartz/Partial/ISys_QuartzLogService.cs +++ b/LM.Sys/IServices/Quartz/Partial/ISys_QuartzLogService.cs @@ -1,11 +1,11 @@ /* *所有关于Sys_QuartzLog类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_QuartzLogService { diff --git a/VOL.Sys/IServices/Quartz/Partial/ISys_QuartzOptionsService.cs b/LM.Sys/IServices/Quartz/Partial/ISys_QuartzOptionsService.cs similarity index 89% rename from VOL.Sys/IServices/Quartz/Partial/ISys_QuartzOptionsService.cs rename to LM.Sys/IServices/Quartz/Partial/ISys_QuartzOptionsService.cs index 3325a3b..a197b7a 100644 --- a/VOL.Sys/IServices/Quartz/Partial/ISys_QuartzOptionsService.cs +++ b/LM.Sys/IServices/Quartz/Partial/ISys_QuartzOptionsService.cs @@ -1,13 +1,13 @@ /* *所有关于Sys_QuartzOptions类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; using System.Threading.Tasks; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_QuartzOptionsService { diff --git a/VOL.Sys/IServices/System/ISys_DepartmentService.cs b/LM.Sys/IServices/System/ISys_DepartmentService.cs similarity index 67% rename from VOL.Sys/IServices/System/ISys_DepartmentService.cs rename to LM.Sys/IServices/System/ISys_DepartmentService.cs index 5f682da..d002840 100644 --- a/VOL.Sys/IServices/System/ISys_DepartmentService.cs +++ b/LM.Sys/IServices/System/ISys_DepartmentService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_DepartmentService : IService { diff --git a/VOL.Sys/IServices/System/ISys_DictionaryListService.cs b/LM.Sys/IServices/System/ISys_DictionaryListService.cs similarity index 68% rename from VOL.Sys/IServices/System/ISys_DictionaryListService.cs rename to LM.Sys/IServices/System/ISys_DictionaryListService.cs index 9a96f2b..eb301d6 100644 --- a/VOL.Sys/IServices/System/ISys_DictionaryListService.cs +++ b/LM.Sys/IServices/System/ISys_DictionaryListService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_DictionaryListService : IService { diff --git a/VOL.Sys/IServices/System/ISys_DictionaryService.cs b/LM.Sys/IServices/System/ISys_DictionaryService.cs similarity index 71% rename from VOL.Sys/IServices/System/ISys_DictionaryService.cs rename to LM.Sys/IServices/System/ISys_DictionaryService.cs index 930501d..aa05b55 100644 --- a/VOL.Sys/IServices/System/ISys_DictionaryService.cs +++ b/LM.Sys/IServices/System/ISys_DictionaryService.cs @@ -4,10 +4,10 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_DictionaryService : IService { diff --git a/LM.Sys/IServices/System/ISys_LogService.cs b/LM.Sys/IServices/System/ISys_LogService.cs new file mode 100644 index 0000000..30cf61b --- /dev/null +++ b/LM.Sys/IServices/System/ISys_LogService.cs @@ -0,0 +1,10 @@ +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; + +namespace LM.Sys.IServices +{ + public partial interface ISys_LogService : IService + { + } + } + diff --git a/LM.Sys/IServices/System/ISys_MenuService.cs b/LM.Sys/IServices/System/ISys_MenuService.cs new file mode 100644 index 0000000..ed2f2a0 --- /dev/null +++ b/LM.Sys/IServices/System/ISys_MenuService.cs @@ -0,0 +1,10 @@ +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; + +namespace LM.Sys.IServices +{ + public partial interface ISys_MenuService : IService + { + } + } + diff --git a/VOL.Sys/IServices/System/ISys_RoleService.cs b/LM.Sys/IServices/System/ISys_RoleService.cs similarity index 70% rename from VOL.Sys/IServices/System/ISys_RoleService.cs rename to LM.Sys/IServices/System/ISys_RoleService.cs index 5aaacf0..d8582cf 100644 --- a/VOL.Sys/IServices/System/ISys_RoleService.cs +++ b/LM.Sys/IServices/System/ISys_RoleService.cs @@ -4,10 +4,10 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_RoleService : IService { diff --git a/VOL.Sys/IServices/System/ISys_UserService.cs b/LM.Sys/IServices/System/ISys_UserService.cs similarity index 65% rename from VOL.Sys/IServices/System/ISys_UserService.cs rename to LM.Sys/IServices/System/ISys_UserService.cs index 9d45d4a..42d23fc 100644 --- a/VOL.Sys/IServices/System/ISys_UserService.cs +++ b/LM.Sys/IServices/System/ISys_UserService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_UserService : IService { diff --git a/VOL.Sys/IServices/System/IvSys_DictionaryService.cs b/LM.Sys/IServices/System/IvSys_DictionaryService.cs similarity index 71% rename from VOL.Sys/IServices/System/IvSys_DictionaryService.cs rename to LM.Sys/IServices/System/IvSys_DictionaryService.cs index d37f697..e28a7db 100644 --- a/VOL.Sys/IServices/System/IvSys_DictionaryService.cs +++ b/LM.Sys/IServices/System/IvSys_DictionaryService.cs @@ -4,10 +4,10 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface IvSys_DictionaryService : IService { diff --git a/VOL.Sys/IServices/System/Partial/ISys_DepartmentService.cs b/LM.Sys/IServices/System/Partial/ISys_DepartmentService.cs similarity index 60% rename from VOL.Sys/IServices/System/Partial/ISys_DepartmentService.cs rename to LM.Sys/IServices/System/Partial/ISys_DepartmentService.cs index 61265b9..5513881 100644 --- a/VOL.Sys/IServices/System/Partial/ISys_DepartmentService.cs +++ b/LM.Sys/IServices/System/Partial/ISys_DepartmentService.cs @@ -1,11 +1,11 @@ /* *所有关于Sys_Department类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_DepartmentService { diff --git a/LM.Sys/IServices/System/Partial/ISys_DictionaryListService.cs b/LM.Sys/IServices/System/Partial/ISys_DictionaryListService.cs new file mode 100644 index 0000000..fb85e34 --- /dev/null +++ b/LM.Sys/IServices/System/Partial/ISys_DictionaryListService.cs @@ -0,0 +1,10 @@ +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; + +namespace LM.Sys.IServices +{ + public partial interface ISys_DictionaryListService + { + } + } + diff --git a/VOL.Sys/IServices/System/Partial/ISys_DictionaryService.cs b/LM.Sys/IServices/System/Partial/ISys_DictionaryService.cs similarity index 90% rename from VOL.Sys/IServices/System/Partial/ISys_DictionaryService.cs rename to LM.Sys/IServices/System/Partial/ISys_DictionaryService.cs index d2512c5..c0a346d 100644 --- a/VOL.Sys/IServices/System/Partial/ISys_DictionaryService.cs +++ b/LM.Sys/IServices/System/Partial/ISys_DictionaryService.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_DictionaryService { diff --git a/VOL.Sys/IServices/System/Partial/ISys_MenuService.cs b/LM.Sys/IServices/System/Partial/ISys_MenuService.cs similarity index 85% rename from VOL.Sys/IServices/System/Partial/ISys_MenuService.cs rename to LM.Sys/IServices/System/Partial/ISys_MenuService.cs index b29f8b4..375ff2a 100644 --- a/VOL.Sys/IServices/System/Partial/ISys_MenuService.cs +++ b/LM.Sys/IServices/System/Partial/ISys_MenuService.cs @@ -1,9 +1,9 @@ using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.Utilities; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_MenuService { diff --git a/VOL.Sys/IServices/System/Partial/ISys_RoleService.cs b/LM.Sys/IServices/System/Partial/ISys_RoleService.cs similarity index 90% rename from VOL.Sys/IServices/System/Partial/ISys_RoleService.cs rename to LM.Sys/IServices/System/Partial/ISys_RoleService.cs index b27793e..f1a06d5 100644 --- a/VOL.Sys/IServices/System/Partial/ISys_RoleService.cs +++ b/LM.Sys/IServices/System/Partial/ISys_RoleService.cs @@ -1,11 +1,11 @@ using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Core.UserManager; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; -using VOL.Sys.Services; +using LM.Core.UserManager; +using LM.Core.Utilities; +using LM.Entity.DomainModels; +using LM.Sys.Services; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_RoleService { diff --git a/VOL.Sys/IServices/System/Partial/ISys_UserService.cs b/LM.Sys/IServices/System/Partial/ISys_UserService.cs similarity index 75% rename from VOL.Sys/IServices/System/Partial/ISys_UserService.cs rename to LM.Sys/IServices/System/Partial/ISys_UserService.cs index 8242b04..0a685dc 100644 --- a/VOL.Sys/IServices/System/Partial/ISys_UserService.cs +++ b/LM.Sys/IServices/System/Partial/ISys_UserService.cs @@ -1,9 +1,9 @@ -using VOL.Core.BaseProvider; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Utilities; +using LM.Entity.DomainModels; using System.Threading.Tasks; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_UserService { diff --git a/VOL.Sys/IServices/flow/ISys_WorkFlowService.cs b/LM.Sys/IServices/flow/ISys_WorkFlowService.cs similarity index 66% rename from VOL.Sys/IServices/flow/ISys_WorkFlowService.cs rename to LM.Sys/IServices/flow/ISys_WorkFlowService.cs index c3861ed..35bf07a 100644 --- a/VOL.Sys/IServices/flow/ISys_WorkFlowService.cs +++ b/LM.Sys/IServices/flow/ISys_WorkFlowService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowService : IService { diff --git a/VOL.Sys/IServices/flow/ISys_WorkFlowStepService.cs b/LM.Sys/IServices/flow/ISys_WorkFlowStepService.cs similarity index 67% rename from VOL.Sys/IServices/flow/ISys_WorkFlowStepService.cs rename to LM.Sys/IServices/flow/ISys_WorkFlowStepService.cs index ad575b8..0e3b77b 100644 --- a/VOL.Sys/IServices/flow/ISys_WorkFlowStepService.cs +++ b/LM.Sys/IServices/flow/ISys_WorkFlowStepService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowStepService : IService { diff --git a/VOL.Sys/IServices/flow/ISys_WorkFlowTableAuditLogService.cs b/LM.Sys/IServices/flow/ISys_WorkFlowTableAuditLogService.cs similarity index 69% rename from VOL.Sys/IServices/flow/ISys_WorkFlowTableAuditLogService.cs rename to LM.Sys/IServices/flow/ISys_WorkFlowTableAuditLogService.cs index a12bd4c..c47fd24 100644 --- a/VOL.Sys/IServices/flow/ISys_WorkFlowTableAuditLogService.cs +++ b/LM.Sys/IServices/flow/ISys_WorkFlowTableAuditLogService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowTableAuditLogService : IService { diff --git a/VOL.Sys/IServices/flow/ISys_WorkFlowTableService.cs b/LM.Sys/IServices/flow/ISys_WorkFlowTableService.cs similarity index 67% rename from VOL.Sys/IServices/flow/ISys_WorkFlowTableService.cs rename to LM.Sys/IServices/flow/ISys_WorkFlowTableService.cs index b26fd29..2c39ff9 100644 --- a/VOL.Sys/IServices/flow/ISys_WorkFlowTableService.cs +++ b/LM.Sys/IServices/flow/ISys_WorkFlowTableService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowTableService : IService { diff --git a/VOL.Sys/IServices/flow/ISys_WorkFlowTableStepService.cs b/LM.Sys/IServices/flow/ISys_WorkFlowTableStepService.cs similarity index 68% rename from VOL.Sys/IServices/flow/ISys_WorkFlowTableStepService.cs rename to LM.Sys/IServices/flow/ISys_WorkFlowTableStepService.cs index 9449b2b..2e1f602 100644 --- a/VOL.Sys/IServices/flow/ISys_WorkFlowTableStepService.cs +++ b/LM.Sys/IServices/flow/ISys_WorkFlowTableStepService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowTableStepService : IService { diff --git a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowService.cs b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowService.cs similarity index 60% rename from VOL.Sys/IServices/flow/Partial/ISys_WorkFlowService.cs rename to LM.Sys/IServices/flow/Partial/ISys_WorkFlowService.cs index ed160fe..613210e 100644 --- a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowService.cs +++ b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowService.cs @@ -1,11 +1,11 @@ /* *所有关于Sys_WorkFlow类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowService { diff --git a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowStepService.cs b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowStepService.cs similarity index 61% rename from VOL.Sys/IServices/flow/Partial/ISys_WorkFlowStepService.cs rename to LM.Sys/IServices/flow/Partial/ISys_WorkFlowStepService.cs index 8867938..2a64570 100644 --- a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowStepService.cs +++ b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowStepService.cs @@ -1,11 +1,11 @@ /* *所有关于Sys_WorkFlowStep类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowStepService { diff --git a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableAuditLogService.cs b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableAuditLogService.cs similarity index 63% rename from VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableAuditLogService.cs rename to LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableAuditLogService.cs index 482eadb..1a60545 100644 --- a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableAuditLogService.cs +++ b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableAuditLogService.cs @@ -1,11 +1,11 @@ /* *所有关于Sys_WorkFlowTableAuditLog类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowTableAuditLogService { diff --git a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableService.cs b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableService.cs similarity index 61% rename from VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableService.cs rename to LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableService.cs index dc0c45c..7580ecc 100644 --- a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableService.cs +++ b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableService.cs @@ -1,11 +1,11 @@ /* *所有关于Sys_WorkFlowTable类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowTableService { diff --git a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableStepService.cs b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableStepService.cs similarity index 62% rename from VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableStepService.cs rename to LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableStepService.cs index 5d93ac9..eeed204 100644 --- a/VOL.Sys/IServices/flow/Partial/ISys_WorkFlowTableStepService.cs +++ b/LM.Sys/IServices/flow/Partial/ISys_WorkFlowTableStepService.cs @@ -1,11 +1,11 @@ /* *所有关于Sys_WorkFlowTableStep类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface ISys_WorkFlowTableStepService { diff --git a/VOL.Sys/IServices/form/IFormCollectionObjectService.cs b/LM.Sys/IServices/form/IFormCollectionObjectService.cs similarity index 68% rename from VOL.Sys/IServices/form/IFormCollectionObjectService.cs rename to LM.Sys/IServices/form/IFormCollectionObjectService.cs index 03b8901..9a32129 100644 --- a/VOL.Sys/IServices/form/IFormCollectionObjectService.cs +++ b/LM.Sys/IServices/form/IFormCollectionObjectService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface IFormCollectionObjectService : IService { diff --git a/VOL.Sys/IServices/form/IFormDesignOptionsService.cs b/LM.Sys/IServices/form/IFormDesignOptionsService.cs similarity index 67% rename from VOL.Sys/IServices/form/IFormDesignOptionsService.cs rename to LM.Sys/IServices/form/IFormDesignOptionsService.cs index 4cfb882..5e137f7 100644 --- a/VOL.Sys/IServices/form/IFormDesignOptionsService.cs +++ b/LM.Sys/IServices/form/IFormDesignOptionsService.cs @@ -1,10 +1,10 @@ /* *代码由框架生成,任何更改都可能导致被代码生成器覆盖 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface IFormDesignOptionsService : IService { diff --git a/VOL.Sys/IServices/form/Partial/IFormCollectionObjectService.cs b/LM.Sys/IServices/form/Partial/IFormCollectionObjectService.cs similarity index 62% rename from VOL.Sys/IServices/form/Partial/IFormCollectionObjectService.cs rename to LM.Sys/IServices/form/Partial/IFormCollectionObjectService.cs index 05b395e..3d7d7e9 100644 --- a/VOL.Sys/IServices/form/Partial/IFormCollectionObjectService.cs +++ b/LM.Sys/IServices/form/Partial/IFormCollectionObjectService.cs @@ -1,11 +1,11 @@ /* *所有关于FormCollectionObject类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface IFormCollectionObjectService { diff --git a/VOL.Sys/IServices/form/Partial/IFormDesignOptionsService.cs b/LM.Sys/IServices/form/Partial/IFormDesignOptionsService.cs similarity index 61% rename from VOL.Sys/IServices/form/Partial/IFormDesignOptionsService.cs rename to LM.Sys/IServices/form/Partial/IFormDesignOptionsService.cs index 3cef529..8798dd6 100644 --- a/VOL.Sys/IServices/form/Partial/IFormDesignOptionsService.cs +++ b/LM.Sys/IServices/form/Partial/IFormDesignOptionsService.cs @@ -1,11 +1,11 @@ /* *所有关于FormDesignOptions类的业务代码接口应在此处编写 */ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.BaseProvider; +using LM.Entity.DomainModels; +using LM.Core.Utilities; using System.Linq.Expressions; -namespace VOL.Sys.IServices +namespace LM.Sys.IServices { public partial interface IFormDesignOptionsService { diff --git a/VOL.Sys/VOL.Sys.csproj b/LM.Sys/LM.Sys.csproj similarity index 88% rename from VOL.Sys/VOL.Sys.csproj rename to LM.Sys/LM.Sys.csproj index c27b372..e612aa0 100644 --- a/VOL.Sys/VOL.Sys.csproj +++ b/LM.Sys/LM.Sys.csproj @@ -28,8 +28,8 @@ - - + + diff --git a/VOL.Sys/Properties/launchSettings.json b/LM.Sys/Properties/launchSettings.json similarity index 96% rename from VOL.Sys/Properties/launchSettings.json rename to LM.Sys/Properties/launchSettings.json index c1b84ca..3e2c066 100644 --- a/VOL.Sys/Properties/launchSettings.json +++ b/LM.Sys/Properties/launchSettings.json @@ -15,7 +15,7 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, - "VOL.System": { + "LM.System": { "commandName": "Project", "launchBrowser": true, "environmentVariables": { diff --git a/VOL.Sys/Repositories/Quartz/Sys_QuartzLogRepository.cs b/LM.Sys/Repositories/Quartz/Sys_QuartzLogRepository.cs similarity index 75% rename from VOL.Sys/Repositories/Quartz/Sys_QuartzLogRepository.cs rename to LM.Sys/Repositories/Quartz/Sys_QuartzLogRepository.cs index b20791f..7f8f29e 100644 --- a/VOL.Sys/Repositories/Quartz/Sys_QuartzLogRepository.cs +++ b/LM.Sys/Repositories/Quartz/Sys_QuartzLogRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_QuartzLogRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_QuartzLogRepository : RepositoryBase , ISys_QuartzLogRepository { diff --git a/VOL.Sys/Repositories/Quartz/Sys_QuartzOptionsRepository.cs b/LM.Sys/Repositories/Quartz/Sys_QuartzOptionsRepository.cs similarity index 76% rename from VOL.Sys/Repositories/Quartz/Sys_QuartzOptionsRepository.cs rename to LM.Sys/Repositories/Quartz/Sys_QuartzOptionsRepository.cs index 2507ea5..309ca5b 100644 --- a/VOL.Sys/Repositories/Quartz/Sys_QuartzOptionsRepository.cs +++ b/LM.Sys/Repositories/Quartz/Sys_QuartzOptionsRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_QuartzOptionsRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_QuartzOptionsRepository : RepositoryBase , ISys_QuartzOptionsRepository { diff --git a/LM.Sys/Repositories/System/Partial/Sys_MenuRepository.cs b/LM.Sys/Repositories/System/Partial/Sys_MenuRepository.cs new file mode 100644 index 0000000..13161eb --- /dev/null +++ b/LM.Sys/Repositories/System/Partial/Sys_MenuRepository.cs @@ -0,0 +1,13 @@ +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Core.DbContext; +using LM.Entity.DomainModels; + +namespace LM.Sys.Repositories +{ + public partial class Sys_MenuRepository + { + } +} + diff --git a/VOL.Sys/Repositories/System/Sys_DepartmentRepository.cs b/LM.Sys/Repositories/System/Sys_DepartmentRepository.cs similarity index 75% rename from VOL.Sys/Repositories/System/Sys_DepartmentRepository.cs rename to LM.Sys/Repositories/System/Sys_DepartmentRepository.cs index 8c7ff9b..988d749 100644 --- a/VOL.Sys/Repositories/System/Sys_DepartmentRepository.cs +++ b/LM.Sys/Repositories/System/Sys_DepartmentRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_DepartmentRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_DepartmentRepository : RepositoryBase , ISys_DepartmentRepository { diff --git a/VOL.Sys/Repositories/System/Sys_DictionaryListRepository.cs b/LM.Sys/Repositories/System/Sys_DictionaryListRepository.cs similarity index 76% rename from VOL.Sys/Repositories/System/Sys_DictionaryListRepository.cs rename to LM.Sys/Repositories/System/Sys_DictionaryListRepository.cs index 9cc4510..9da467a 100644 --- a/VOL.Sys/Repositories/System/Sys_DictionaryListRepository.cs +++ b/LM.Sys/Repositories/System/Sys_DictionaryListRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_DictionaryListRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_DictionaryListRepository : RepositoryBase , ISys_DictionaryListRepository { diff --git a/VOL.Sys/Repositories/System/Sys_DictionaryRepository.cs b/LM.Sys/Repositories/System/Sys_DictionaryRepository.cs similarity index 73% rename from VOL.Sys/Repositories/System/Sys_DictionaryRepository.cs rename to LM.Sys/Repositories/System/Sys_DictionaryRepository.cs index de82439..8a0bd8a 100644 --- a/VOL.Sys/Repositories/System/Sys_DictionaryRepository.cs +++ b/LM.Sys/Repositories/System/Sys_DictionaryRepository.cs @@ -4,13 +4,13 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_DictionaryRepository : RepositoryBase, ISys_DictionaryRepository { diff --git a/VOL.Sys/Repositories/System/Sys_LogRepository.cs b/LM.Sys/Repositories/System/Sys_LogRepository.cs similarity index 65% rename from VOL.Sys/Repositories/System/Sys_LogRepository.cs rename to LM.Sys/Repositories/System/Sys_LogRepository.cs index fd6e630..44b153d 100644 --- a/VOL.Sys/Repositories/System/Sys_LogRepository.cs +++ b/LM.Sys/Repositories/System/Sys_LogRepository.cs @@ -1,10 +1,10 @@ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.DbContext; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Core.DbContext; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_LogRepository : RepositoryBase, ISys_LogRepository { diff --git a/VOL.Sys/Repositories/System/Sys_MenuRepository.cs b/LM.Sys/Repositories/System/Sys_MenuRepository.cs similarity index 65% rename from VOL.Sys/Repositories/System/Sys_MenuRepository.cs rename to LM.Sys/Repositories/System/Sys_MenuRepository.cs index 51a41ba..a757163 100644 --- a/VOL.Sys/Repositories/System/Sys_MenuRepository.cs +++ b/LM.Sys/Repositories/System/Sys_MenuRepository.cs @@ -1,10 +1,10 @@ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.DbContext; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Core.DbContext; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_MenuRepository : RepositoryBase, ISys_MenuRepository { diff --git a/VOL.Sys/Repositories/System/Sys_RoleRepository.cs b/LM.Sys/Repositories/System/Sys_RoleRepository.cs similarity index 72% rename from VOL.Sys/Repositories/System/Sys_RoleRepository.cs rename to LM.Sys/Repositories/System/Sys_RoleRepository.cs index 88a241b..d670297 100644 --- a/VOL.Sys/Repositories/System/Sys_RoleRepository.cs +++ b/LM.Sys/Repositories/System/Sys_RoleRepository.cs @@ -4,13 +4,13 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_RoleRepository : RepositoryBase, ISys_RoleRepository { diff --git a/VOL.Sys/Repositories/System/Sys_UserRepository.cs b/LM.Sys/Repositories/System/Sys_UserRepository.cs similarity index 75% rename from VOL.Sys/Repositories/System/Sys_UserRepository.cs rename to LM.Sys/Repositories/System/Sys_UserRepository.cs index 2a660f6..05b39b2 100644 --- a/VOL.Sys/Repositories/System/Sys_UserRepository.cs +++ b/LM.Sys/Repositories/System/Sys_UserRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_UserRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_UserRepository : RepositoryBase , ISys_UserRepository diff --git a/VOL.Sys/Repositories/System/vSys_DictionaryRepository.cs b/LM.Sys/Repositories/System/vSys_DictionaryRepository.cs similarity index 73% rename from VOL.Sys/Repositories/System/vSys_DictionaryRepository.cs rename to LM.Sys/Repositories/System/vSys_DictionaryRepository.cs index 3d53752..c330b43 100644 --- a/VOL.Sys/Repositories/System/vSys_DictionaryRepository.cs +++ b/LM.Sys/Repositories/System/vSys_DictionaryRepository.cs @@ -4,13 +4,13 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class vSys_DictionaryRepository : RepositoryBase, IvSys_DictionaryRepository { diff --git a/VOL.Sys/Repositories/flow/Sys_WorkFlowRepository.cs b/LM.Sys/Repositories/flow/Sys_WorkFlowRepository.cs similarity index 75% rename from VOL.Sys/Repositories/flow/Sys_WorkFlowRepository.cs rename to LM.Sys/Repositories/flow/Sys_WorkFlowRepository.cs index 95e66fc..da03b2f 100644 --- a/VOL.Sys/Repositories/flow/Sys_WorkFlowRepository.cs +++ b/LM.Sys/Repositories/flow/Sys_WorkFlowRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; -using VOL.Core.DbContext; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; +using LM.Core.DbContext; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_WorkFlowRepository : RepositoryBase , ISys_WorkFlowRepository { diff --git a/VOL.Sys/Repositories/flow/Sys_WorkFlowStepRepository.cs b/LM.Sys/Repositories/flow/Sys_WorkFlowStepRepository.cs similarity index 76% rename from VOL.Sys/Repositories/flow/Sys_WorkFlowStepRepository.cs rename to LM.Sys/Repositories/flow/Sys_WorkFlowStepRepository.cs index e7da4c7..cd5776b 100644 --- a/VOL.Sys/Repositories/flow/Sys_WorkFlowStepRepository.cs +++ b/LM.Sys/Repositories/flow/Sys_WorkFlowStepRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowStepRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_WorkFlowStepRepository : RepositoryBase , ISys_WorkFlowStepRepository { diff --git a/VOL.Sys/Repositories/flow/Sys_WorkFlowTableAuditLogRepository.cs b/LM.Sys/Repositories/flow/Sys_WorkFlowTableAuditLogRepository.cs similarity index 78% rename from VOL.Sys/Repositories/flow/Sys_WorkFlowTableAuditLogRepository.cs rename to LM.Sys/Repositories/flow/Sys_WorkFlowTableAuditLogRepository.cs index 33578f9..0ffe40f 100644 --- a/VOL.Sys/Repositories/flow/Sys_WorkFlowTableAuditLogRepository.cs +++ b/LM.Sys/Repositories/flow/Sys_WorkFlowTableAuditLogRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowTableAuditLogRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_WorkFlowTableAuditLogRepository : RepositoryBase , ISys_WorkFlowTableAuditLogRepository { diff --git a/VOL.Sys/Repositories/flow/Sys_WorkFlowTableRepository.cs b/LM.Sys/Repositories/flow/Sys_WorkFlowTableRepository.cs similarity index 76% rename from VOL.Sys/Repositories/flow/Sys_WorkFlowTableRepository.cs rename to LM.Sys/Repositories/flow/Sys_WorkFlowTableRepository.cs index 99b7308..c74a472 100644 --- a/VOL.Sys/Repositories/flow/Sys_WorkFlowTableRepository.cs +++ b/LM.Sys/Repositories/flow/Sys_WorkFlowTableRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowTableRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_WorkFlowTableRepository : RepositoryBase , ISys_WorkFlowTableRepository { diff --git a/VOL.Sys/Repositories/flow/Sys_WorkFlowTableStepRepository.cs b/LM.Sys/Repositories/flow/Sys_WorkFlowTableStepRepository.cs similarity index 77% rename from VOL.Sys/Repositories/flow/Sys_WorkFlowTableStepRepository.cs rename to LM.Sys/Repositories/flow/Sys_WorkFlowTableStepRepository.cs index ffab53e..3e5f3c2 100644 --- a/VOL.Sys/Repositories/flow/Sys_WorkFlowTableStepRepository.cs +++ b/LM.Sys/Repositories/flow/Sys_WorkFlowTableStepRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹Sys_WorkFlowTableStepRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class Sys_WorkFlowTableStepRepository : RepositoryBase , ISys_WorkFlowTableStepRepository { diff --git a/VOL.Sys/Repositories/form/FormCollectionObjectRepository.cs b/LM.Sys/Repositories/form/FormCollectionObjectRepository.cs similarity index 77% rename from VOL.Sys/Repositories/form/FormCollectionObjectRepository.cs rename to LM.Sys/Repositories/form/FormCollectionObjectRepository.cs index a3c2db9..bd1052b 100644 --- a/VOL.Sys/Repositories/form/FormCollectionObjectRepository.cs +++ b/LM.Sys/Repositories/form/FormCollectionObjectRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹FormCollectionObjectRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class FormCollectionObjectRepository : RepositoryBase , IFormCollectionObjectRepository { diff --git a/VOL.Sys/Repositories/form/FormDesignOptionsRepository.cs b/LM.Sys/Repositories/form/FormDesignOptionsRepository.cs similarity index 76% rename from VOL.Sys/Repositories/form/FormDesignOptionsRepository.cs rename to LM.Sys/Repositories/form/FormDesignOptionsRepository.cs index 26c1f6e..4cd86a7 100644 --- a/VOL.Sys/Repositories/form/FormDesignOptionsRepository.cs +++ b/LM.Sys/Repositories/form/FormDesignOptionsRepository.cs @@ -2,13 +2,13 @@ *代码由框架生成,任何更改都可能导致被代码生成器覆盖 *Repository提供数据库操作,如果要增加数据库操作请在当前目录下Partial文件夹FormDesignOptionsRepository编写代码 */ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.DbContext; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Core.BaseProvider; +using LM.Core.DbContext; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Repositories +namespace LM.Sys.Repositories { public partial class FormDesignOptionsRepository : RepositoryBase , IFormDesignOptionsRepository { diff --git a/VOL.Sys/Services/Quartz/Partial/Sys_QuartzLogService.cs b/LM.Sys/Services/Quartz/Partial/Sys_QuartzLogService.cs similarity index 85% rename from VOL.Sys/Services/Quartz/Partial/Sys_QuartzLogService.cs rename to LM.Sys/Services/Quartz/Partial/Sys_QuartzLogService.cs index 35ed843..4fd1033 100644 --- a/VOL.Sys/Services/Quartz/Partial/Sys_QuartzLogService.cs +++ b/LM.Sys/Services/Quartz/Partial/Sys_QuartzLogService.cs @@ -6,19 +6,19 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_QuartzLogService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_QuartzLogService { diff --git a/VOL.Sys/Services/Quartz/Partial/Sys_QuartzOptionsService.cs b/LM.Sys/Services/Quartz/Partial/Sys_QuartzOptionsService.cs similarity index 95% rename from VOL.Sys/Services/Quartz/Partial/Sys_QuartzOptionsService.cs rename to LM.Sys/Services/Quartz/Partial/Sys_QuartzOptionsService.cs index 52a369e..dc4d57a 100644 --- a/VOL.Sys/Services/Quartz/Partial/Sys_QuartzOptionsService.cs +++ b/LM.Sys/Services/Quartz/Partial/Sys_QuartzOptionsService.cs @@ -6,25 +6,25 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_QuartzOptionsService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; -using VOL.Core.Quartz; +using LM.Sys.IRepositories; +using LM.Core.Quartz; using Quartz; using System; using System.Collections.Generic; using System.Threading.Tasks; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_QuartzOptionsService { diff --git a/VOL.Sys/Services/Quartz/Sys_QuartzLogService.cs b/LM.Sys/Services/Quartz/Sys_QuartzLogService.cs similarity index 78% rename from VOL.Sys/Services/Quartz/Sys_QuartzLogService.cs rename to LM.Sys/Services/Quartz/Sys_QuartzLogService.cs index c299dd4..11680ac 100644 --- a/VOL.Sys/Services/Quartz/Sys_QuartzLogService.cs +++ b/LM.Sys/Services/Quartz/Sys_QuartzLogService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_QuartzLogService与ISys_QuartzLogService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_QuartzLogService : ServiceBase , ISys_QuartzLogService, IDependency diff --git a/VOL.Sys/Services/Quartz/Sys_QuartzOptionsService.cs b/LM.Sys/Services/Quartz/Sys_QuartzOptionsService.cs similarity index 79% rename from VOL.Sys/Services/Quartz/Sys_QuartzOptionsService.cs rename to LM.Sys/Services/Quartz/Sys_QuartzOptionsService.cs index b006845..6e69b8d 100644 --- a/VOL.Sys/Services/Quartz/Sys_QuartzOptionsService.cs +++ b/LM.Sys/Services/Quartz/Sys_QuartzOptionsService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_QuartzOptionsService与ISys_QuartzOptionsService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_QuartzOptionsService : ServiceBase , ISys_QuartzOptionsService, IDependency diff --git a/VOL.Sys/Services/System/Partial/Sys_DepartmentService.cs b/LM.Sys/Services/System/Partial/Sys_DepartmentService.cs similarity index 92% rename from VOL.Sys/Services/System/Partial/Sys_DepartmentService.cs rename to LM.Sys/Services/System/Partial/Sys_DepartmentService.cs index d75a8c6..6d4cd19 100644 --- a/VOL.Sys/Services/System/Partial/Sys_DepartmentService.cs +++ b/LM.Sys/Services/System/Partial/Sys_DepartmentService.cs @@ -6,23 +6,23 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_DepartmentService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; using System.Collections.Generic; -using VOL.Core.ManageUser; -using VOL.Core.UserManager; +using LM.Core.ManageUser; +using LM.Core.UserManager; using SqlSugar; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_DepartmentService { diff --git a/VOL.Sys/Services/System/Partial/Sys_DictionaryListService.cs b/LM.Sys/Services/System/Partial/Sys_DictionaryListService.cs similarity index 74% rename from VOL.Sys/Services/System/Partial/Sys_DictionaryListService.cs rename to LM.Sys/Services/System/Partial/Sys_DictionaryListService.cs index 4d7e0e9..7d743e6 100644 --- a/VOL.Sys/Services/System/Partial/Sys_DictionaryListService.cs +++ b/LM.Sys/Services/System/Partial/Sys_DictionaryListService.cs @@ -1,12 +1,12 @@ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Extensions; +using LM.Core.Extensions; using System.Collections.Generic; -using VOL.Core.Enums; +using LM.Core.Enums; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_DictionaryListService { diff --git a/VOL.Sys/Services/System/Partial/Sys_DictionaryService.cs b/LM.Sys/Services/System/Partial/Sys_DictionaryService.cs similarity index 97% rename from VOL.Sys/Services/System/Partial/Sys_DictionaryService.cs rename to LM.Sys/Services/System/Partial/Sys_DictionaryService.cs index 419eeb3..1a5b69f 100644 --- a/VOL.Sys/Services/System/Partial/Sys_DictionaryService.cs +++ b/LM.Sys/Services/System/Partial/Sys_DictionaryService.cs @@ -3,16 +3,16 @@ using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using System.Threading.Tasks; -using VOL.Core.BaseProvider; -using VOL.Core.Const; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.Infrastructure; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Const; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.Infrastructure; +using LM.Core.Utilities; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_DictionaryService { diff --git a/VOL.Sys/Services/System/Partial/Sys_MenuService.cs b/LM.Sys/Services/System/Partial/Sys_MenuService.cs similarity index 98% rename from VOL.Sys/Services/System/Partial/Sys_MenuService.cs rename to LM.Sys/Services/System/Partial/Sys_MenuService.cs index d2290d2..3107172 100644 --- a/VOL.Sys/Services/System/Partial/Sys_MenuService.cs +++ b/LM.Sys/Services/System/Partial/Sys_MenuService.cs @@ -2,15 +2,15 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using VOL.Core.DBManager; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Core.Utilities; -using VOL.Entity; -using VOL.Entity.DomainModels; +using LM.Core.DBManager; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Core.Utilities; +using LM.Entity; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_MenuService { diff --git a/VOL.Sys/Services/System/Partial/Sys_RoleService.cs b/LM.Sys/Services/System/Partial/Sys_RoleService.cs similarity index 98% rename from VOL.Sys/Services/System/Partial/Sys_RoleService.cs rename to LM.Sys/Services/System/Partial/Sys_RoleService.cs index fb484ef..4ac5218 100644 --- a/VOL.Sys/Services/System/Partial/Sys_RoleService.cs +++ b/LM.Sys/Services/System/Partial/Sys_RoleService.cs @@ -5,15 +5,15 @@ using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Core.UserManager; -using VOL.Core.Utilities; -using VOL.Entity; -using VOL.Entity.DomainModels; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Core.UserManager; +using LM.Core.Utilities; +using LM.Entity; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_RoleService { diff --git a/VOL.Sys/Services/System/Partial/Sys_UserService.cs b/LM.Sys/Services/System/Partial/Sys_UserService.cs similarity index 98% rename from VOL.Sys/Services/System/Partial/Sys_UserService.cs rename to LM.Sys/Services/System/Partial/Sys_UserService.cs index 7108503..b6528aa 100644 --- a/VOL.Sys/Services/System/Partial/Sys_UserService.cs +++ b/LM.Sys/Services/System/Partial/Sys_UserService.cs @@ -8,17 +8,17 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using VOL.Core.Configuration; -using VOL.Core.DBManager; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Core.Utilities; -using VOL.Entity.DomainModels; -using VOL.Sys.IRepositories; +using LM.Core.Configuration; +using LM.Core.DBManager; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Core.Utilities; +using LM.Entity.DomainModels; +using LM.Sys.IRepositories; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_UserService { diff --git a/VOL.Sys/Services/System/Sys_DepartmentService.cs b/LM.Sys/Services/System/Sys_DepartmentService.cs similarity index 78% rename from VOL.Sys/Services/System/Sys_DepartmentService.cs rename to LM.Sys/Services/System/Sys_DepartmentService.cs index 61f6ed5..e03222d 100644 --- a/VOL.Sys/Services/System/Sys_DepartmentService.cs +++ b/LM.Sys/Services/System/Sys_DepartmentService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_DepartmentService与ISys_DepartmentService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_DepartmentService : ServiceBase , ISys_DepartmentService, IDependency diff --git a/VOL.Sys/Services/System/Sys_DictionaryListService.cs b/LM.Sys/Services/System/Sys_DictionaryListService.cs similarity index 79% rename from VOL.Sys/Services/System/Sys_DictionaryListService.cs rename to LM.Sys/Services/System/Sys_DictionaryListService.cs index 8a10495..fb9f546 100644 --- a/VOL.Sys/Services/System/Sys_DictionaryListService.cs +++ b/LM.Sys/Services/System/Sys_DictionaryListService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_DictionaryListService与ISys_DictionaryListService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_DictionaryListService : ServiceBase , ISys_DictionaryListService, IDependency diff --git a/VOL.Sys/Services/System/Sys_DictionaryService.cs b/LM.Sys/Services/System/Sys_DictionaryService.cs similarity index 76% rename from VOL.Sys/Services/System/Sys_DictionaryService.cs rename to LM.Sys/Services/System/Sys_DictionaryService.cs index 0fecdae..0a203e2 100644 --- a/VOL.Sys/Services/System/Sys_DictionaryService.cs +++ b/LM.Sys/Services/System/Sys_DictionaryService.cs @@ -4,13 +4,13 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_DictionaryService : ServiceBase, ISys_DictionaryService, IDependency { diff --git a/VOL.Sys/Services/System/Sys_LogService.cs b/LM.Sys/Services/System/Sys_LogService.cs similarity index 69% rename from VOL.Sys/Services/System/Sys_LogService.cs rename to LM.Sys/Services/System/Sys_LogService.cs index 5e1eede..faf7300 100644 --- a/VOL.Sys/Services/System/Sys_LogService.cs +++ b/LM.Sys/Services/System/Sys_LogService.cs @@ -1,10 +1,10 @@ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_LogService : ServiceBase, ISys_LogService, IDependency { diff --git a/VOL.Sys/Services/System/Sys_MenuService.cs b/LM.Sys/Services/System/Sys_MenuService.cs similarity index 69% rename from VOL.Sys/Services/System/Sys_MenuService.cs rename to LM.Sys/Services/System/Sys_MenuService.cs index 4f94c90..a703513 100644 --- a/VOL.Sys/Services/System/Sys_MenuService.cs +++ b/LM.Sys/Services/System/Sys_MenuService.cs @@ -1,10 +1,10 @@ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_MenuService : ServiceBase, ISys_MenuService, IDependency { diff --git a/VOL.Sys/Services/System/Sys_RoleService.cs b/LM.Sys/Services/System/Sys_RoleService.cs similarity index 75% rename from VOL.Sys/Services/System/Sys_RoleService.cs rename to LM.Sys/Services/System/Sys_RoleService.cs index 604ff1b..df72254 100644 --- a/VOL.Sys/Services/System/Sys_RoleService.cs +++ b/LM.Sys/Services/System/Sys_RoleService.cs @@ -4,13 +4,13 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_RoleService : ServiceBase, ISys_RoleService, IDependency { diff --git a/VOL.Sys/Services/System/Sys_UserService.cs b/LM.Sys/Services/System/Sys_UserService.cs similarity index 73% rename from VOL.Sys/Services/System/Sys_UserService.cs rename to LM.Sys/Services/System/Sys_UserService.cs index 55edc8e..dd283b6 100644 --- a/VOL.Sys/Services/System/Sys_UserService.cs +++ b/LM.Sys/Services/System/Sys_UserService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_UserService与ISys_UserService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_UserService : ServiceBase , ISys_UserService, IDependency diff --git a/VOL.Sys/Services/System/vSys_DictionaryService.cs b/LM.Sys/Services/System/vSys_DictionaryService.cs similarity index 76% rename from VOL.Sys/Services/System/vSys_DictionaryService.cs rename to LM.Sys/Services/System/vSys_DictionaryService.cs index dcd5f10..27b0c59 100644 --- a/VOL.Sys/Services/System/vSys_DictionaryService.cs +++ b/LM.Sys/Services/System/vSys_DictionaryService.cs @@ -4,13 +4,13 @@ *Date:2018-07-01 * 此代码由框架生成,请勿随意更改 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class vSys_DictionaryService : ServiceBase, IvSys_DictionaryService, IDependency { diff --git a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowService.cs b/LM.Sys/Services/flow/Partial/Sys_WorkFlowService.cs similarity index 95% rename from VOL.Sys/Services/flow/Partial/Sys_WorkFlowService.cs rename to LM.Sys/Services/flow/Partial/Sys_WorkFlowService.cs index 7424053..75d6d77 100644 --- a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowService.cs +++ b/LM.Sys/Services/flow/Partial/Sys_WorkFlowService.cs @@ -6,24 +6,24 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_WorkFlowService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; using System.Collections.Generic; -using VOL.Core.WorkFlow; +using LM.Core.WorkFlow; using System; -using VOL.Sys.Repositories; -using VOL.Core.DBManager; +using LM.Sys.Repositories; +using LM.Core.DBManager; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowService { diff --git a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowStepService.cs b/LM.Sys/Services/flow/Partial/Sys_WorkFlowStepService.cs similarity index 86% rename from VOL.Sys/Services/flow/Partial/Sys_WorkFlowStepService.cs rename to LM.Sys/Services/flow/Partial/Sys_WorkFlowStepService.cs index 57881f3..e4d84d7 100644 --- a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowStepService.cs +++ b/LM.Sys/Services/flow/Partial/Sys_WorkFlowStepService.cs @@ -6,19 +6,19 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_WorkFlowStepService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowStepService { diff --git a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableAuditLogService.cs b/LM.Sys/Services/flow/Partial/Sys_WorkFlowTableAuditLogService.cs similarity index 86% rename from VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableAuditLogService.cs rename to LM.Sys/Services/flow/Partial/Sys_WorkFlowTableAuditLogService.cs index f009c8a..4661efb 100644 --- a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableAuditLogService.cs +++ b/LM.Sys/Services/flow/Partial/Sys_WorkFlowTableAuditLogService.cs @@ -6,19 +6,19 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_WorkFlowTableAuditLogService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowTableAuditLogService { diff --git a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableService.cs b/LM.Sys/Services/flow/Partial/Sys_WorkFlowTableService.cs similarity index 93% rename from VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableService.cs rename to LM.Sys/Services/flow/Partial/Sys_WorkFlowTableService.cs index f51dc0c..6ff79f7 100644 --- a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableService.cs +++ b/LM.Sys/Services/flow/Partial/Sys_WorkFlowTableService.cs @@ -6,23 +6,23 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_WorkFlowTableService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; -using VOL.Core.ManageUser; -using VOL.Core.WorkFlow; +using LM.Sys.IRepositories; +using LM.Core.ManageUser; +using LM.Core.WorkFlow; using System; using SqlSugar; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowTableService { diff --git a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableStepService.cs b/LM.Sys/Services/flow/Partial/Sys_WorkFlowTableStepService.cs similarity index 86% rename from VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableStepService.cs rename to LM.Sys/Services/flow/Partial/Sys_WorkFlowTableStepService.cs index 5b86b81..4d36bf1 100644 --- a/VOL.Sys/Services/flow/Partial/Sys_WorkFlowTableStepService.cs +++ b/LM.Sys/Services/flow/Partial/Sys_WorkFlowTableStepService.cs @@ -6,19 +6,19 @@ *用户信息、权限、角色等使用UserContext.Current操作 *Sys_WorkFlowTableStepService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowTableStepService { diff --git a/VOL.Sys/Services/flow/Sys_WorkFlowService.cs b/LM.Sys/Services/flow/Sys_WorkFlowService.cs similarity index 78% rename from VOL.Sys/Services/flow/Sys_WorkFlowService.cs rename to LM.Sys/Services/flow/Sys_WorkFlowService.cs index cad4d88..68cc670 100644 --- a/VOL.Sys/Services/flow/Sys_WorkFlowService.cs +++ b/LM.Sys/Services/flow/Sys_WorkFlowService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_WorkFlowService与ISys_WorkFlowService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowService : ServiceBase , ISys_WorkFlowService, IDependency diff --git a/VOL.Sys/Services/flow/Sys_WorkFlowStepService.cs b/LM.Sys/Services/flow/Sys_WorkFlowStepService.cs similarity index 79% rename from VOL.Sys/Services/flow/Sys_WorkFlowStepService.cs rename to LM.Sys/Services/flow/Sys_WorkFlowStepService.cs index 9590cdb..71308fd 100644 --- a/VOL.Sys/Services/flow/Sys_WorkFlowStepService.cs +++ b/LM.Sys/Services/flow/Sys_WorkFlowStepService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_WorkFlowStepService与ISys_WorkFlowStepService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowStepService : ServiceBase , ISys_WorkFlowStepService, IDependency diff --git a/VOL.Sys/Services/flow/Sys_WorkFlowTableAuditLogService.cs b/LM.Sys/Services/flow/Sys_WorkFlowTableAuditLogService.cs similarity index 81% rename from VOL.Sys/Services/flow/Sys_WorkFlowTableAuditLogService.cs rename to LM.Sys/Services/flow/Sys_WorkFlowTableAuditLogService.cs index 2d6e187..6cb6a3b 100644 --- a/VOL.Sys/Services/flow/Sys_WorkFlowTableAuditLogService.cs +++ b/LM.Sys/Services/flow/Sys_WorkFlowTableAuditLogService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_WorkFlowTableAuditLogService与ISys_WorkFlowTableAuditLogService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowTableAuditLogService : ServiceBase , ISys_WorkFlowTableAuditLogService, IDependency diff --git a/VOL.Sys/Services/flow/Sys_WorkFlowTableService.cs b/LM.Sys/Services/flow/Sys_WorkFlowTableService.cs similarity index 79% rename from VOL.Sys/Services/flow/Sys_WorkFlowTableService.cs rename to LM.Sys/Services/flow/Sys_WorkFlowTableService.cs index 16dc977..b52d1c8 100644 --- a/VOL.Sys/Services/flow/Sys_WorkFlowTableService.cs +++ b/LM.Sys/Services/flow/Sys_WorkFlowTableService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_WorkFlowTableService与ISys_WorkFlowTableService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowTableService : ServiceBase , ISys_WorkFlowTableService, IDependency diff --git a/VOL.Sys/Services/flow/Sys_WorkFlowTableStepService.cs b/LM.Sys/Services/flow/Sys_WorkFlowTableStepService.cs similarity index 80% rename from VOL.Sys/Services/flow/Sys_WorkFlowTableStepService.cs rename to LM.Sys/Services/flow/Sys_WorkFlowTableStepService.cs index d0f86e4..11a451d 100644 --- a/VOL.Sys/Services/flow/Sys_WorkFlowTableStepService.cs +++ b/LM.Sys/Services/flow/Sys_WorkFlowTableStepService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下Sys_WorkFlowTableStepService与ISys_WorkFlowTableStepService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class Sys_WorkFlowTableStepService : ServiceBase , ISys_WorkFlowTableStepService, IDependency diff --git a/VOL.Sys/Services/form/FormCollectionObjectService.cs b/LM.Sys/Services/form/FormCollectionObjectService.cs similarity index 80% rename from VOL.Sys/Services/form/FormCollectionObjectService.cs rename to LM.Sys/Services/form/FormCollectionObjectService.cs index a746447..4207b02 100644 --- a/VOL.Sys/Services/form/FormCollectionObjectService.cs +++ b/LM.Sys/Services/form/FormCollectionObjectService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下FormCollectionObjectService与IFormCollectionObjectService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class FormCollectionObjectService : ServiceBase , IFormCollectionObjectService, IDependency diff --git a/VOL.Sys/Services/form/FormDesignOptionsService.cs b/LM.Sys/Services/form/FormDesignOptionsService.cs similarity index 79% rename from VOL.Sys/Services/form/FormDesignOptionsService.cs rename to LM.Sys/Services/form/FormDesignOptionsService.cs index d011174..b83273a 100644 --- a/VOL.Sys/Services/form/FormDesignOptionsService.cs +++ b/LM.Sys/Services/form/FormDesignOptionsService.cs @@ -4,13 +4,13 @@ *代码由框架生成,此处任何更改都可能导致被代码生成器覆盖 *所有业务编写全部应在Partial文件夹下FormDesignOptionsService与IFormDesignOptionsService中编写 */ -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class FormDesignOptionsService : ServiceBase , IFormDesignOptionsService, IDependency diff --git a/VOL.Sys/Services/form/Partial/FormCollectionObjectService.cs b/LM.Sys/Services/form/Partial/FormCollectionObjectService.cs similarity index 93% rename from VOL.Sys/Services/form/Partial/FormCollectionObjectService.cs rename to LM.Sys/Services/form/Partial/FormCollectionObjectService.cs index e33bcb8..0cc9376 100644 --- a/VOL.Sys/Services/form/Partial/FormCollectionObjectService.cs +++ b/LM.Sys/Services/form/Partial/FormCollectionObjectService.cs @@ -6,28 +6,28 @@ *用户信息、权限、角色等使用UserContext.Current操作 *FormCollectionObjectService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; using System.Collections.Generic; -using VOL.Core.Configuration; -using VOL.Core.Services; +using LM.Core.Configuration; +using LM.Core.Services; using System; using OfficeOpenXml; using System.IO; using OfficeOpenXml.Style; using System.Drawing; -using VOL.Core.DBManager; +using LM.Core.DBManager; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class FormCollectionObjectService { diff --git a/VOL.Sys/Services/form/Partial/FormDesignOptionsService.cs b/LM.Sys/Services/form/Partial/FormDesignOptionsService.cs similarity index 87% rename from VOL.Sys/Services/form/Partial/FormDesignOptionsService.cs rename to LM.Sys/Services/form/Partial/FormDesignOptionsService.cs index 5fafa57..36be5b3 100644 --- a/VOL.Sys/Services/form/Partial/FormDesignOptionsService.cs +++ b/LM.Sys/Services/form/Partial/FormDesignOptionsService.cs @@ -6,19 +6,19 @@ *用户信息、权限、角色等使用UserContext.Current操作 *FormDesignOptionsService对增、删、改查、导入、导出、审核业务代码扩展参照ServiceFunFilter */ -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Entity.DomainModels; +using LM.Core.BaseProvider; +using LM.Core.Extensions.AutofacManager; +using LM.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; -using VOL.Core.Extensions; +using LM.Core.Extensions; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Sys.IRepositories; +using LM.Sys.IRepositories; -namespace VOL.Sys.Services +namespace LM.Sys.Services { public partial class FormDesignOptionsService { diff --git a/VOL.WebApi/.config/dotnet-tools.json b/LM.WebApi/.config/dotnet-tools.json similarity index 100% rename from VOL.WebApi/.config/dotnet-tools.json rename to LM.WebApi/.config/dotnet-tools.json diff --git a/VOL.WebApi/Controllers/ApiHomeController.cs b/LM.WebApi/Controllers/ApiHomeController.cs similarity index 86% rename from VOL.WebApi/Controllers/ApiHomeController.cs rename to LM.WebApi/Controllers/ApiHomeController.cs index 8f7054e..a381e46 100644 --- a/VOL.WebApi/Controllers/ApiHomeController.cs +++ b/LM.WebApi/Controllers/ApiHomeController.cs @@ -3,10 +3,10 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; -using VOL.Core.DbContext; +using LM.Core.DbContext; using Microsoft.AspNetCore.Authorization; -namespace VOL.WebApi.Controllers +namespace LM.WebApi.Controllers { [AllowAnonymous] public class ApiHomeController : Controller diff --git a/VOL.WebApi/Controllers/Builder/BuilderController.cs b/LM.WebApi/Controllers/Builder/BuilderController.cs similarity index 94% rename from VOL.WebApi/Controllers/Builder/BuilderController.cs rename to LM.WebApi/Controllers/Builder/BuilderController.cs index b61e939..6bedec0 100644 --- a/VOL.WebApi/Controllers/Builder/BuilderController.cs +++ b/LM.WebApi/Controllers/Builder/BuilderController.cs @@ -1,12 +1,13 @@ -using VOL.Builder.IServices; +using LM.Builder.IServices; using Microsoft.AspNetCore.Mvc; using System; using System.Threading.Tasks; -using VOL.Core.Filters; -using VOL.Entity.DomainModels; +using LM.Core.Filters; +using LM.Entity.DomainModels; -namespace VOL.WebApi.Controllers.Builder +namespace LM.WebApi.Controllers.Builder { + [ApiExplorerSettings(GroupName = "v1")] [JWTAuthorize] [Route("/api/Builder")] public class BuilderController : Controller diff --git a/VOL.WebApi/Controllers/HR/HR_DeptShipController.cs b/LM.WebApi/Controllers/HR/HR_DeptShipController.cs similarity index 80% rename from VOL.WebApi/Controllers/HR/HR_DeptShipController.cs rename to LM.WebApi/Controllers/HR/HR_DeptShipController.cs index bd1be2b..313b482 100644 --- a/VOL.WebApi/Controllers/HR/HR_DeptShipController.cs +++ b/LM.WebApi/Controllers/HR/HR_DeptShipController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹HR_DeptShipController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.HR.IServices; -namespace VOL.HR.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.HR.IServices; +namespace LM.HR.Controllers { [Route("api/HR_DeptShip")] [PermissionTable(Name = "HR_DeptShip")] diff --git a/VOL.WebApi/Controllers/HR/HR_DeptSyncController.cs b/LM.WebApi/Controllers/HR/HR_DeptSyncController.cs similarity index 80% rename from VOL.WebApi/Controllers/HR/HR_DeptSyncController.cs rename to LM.WebApi/Controllers/HR/HR_DeptSyncController.cs index 21d9613..68d60eb 100644 --- a/VOL.WebApi/Controllers/HR/HR_DeptSyncController.cs +++ b/LM.WebApi/Controllers/HR/HR_DeptSyncController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹HR_DeptSyncController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.HR.IServices; -namespace VOL.HR.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.HR.IServices; +namespace LM.HR.Controllers { [Route("api/HR_DeptSync")] [PermissionTable(Name = "HR_DeptSync")] diff --git a/VOL.WebApi/Controllers/HR/HR_EmployeeSyncController.cs b/LM.WebApi/Controllers/HR/HR_EmployeeSyncController.cs similarity index 81% rename from VOL.WebApi/Controllers/HR/HR_EmployeeSyncController.cs rename to LM.WebApi/Controllers/HR/HR_EmployeeSyncController.cs index ccc1eb3..8b155b1 100644 --- a/VOL.WebApi/Controllers/HR/HR_EmployeeSyncController.cs +++ b/LM.WebApi/Controllers/HR/HR_EmployeeSyncController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹HR_EmployeeSyncController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.HR.IServices; -namespace VOL.HR.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.HR.IServices; +namespace LM.HR.Controllers { [Route("api/HR_EmployeeSync")] [PermissionTable(Name = "HR_EmployeeSync")] diff --git a/VOL.WebApi/Controllers/HR/Partial/HR_DeptShipController.cs b/LM.WebApi/Controllers/HR/Partial/HR_DeptShipController.cs similarity index 91% rename from VOL.WebApi/Controllers/HR/Partial/HR_DeptShipController.cs rename to LM.WebApi/Controllers/HR/Partial/HR_DeptShipController.cs index 788f1f1..60a98b6 100644 --- a/VOL.WebApi/Controllers/HR/Partial/HR_DeptShipController.cs +++ b/LM.WebApi/Controllers/HR/Partial/HR_DeptShipController.cs @@ -9,11 +9,12 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.HR.IServices; +using LM.Entity.DomainModels; +using LM.HR.IServices; -namespace VOL.HR.Controllers +namespace LM.HR.Controllers { + [ApiExplorerSettings(GroupName = "v2")] public partial class HR_DeptShipController { private readonly IHR_DeptShipService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/HR/Partial/HR_DeptSyncController.cs b/LM.WebApi/Controllers/HR/Partial/HR_DeptSyncController.cs similarity index 93% rename from VOL.WebApi/Controllers/HR/Partial/HR_DeptSyncController.cs rename to LM.WebApi/Controllers/HR/Partial/HR_DeptSyncController.cs index 1688d95..d47bf99 100644 --- a/VOL.WebApi/Controllers/HR/Partial/HR_DeptSyncController.cs +++ b/LM.WebApi/Controllers/HR/Partial/HR_DeptSyncController.cs @@ -9,11 +9,12 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.HR.IServices; +using LM.Entity.DomainModels; +using LM.HR.IServices; -namespace VOL.HR.Controllers +namespace LM.HR.Controllers { + [ApiExplorerSettings(GroupName = "v2")] public partial class HR_DeptSyncController { private readonly IHR_DeptSyncService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/HR/Partial/HR_EmployeeSyncController.cs b/LM.WebApi/Controllers/HR/Partial/HR_EmployeeSyncController.cs similarity index 96% rename from VOL.WebApi/Controllers/HR/Partial/HR_EmployeeSyncController.cs rename to LM.WebApi/Controllers/HR/Partial/HR_EmployeeSyncController.cs index 8ca48ab..2e2986a 100644 --- a/VOL.WebApi/Controllers/HR/Partial/HR_EmployeeSyncController.cs +++ b/LM.WebApi/Controllers/HR/Partial/HR_EmployeeSyncController.cs @@ -13,14 +13,15 @@ using Microsoft.Extensions.DependencyInjection; using System; using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Core.Filters; -using VOL.Core.Services; -using VOL.DingTalk.Models.Biz; -using VOL.Entity.DomainModels; -using VOL.HR.IServices; +using LM.Core.Filters; +using LM.Core.Services; +using LM.DingTalk.Models.Biz; +using LM.Entity.DomainModels; +using LM.HR.IServices; -namespace VOL.HR.Controllers +namespace LM.HR.Controllers { + [ApiExplorerSettings(GroupName = "v2")] public partial class HR_EmployeeSyncController { private readonly IHttpContextAccessor _httpContextAccessor; diff --git a/VOL.WebApi/Controllers/Hubs/HomePageMessageHub.cs b/LM.WebApi/Controllers/Hubs/HomePageMessageHub.cs similarity index 96% rename from VOL.WebApi/Controllers/Hubs/HomePageMessageHub.cs rename to LM.WebApi/Controllers/Hubs/HomePageMessageHub.cs index e8f7c7b..b2afb32 100644 --- a/VOL.WebApi/Controllers/Hubs/HomePageMessageHub.cs +++ b/LM.WebApi/Controllers/Hubs/HomePageMessageHub.cs @@ -6,12 +6,12 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; -using VOL.Core.CacheManager; -using VOL.Core.Extensions; -using VOL.Core.ManageUser; -using VOL.Sys.IServices; +using LM.Core.CacheManager; +using LM.Core.Extensions; +using LM.Core.ManageUser; +using LM.Sys.IServices; -namespace VOL.WebApi.Controllers.Hubs +namespace LM.WebApi.Controllers.Hubs { /// /// https://docs.microsoft.com/zh-cn/aspnet/core/signalr/introduction?view=aspnetcore-3.1 diff --git a/VOL.WebApi/Controllers/MqDataHandle/DataHandle.cs b/LM.WebApi/Controllers/MqDataHandle/DataHandle.cs similarity index 93% rename from VOL.WebApi/Controllers/MqDataHandle/DataHandle.cs rename to LM.WebApi/Controllers/MqDataHandle/DataHandle.cs index 8fd42f6..efb6bc4 100644 --- a/VOL.WebApi/Controllers/MqDataHandle/DataHandle.cs +++ b/LM.WebApi/Controllers/MqDataHandle/DataHandle.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -namespace VOL.WebApi.Controllers.MqDataHandle +namespace LM.WebApi.Controllers.MqDataHandle { /// diff --git a/VOL.WebApi/Controllers/ObjectActionValidatorExampleController.cs b/LM.WebApi/Controllers/ObjectActionValidatorExampleController.cs similarity index 96% rename from VOL.WebApi/Controllers/ObjectActionValidatorExampleController.cs rename to LM.WebApi/Controllers/ObjectActionValidatorExampleController.cs index 9b57c93..026972e 100644 --- a/VOL.WebApi/Controllers/ObjectActionValidatorExampleController.cs +++ b/LM.WebApi/Controllers/ObjectActionValidatorExampleController.cs @@ -3,11 +3,11 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using VOL.Core.Filters; -using VOL.Core.ObjectActionValidator; -using VOL.Entity.DomainModels; +using LM.Core.Filters; +using LM.Core.ObjectActionValidator; +using LM.Entity.DomainModels; -namespace VOL.WebApi.Controllers +namespace LM.WebApi.Controllers { /// ///1、普通参数校验只需要标识属性:[ObjectGeneralValidatorFilter(ValidatorGeneral.xxx,ValidatorGeneral.xxx)], @@ -19,6 +19,7 @@ namespace VOL.WebApi.Controllers /// --如果其他方法使用的是同一个model,但验证的字段不同,在ValidatorModel重新添加一个枚举值, /// --并在UseMethodsModelParameters方法注入,添加新的指定字段即可 /// + [ApiExplorerSettings(GroupName = "v1")] [JWTAuthorize, ApiController] [Route("validatorExample")] public class ObjectActionValidatorExampleController: Controller diff --git a/VOL.WebApi/Controllers/Sys/FormCollectionObjectController.cs b/LM.WebApi/Controllers/Sys/FormCollectionObjectController.cs similarity index 81% rename from VOL.WebApi/Controllers/Sys/FormCollectionObjectController.cs rename to LM.WebApi/Controllers/Sys/FormCollectionObjectController.cs index 14fba58..1925218 100644 --- a/VOL.WebApi/Controllers/Sys/FormCollectionObjectController.cs +++ b/LM.WebApi/Controllers/Sys/FormCollectionObjectController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹FormCollectionObjectController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/FormCollectionObject")] [PermissionTable(Name = "FormCollectionObject")] diff --git a/VOL.WebApi/Controllers/Sys/FormDesignOptionsController.cs b/LM.WebApi/Controllers/Sys/FormDesignOptionsController.cs similarity index 81% rename from VOL.WebApi/Controllers/Sys/FormDesignOptionsController.cs rename to LM.WebApi/Controllers/Sys/FormDesignOptionsController.cs index b331097..72f638c 100644 --- a/VOL.WebApi/Controllers/Sys/FormDesignOptionsController.cs +++ b/LM.WebApi/Controllers/Sys/FormDesignOptionsController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹FormDesignOptionsController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/FormDesignOptions")] [PermissionTable(Name = "FormDesignOptions")] diff --git a/VOL.WebApi/Controllers/Sys/Partial/FormCollectionObjectController.cs b/LM.WebApi/Controllers/Sys/Partial/FormCollectionObjectController.cs similarity index 88% rename from VOL.WebApi/Controllers/Sys/Partial/FormCollectionObjectController.cs rename to LM.WebApi/Controllers/Sys/Partial/FormCollectionObjectController.cs index a05498f..3adcffa 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/FormCollectionObjectController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/FormCollectionObjectController.cs @@ -9,11 +9,12 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class FormCollectionObjectController { private readonly IFormCollectionObjectService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/FormDesignOptionsController.cs b/LM.WebApi/Controllers/Sys/Partial/FormDesignOptionsController.cs similarity index 93% rename from VOL.WebApi/Controllers/Sys/Partial/FormDesignOptionsController.cs rename to LM.WebApi/Controllers/Sys/Partial/FormDesignOptionsController.cs index 6673bac..7a9bbf6 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/FormDesignOptionsController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/FormDesignOptionsController.cs @@ -9,17 +9,18 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; -using VOL.Sys.IRepositories; +using LM.Entity.DomainModels; +using LM.Sys.IServices; +using LM.Sys.IRepositories; using System.Linq; using Microsoft.EntityFrameworkCore; -using VOL.Sys.Services; -using VOL.Core.DBManager; +using LM.Sys.Services; +using LM.Core.DBManager; using SqlSugar; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class FormDesignOptionsController { private readonly IFormDesignOptionsService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_DepartmentController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_DepartmentController.cs similarity index 94% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_DepartmentController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_DepartmentController.cs index 171548d..865ca8f 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_DepartmentController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_DepartmentController.cs @@ -9,20 +9,21 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; -using VOL.Core.Filters; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Sys.IRepositories; +using LM.Entity.DomainModels; +using LM.Sys.IServices; +using LM.Core.Filters; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Sys.IRepositories; using Microsoft.EntityFrameworkCore; using System.Linq; -using VOL.Core.ManageUser; -using VOL.Core.UserManager; +using LM.Core.ManageUser; +using LM.Core.UserManager; using SqlSugar; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_DepartmentController { private readonly ISys_DepartmentService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_DictionaryController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_DictionaryController.cs similarity index 92% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_DictionaryController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_DictionaryController.cs index aaa04be..2359527 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_DictionaryController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_DictionaryController.cs @@ -2,13 +2,14 @@ using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Core.Controllers.Basic; -using VOL.Core.Extensions; -using VOL.Core.Filters; -using VOL.Sys.IServices; +using LM.Core.Controllers.Basic; +using LM.Core.Extensions; +using LM.Core.Filters; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_DictionaryController { [HttpPost, Route("GetVueDictionary")] diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_DictionaryListController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_DictionaryListController.cs similarity index 94% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_DictionaryListController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_DictionaryListController.cs index 54ed6a0..22be368 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_DictionaryListController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_DictionaryListController.cs @@ -9,12 +9,13 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; -using VOL.Core.Filters; +using LM.Entity.DomainModels; +using LM.Sys.IServices; +using LM.Core.Filters; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_DictionaryListController { private readonly ISys_DictionaryListService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_MenuController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_MenuController.cs similarity index 91% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_MenuController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_MenuController.cs index 92ca589..63d38cc 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_MenuController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_MenuController.cs @@ -1,12 +1,13 @@ using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; -using VOL.Core.Enums; -using VOL.Core.Filters; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Core.Enums; +using LM.Core.Filters; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_MenuController { /// diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_QuartzLogController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_QuartzLogController.cs similarity index 87% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_QuartzLogController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_QuartzLogController.cs index 97ac34e..aaac715 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_QuartzLogController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_QuartzLogController.cs @@ -9,11 +9,12 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_QuartzLogController { private readonly ISys_QuartzLogService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_QuartzOptionsController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_QuartzOptionsController.cs similarity index 94% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_QuartzOptionsController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_QuartzOptionsController.cs index 238bfb3..731625d 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_QuartzOptionsController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_QuartzOptionsController.cs @@ -9,13 +9,14 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; -using VOL.Core.Filters; -using VOL.Core.Enums; +using LM.Entity.DomainModels; +using LM.Sys.IServices; +using LM.Core.Filters; +using LM.Core.Enums; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_QuartzOptionsController { private readonly ISys_QuartzOptionsService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_RoleController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_RoleController.cs similarity index 93% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_RoleController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_RoleController.cs index cd93fd9..63812d8 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_RoleController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_RoleController.cs @@ -7,22 +7,23 @@ using SqlSugar; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using VOL.Core.Controllers.Basic; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.Filters; -using VOL.Core.ManageUser; -using VOL.Core.UserManager; -using VOL.Core.Utilities; -using VOL.Entity.AttributeManager; -using VOL.Entity.DomainModels; -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Sys.Repositories; -using VOL.Sys.Services; +using LM.Core.Controllers.Basic; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.Filters; +using LM.Core.ManageUser; +using LM.Core.UserManager; +using LM.Core.Utilities; +using LM.Entity.AttributeManager; +using LM.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Sys.Repositories; +using LM.Sys.Services; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] [Route("api/role")] public partial class Sys_RoleController { @@ -83,7 +84,7 @@ namespace VOL.Sys.Controllers } //不是超级管理,将自己的角色查出来,在树形菜单上作为根节点 var self = _repository.FindAsIQueryable(x => x.Role_Id == roleId) - .Select(s => new VOL.Core.UserManager.RoleNodes() + .Select(s => new LM.Core.UserManager.RoleNodes() { Id = s.Role_Id, ParentId = 0,//将自己的角色作为root节点 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_UserController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_UserController.cs similarity index 92% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_UserController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_UserController.cs index 90d9867..1617e12 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_UserController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_UserController.cs @@ -10,27 +10,28 @@ using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; using System.Threading.Tasks; -using VOL.Core.CacheManager; -using VOL.Core.Configuration; -using VOL.Core.Controllers.Basic; -using VOL.Core.DBManager; -using VOL.Core.DbContext; -using VOL.Core.Enums; -using VOL.Core.Extensions; -using VOL.Core.Filters; -using VOL.Core.Infrastructure; -using VOL.Core.ManageUser; -using VOL.Core.ObjectActionValidator; -using VOL.Core.Services; -using VOL.Core.Utilities; -using VOL.Entity.AttributeManager; -using VOL.Entity.DomainModels; -using VOL.Sys.IRepositories; -using VOL.Sys.IServices; -using VOL.Sys.Repositories; +using LM.Core.CacheManager; +using LM.Core.Configuration; +using LM.Core.Controllers.Basic; +using LM.Core.DBManager; +using LM.Core.DbContext; +using LM.Core.Enums; +using LM.Core.Extensions; +using LM.Core.Filters; +using LM.Core.Infrastructure; +using LM.Core.ManageUser; +using LM.Core.ObjectActionValidator; +using LM.Core.Services; +using LM.Core.Utilities; +using LM.Entity.AttributeManager; +using LM.Entity.DomainModels; +using LM.Sys.IRepositories; +using LM.Sys.IServices; +using LM.Sys.Repositories; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] [Route("api/User")] public partial class Sys_UserController { diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowController.cs similarity index 96% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowController.cs index fa4f80d..37b12cf 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowController.cs @@ -9,22 +9,23 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; -using VOL.Core.WorkFlow; -using VOL.Sys.IRepositories; +using LM.Entity.DomainModels; +using LM.Sys.IServices; +using LM.Core.WorkFlow; +using LM.Sys.IRepositories; using System.Linq; using Microsoft.EntityFrameworkCore; -using VOL.Core.ManageUser; -using VOL.Core.Services; -using VOL.Core.Infrastructure; -using VOL.Core.DBManager; +using LM.Core.ManageUser; +using LM.Core.Services; +using LM.Core.Infrastructure; +using LM.Core.DBManager; using Microsoft.EntityFrameworkCore.Metadata.Internal; -using VOL.Core.Extensions; -using VOL.Core.UserManager; +using LM.Core.Extensions; +using LM.Core.UserManager; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_WorkFlowController { private readonly ISys_WorkFlowService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowStepController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowStepController.cs similarity index 87% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowStepController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowStepController.cs index 87fa61e..1e25806 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowStepController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowStepController.cs @@ -9,11 +9,12 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_WorkFlowStepController { private readonly ISys_WorkFlowStepService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableAuditLogController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableAuditLogController.cs similarity index 88% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableAuditLogController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableAuditLogController.cs index 54dbc16..e1c7b69 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableAuditLogController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableAuditLogController.cs @@ -9,11 +9,12 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_WorkFlowTableAuditLogController { private readonly ISys_WorkFlowTableAuditLogService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableController.cs similarity index 88% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableController.cs index 0b739a5..407c08f 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableController.cs @@ -9,12 +9,13 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; -using VOL.Core.Filters; +using LM.Entity.DomainModels; +using LM.Sys.IServices; +using LM.Core.Filters; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_WorkFlowTableController { private readonly ISys_WorkFlowTableService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableStepController.cs b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableStepController.cs similarity index 88% rename from VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableStepController.cs rename to LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableStepController.cs index 0e38e4d..37785dd 100644 --- a/VOL.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableStepController.cs +++ b/LM.WebApi/Controllers/Sys/Partial/Sys_WorkFlowTableStepController.cs @@ -9,11 +9,12 @@ using System.Collections.Generic; using System.Threading.Tasks; using Microsoft.Extensions.DependencyInjection; using Microsoft.AspNetCore.Http; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] public partial class Sys_WorkFlowTableStepController { private readonly ISys_WorkFlowTableStepService _service;//访问业务代码 diff --git a/VOL.WebApi/Controllers/Sys/Sys_DepartmentController.cs b/LM.WebApi/Controllers/Sys/Sys_DepartmentController.cs similarity index 80% rename from VOL.WebApi/Controllers/Sys/Sys_DepartmentController.cs rename to LM.WebApi/Controllers/Sys/Sys_DepartmentController.cs index 6d9e191..2f50034 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_DepartmentController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_DepartmentController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_DepartmentController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_Department")] [PermissionTable(Name = "Sys_Department")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_DictionaryController.cs b/LM.WebApi/Controllers/Sys/Sys_DictionaryController.cs similarity index 72% rename from VOL.WebApi/Controllers/Sys/Sys_DictionaryController.cs rename to LM.WebApi/Controllers/Sys/Sys_DictionaryController.cs index 393757c..110fde3 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_DictionaryController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_DictionaryController.cs @@ -1,11 +1,11 @@ using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; -using VOL.Core.Controllers.Basic; -using VOL.Core.Extensions; -using VOL.Core.Filters; -using VOL.Sys.IServices; +using LM.Core.Controllers.Basic; +using LM.Core.Extensions; +using LM.Core.Filters; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { [Route("api/Sys_Dictionary")] public partial class Sys_DictionaryController : ApiBaseController diff --git a/VOL.WebApi/Controllers/Sys/Sys_DictionaryListController.cs b/LM.WebApi/Controllers/Sys/Sys_DictionaryListController.cs similarity index 81% rename from VOL.WebApi/Controllers/Sys/Sys_DictionaryListController.cs rename to LM.WebApi/Controllers/Sys/Sys_DictionaryListController.cs index badcc26..b2785cc 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_DictionaryListController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_DictionaryListController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_DictionaryListController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_DictionaryList")] [PermissionTable(Name = "Sys_DictionaryList")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_LogController.cs b/LM.WebApi/Controllers/Sys/Sys_LogController.cs similarity index 69% rename from VOL.WebApi/Controllers/Sys/Sys_LogController.cs rename to LM.WebApi/Controllers/Sys/Sys_LogController.cs index 41f870d..204c5e9 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_LogController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_LogController.cs @@ -4,13 +4,14 @@ using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; -using VOL.Core.Controllers.Basic; -using VOL.Core.DBManager; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Core.Controllers.Basic; +using LM.Core.DBManager; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { + [ApiExplorerSettings(GroupName = "v1")] [Route("api/Sys_Log")] public partial class Sys_LogController : ApiBaseController { diff --git a/VOL.WebApi/Controllers/Sys/Sys_MenuController.cs b/LM.WebApi/Controllers/Sys/Sys_MenuController.cs similarity index 73% rename from VOL.WebApi/Controllers/Sys/Sys_MenuController.cs rename to LM.WebApi/Controllers/Sys/Sys_MenuController.cs index 02fd310..5cf0d29 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_MenuController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_MenuController.cs @@ -1,12 +1,12 @@ using Microsoft.AspNetCore.Mvc; using System.Threading.Tasks; -using VOL.Core.Controllers.Basic; -using VOL.Core.Enums; -using VOL.Core.Filters; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Core.Controllers.Basic; +using LM.Core.Enums; +using LM.Core.Filters; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { [Route("api/menu")] [ApiController, JWTAuthorize()] diff --git a/VOL.WebApi/Controllers/Sys/Sys_QuartzLogController.cs b/LM.WebApi/Controllers/Sys/Sys_QuartzLogController.cs similarity index 80% rename from VOL.WebApi/Controllers/Sys/Sys_QuartzLogController.cs rename to LM.WebApi/Controllers/Sys/Sys_QuartzLogController.cs index 7e4d0ef..32afbdb 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_QuartzLogController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_QuartzLogController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_QuartzLogController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_QuartzLog")] [PermissionTable(Name = "Sys_QuartzLog")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_QuartzOptionsController.cs b/LM.WebApi/Controllers/Sys/Sys_QuartzOptionsController.cs similarity index 81% rename from VOL.WebApi/Controllers/Sys/Sys_QuartzOptionsController.cs rename to LM.WebApi/Controllers/Sys/Sys_QuartzOptionsController.cs index b9514a5..cb62ba4 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_QuartzOptionsController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_QuartzOptionsController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_QuartzOptionsController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_QuartzOptions")] [PermissionTable(Name = "Sys_QuartzOptions")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_RoleController.cs b/LM.WebApi/Controllers/Sys/Sys_RoleController.cs similarity index 69% rename from VOL.WebApi/Controllers/Sys/Sys_RoleController.cs rename to LM.WebApi/Controllers/Sys/Sys_RoleController.cs index e632725..4d03f3c 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_RoleController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_RoleController.cs @@ -2,14 +2,14 @@ using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading.Tasks; -using VOL.Core.Controllers.Basic; -using VOL.Core.Enums; -using VOL.Core.Filters; -using VOL.Entity.AttributeManager; -using VOL.Entity.DomainModels; -using VOL.Sys.IServices; +using LM.Core.Controllers.Basic; +using LM.Core.Enums; +using LM.Core.Filters; +using LM.Entity.AttributeManager; +using LM.Entity.DomainModels; +using LM.Sys.IServices; -namespace VOL.Sys.Controllers +namespace LM.Sys.Controllers { [Route("api/Sys_Role")] [PermissionTable(Name = "Sys_Role")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_UserController.cs b/LM.WebApi/Controllers/Sys/Sys_UserController.cs similarity index 79% rename from VOL.WebApi/Controllers/Sys/Sys_UserController.cs rename to LM.WebApi/Controllers/Sys/Sys_UserController.cs index a3426dc..ab38bc1 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_UserController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_UserController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_UserController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_User")] [PermissionTable(Name = "Sys_User")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowController.cs b/LM.WebApi/Controllers/Sys/Sys_WorkFlowController.cs similarity index 80% rename from VOL.WebApi/Controllers/Sys/Sys_WorkFlowController.cs rename to LM.WebApi/Controllers/Sys/Sys_WorkFlowController.cs index 74abd0a..63321ec 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_WorkFlowController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_WorkFlowController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_WorkFlow")] [PermissionTable(Name = "Sys_WorkFlow")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowStepController.cs b/LM.WebApi/Controllers/Sys/Sys_WorkFlowStepController.cs similarity index 80% rename from VOL.WebApi/Controllers/Sys/Sys_WorkFlowStepController.cs rename to LM.WebApi/Controllers/Sys/Sys_WorkFlowStepController.cs index c5dfff8..302d13f 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowStepController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_WorkFlowStepController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_WorkFlowStepController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_WorkFlowStep")] [PermissionTable(Name = "Sys_WorkFlowStep")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableAuditLogController.cs b/LM.WebApi/Controllers/Sys/Sys_WorkFlowTableAuditLogController.cs similarity index 82% rename from VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableAuditLogController.cs rename to LM.WebApi/Controllers/Sys/Sys_WorkFlowTableAuditLogController.cs index 89a5291..f2abb02 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableAuditLogController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_WorkFlowTableAuditLogController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_WorkFlowTableAuditLogController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_WorkFlowTableAuditLog")] [PermissionTable(Name = "Sys_WorkFlowTableAuditLog")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableController.cs b/LM.WebApi/Controllers/Sys/Sys_WorkFlowTableController.cs similarity index 81% rename from VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableController.cs rename to LM.WebApi/Controllers/Sys/Sys_WorkFlowTableController.cs index 122521f..f98b4ea 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_WorkFlowTableController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_WorkFlowTableController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_WorkFlowTable")] [PermissionTable(Name = "Sys_WorkFlowTable")] diff --git a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableStepController.cs b/LM.WebApi/Controllers/Sys/Sys_WorkFlowTableStepController.cs similarity index 81% rename from VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableStepController.cs rename to LM.WebApi/Controllers/Sys/Sys_WorkFlowTableStepController.cs index 1a0a0ac..c7e1518 100644 --- a/VOL.WebApi/Controllers/Sys/Sys_WorkFlowTableStepController.cs +++ b/LM.WebApi/Controllers/Sys/Sys_WorkFlowTableStepController.cs @@ -3,10 +3,10 @@ *如果要增加方法请在当前目录下Partial文件夹Sys_WorkFlowTableStepController编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; -using VOL.Sys.IServices; -namespace VOL.Sys.Controllers +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; +using LM.Sys.IServices; +namespace LM.Sys.Controllers { [Route("api/Sys_WorkFlowTableStep")] [PermissionTable(Name = "Sys_WorkFlowTableStep")] diff --git a/VOL.WebApi/Dockerfile b/LM.WebApi/Dockerfile similarity index 57% rename from VOL.WebApi/Dockerfile rename to LM.WebApi/Dockerfile index f341e0e..dd7f0d5 100644 --- a/VOL.WebApi/Dockerfile +++ b/LM.WebApi/Dockerfile @@ -12,24 +12,24 @@ EXPOSE 8081 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src -COPY ["VOL.WebApi/VOL.WebApi.csproj", "VOL.WebApi/"] -COPY ["VOL.Builder/VOL.Builder.csproj", "VOL.Builder/"] -COPY ["VOL.Core/VOL.Core.csproj", "VOL.Core/"] -COPY ["VOL.Entity/VOL.Entity.csproj", "VOL.Entity/"] -COPY ["VOL.HR/VOL.HR.csproj", "VOL.HR/"] -COPY ["VOL.Sys/VOL.Sys.csproj", "VOL.Sys/"] -RUN dotnet restore "./VOL.WebApi/VOL.WebApi.csproj" +COPY ["LM.WebApi/LM.WebApi.csproj", "LM.WebApi/"] +COPY ["LM.Builder/LM.Builder.csproj", "LM.Builder/"] +COPY ["LM.Core/LM.Core.csproj", "LM.Core/"] +COPY ["LM.Entity/LM.Entity.csproj", "LM.Entity/"] +COPY ["LM.HR/LM.HR.csproj", "LM.HR/"] +COPY ["LM.Sys/LM.Sys.csproj", "LM.Sys/"] +RUN dotnet restore "./LM.WebApi/LM.WebApi.csproj" COPY . . -WORKDIR "/src/VOL.WebApi" -RUN dotnet build "./VOL.WebApi.csproj" -c $BUILD_CONFIGURATION -o /app/build +WORKDIR "/src/LM.WebApi" +RUN dotnet build "./LM.WebApi.csproj" -c $BUILD_CONFIGURATION -o /app/build # 此阶段用于发布要复制到最终阶段的服务项目 FROM build AS publish ARG BUILD_CONFIGURATION=Release -RUN dotnet publish "./VOL.WebApi.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false +RUN dotnet publish "./LM.WebApi.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false # 此阶段在生产中使用,或在常规模式下从 VS 运行时使用(在不使用调试配置时为默认值) FROM base AS final WORKDIR /app COPY --from=publish /app/publish . -ENTRYPOINT ["dotnet", "VOL.WebApi.dll"] \ No newline at end of file +ENTRYPOINT ["dotnet", "LM.WebApi.dll"] \ No newline at end of file diff --git a/VOL.WebApi/Download/20220326/Template/20220326013120.xlsx b/LM.WebApi/Download/20220326/Template/20220326013120.xlsx similarity index 100% rename from VOL.WebApi/Download/20220326/Template/20220326013120.xlsx rename to LM.WebApi/Download/20220326/Template/20220326013120.xlsx diff --git a/VOL.WebApi/Download/20250928/Template/跨系统部门关联20250928092853.xlsx b/LM.WebApi/Download/20250928/Template/跨系统部门关联20250928092853.xlsx similarity index 100% rename from VOL.WebApi/Download/20250928/Template/跨系统部门关联20250928092853.xlsx rename to LM.WebApi/Download/20250928/Template/跨系统部门关联20250928092853.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181337.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181337.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181337.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181337.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181437.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181437.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181437.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181437.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181537.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181537.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181537.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181537.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181637.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181637.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181637.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181637.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181737.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181737.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022181737.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022181737.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184236.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184236.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184236.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184236.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184536.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184536.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184536.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184536.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184636.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184636.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184636.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184636.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184736.xlsx b/LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184736.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20231022/系统日志20231022184736.xlsx rename to LM.WebApi/Download/ExcelExport/20231022/系统日志20231022184736.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20250925/系统日志20250925181441.xlsx b/LM.WebApi/Download/ExcelExport/20250925/系统日志20250925181441.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20250925/系统日志20250925181441.xlsx rename to LM.WebApi/Download/ExcelExport/20250925/系统日志20250925181441.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20250925/系统日志20250925192501.xlsx b/LM.WebApi/Download/ExcelExport/20250925/系统日志20250925192501.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20250925/系统日志20250925192501.xlsx rename to LM.WebApi/Download/ExcelExport/20250925/系统日志20250925192501.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20250925/系统日志20250925195820.xlsx b/LM.WebApi/Download/ExcelExport/20250925/系统日志20250925195820.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20250925/系统日志20250925195820.xlsx rename to LM.WebApi/Download/ExcelExport/20250925/系统日志20250925195820.xlsx diff --git a/VOL.WebApi/Download/ExcelExport/20250928/跨系统部门关联20250928094653.xlsx b/LM.WebApi/Download/ExcelExport/20250928/跨系统部门关联20250928094653.xlsx similarity index 100% rename from VOL.WebApi/Download/ExcelExport/20250928/跨系统部门关联20250928094653.xlsx rename to LM.WebApi/Download/ExcelExport/20250928/跨系统部门关联20250928094653.xlsx diff --git a/VOL.WebApi/Download/Logger/Queue/WriteError/20231022.txt b/LM.WebApi/Download/Logger/Queue/WriteError/20231022.txt similarity index 100% rename from VOL.WebApi/Download/Logger/Queue/WriteError/20231022.txt rename to LM.WebApi/Download/Logger/Queue/WriteError/20231022.txt diff --git a/VOL.WebApi/Download/Logger/Queue/WriteError/20250925.txt b/LM.WebApi/Download/Logger/Queue/WriteError/20250925.txt similarity index 100% rename from VOL.WebApi/Download/Logger/Queue/WriteError/20250925.txt rename to LM.WebApi/Download/Logger/Queue/WriteError/20250925.txt diff --git a/VOL.WebApi/Download/Logger/Queue/WriteError/20250929.txt b/LM.WebApi/Download/Logger/Queue/WriteError/20250929.txt similarity index 100% rename from VOL.WebApi/Download/Logger/Queue/WriteError/20250929.txt rename to LM.WebApi/Download/Logger/Queue/WriteError/20250929.txt diff --git a/LM.WebApi/Download/Logger/Queue/WriteError/20251009.txt b/LM.WebApi/Download/Logger/Queue/WriteError/20251009.txt new file mode 100644 index 0000000..e9380ba --- /dev/null +++ b/LM.WebApi/Download/Logger/Queue/WriteError/20251009.txt @@ -0,0 +1,14 @@ +中文提示 : 连接数据库过程中发生错误,检查服务器是否正常连接字符串是否正确,错误信息:Unable to connect to any of the specified MySQL hosts.DbType="MySql";ConfigId="default". +English Message : Connection open error . Unable to connect to any of the specified MySQL hosts.DbType="MySql";ConfigId="default" at SqlSugar.Check.Exception(Boolean isException, String message, String[] args) + at SqlSugar.AdoProvider.CheckConnection() + at SqlSugar.MySqlProvider.GetCommand(String sql, SugarParameter[] parameters) + at SqlSugar.AdoProvider.GetDataSetAll(String sql, SugarParameter[] parameters) + at SqlSugar.AdoProvider.GetDataTable(String sql, SugarParameter[] parameters) + at SqlSugar.QueryableProvider`1.ToDataTable() + at SqlSugar.FastestProvider`1.b__44_0() + at SqlSugar.ReflectionInoCore`1.GetOrCreate(String cacheKey, Func`1 create) + at SqlSugar.FastestProvider`1.ToDdateTable(List`1 datas) + at SqlSugar.FastestProvider`1._BulkCopy(List`1 datas) + at SqlSugar.FastestProvider`1.BulkCopyAsync(List`1 datas) + at SqlSugar.FastestProvider`1.BulkCopy(List`1 datas) + at LM.Core.Services.Logger.Start() in D:\Code\Laservall-Data-Center\vol.api.sqlsugar\LM.Core\Services\Logger.cs:line 183SqlSugar diff --git a/VOL.WebApi/VOL.WebApi.csproj b/LM.WebApi/LM.WebApi.csproj similarity index 75% rename from VOL.WebApi/VOL.WebApi.csproj rename to LM.WebApi/LM.WebApi.csproj index 1d3105d..e2c4529 100644 --- a/VOL.WebApi/VOL.WebApi.csproj +++ b/LM.WebApi/LM.WebApi.csproj @@ -9,12 +9,12 @@ bin\Debug\netcoreapp8.0\ - bin\Debug\netcoreapp6.0\VOL.WebApi.xml + bin\Debug\netcoreapp6.0\LM.WebApi.xml 1701;1702;CS1591;CS8618;CS8600;CS8602;CS1572;CS1573;CS1587;CS1591;CS1570;CS8765;CA2200;NU1902;NU1903;NU1904; - bin\Release\netcoreapp6.0\VOL.WebApi.xml + bin\Release\netcoreapp6.0\LM.WebApi.xml bin\Release\netcoreapp6.0\ 1701;1702;CS1572;CS1573;CS1587;CS8618;CS8600;CS8602;CS1591;CS1570;CS8765;NU1902;NU1903;NU1904; @@ -29,11 +29,11 @@ - - - - - + + + + + diff --git a/VOL.WebApi/Program.cs b/LM.WebApi/Program.cs similarity index 95% rename from VOL.WebApi/Program.cs rename to LM.WebApi/Program.cs index 35ffea1..498a34c 100644 --- a/VOL.WebApi/Program.cs +++ b/LM.WebApi/Program.cs @@ -8,11 +8,11 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Logging; -using VOL.Core.Configuration; +using LM.Core.Configuration; -using VOL.WebApi.Controllers.MqDataHandle; +using LM.WebApi.Controllers.MqDataHandle; -namespace VOL.WebApi +namespace LM.WebApi { public class Program { diff --git a/VOL.WebApi/Properties/launchSettings.json b/LM.WebApi/Properties/launchSettings.json similarity index 97% rename from VOL.WebApi/Properties/launchSettings.json rename to LM.WebApi/Properties/launchSettings.json index babd6e4..10f1942 100644 --- a/VOL.WebApi/Properties/launchSettings.json +++ b/LM.WebApi/Properties/launchSettings.json @@ -7,7 +7,7 @@ "ASPNETCORE_ENVIRONMENT": "Development" } }, - "VOL.WebApi": { + "LM.WebApi": { "commandName": "Project", "launchBrowser": true, "environmentVariables": { diff --git a/VOL.WebApi/Startup.cs b/LM.WebApi/Startup.cs similarity index 96% rename from VOL.WebApi/Startup.cs rename to LM.WebApi/Startup.cs index 21da34f..de1a57a 100644 --- a/VOL.WebApi/Startup.cs +++ b/LM.WebApi/Startup.cs @@ -25,19 +25,19 @@ using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; -using VOL.Core.Configuration; -using VOL.Core.DBManager; -using VOL.Core.Extensions; -using VOL.Core.Filters; -using VOL.Core.Middleware; -using VOL.Core.ObjectActionValidator; -using VOL.Core.Quartz; -using VOL.Core.Utilities.PDFHelper; -using VOL.Core.WorkFlow; -using VOL.Entity.DomainModels; -using VOL.WebApi.Controllers.Hubs; +using LM.Core.Configuration; +using LM.Core.DBManager; +using LM.Core.Extensions; +using LM.Core.Filters; +using LM.Core.Middleware; +using LM.Core.ObjectActionValidator; +using LM.Core.Quartz; +using LM.Core.Utilities.PDFHelper; +using LM.Core.WorkFlow; +using LM.Entity.DomainModels; +using LM.WebApi.Controllers.Hubs; -namespace VOL.WebApi +namespace LM.WebApi { public class Startup { @@ -271,8 +271,9 @@ namespace VOL.WebApi app.UseSwaggerUI(c => { //2个下拉框选项 选择对应的文档 - c.SwaggerEndpoint("/swagger/v1/swagger.json", "VOL.Core后台Api"); - c.SwaggerEndpoint("/swagger/v2/swagger.json", "测试第三方Api"); + c.SwaggerEndpoint("/swagger/v1/swagger.json", "LM.Core后台Api"); + c.SwaggerEndpoint("/swagger/v2/swagger.json", "LM Api"); + //c.SwaggerEndpoint("/swagger/v2/swagger.json", "测试第三方Api"); c.RoutePrefix = ""; }); app.UseRouting(); diff --git a/VOL.WebApi/Template/AppHtml/news.html b/LM.WebApi/Template/AppHtml/news.html similarity index 100% rename from VOL.WebApi/Template/AppHtml/news.html rename to LM.WebApi/Template/AppHtml/news.html diff --git a/VOL.WebApi/Template/AppHtml/productDesc.html b/LM.WebApi/Template/AppHtml/productDesc.html similarity index 100% rename from VOL.WebApi/Template/AppHtml/productDesc.html rename to LM.WebApi/Template/AppHtml/productDesc.html diff --git a/VOL.WebApi/Template/Controller/Controller.html b/LM.WebApi/Template/Controller/Controller.html similarity index 94% rename from VOL.WebApi/Template/Controller/Controller.html rename to LM.WebApi/Template/Controller/Controller.html index 50e46b6..ad85ce9 100644 --- a/VOL.WebApi/Template/Controller/Controller.html +++ b/LM.WebApi/Template/Controller/Controller.html @@ -11,7 +11,7 @@ using System.Threading.Tasks; using {Namespace}.IServices; using {StartName}.Core.Controllers.Basic; using Microsoft.AspNetCore.Mvc; -using VOL.Entity.AttributeManager; +using LM.Entity.AttributeManager; namespace {Namespace}.Controllers { diff --git a/VOL.WebApi/Template/Controller/ControllerApi.html b/LM.WebApi/Template/Controller/ControllerApi.html similarity index 89% rename from VOL.WebApi/Template/Controller/ControllerApi.html rename to LM.WebApi/Template/Controller/ControllerApi.html index b4d9d55..93a167c 100644 --- a/VOL.WebApi/Template/Controller/ControllerApi.html +++ b/LM.WebApi/Template/Controller/ControllerApi.html @@ -3,8 +3,8 @@ *如果要增加方法请在当前目录下Partial文件夹{TableName}Controller编写 */ using Microsoft.AspNetCore.Mvc; -using VOL.Core.Controllers.Basic; -using VOL.Entity.AttributeManager; +using LM.Core.Controllers.Basic; +using LM.Entity.AttributeManager; using {Namespace}.IServices; namespace {Namespace}.Controllers { diff --git a/VOL.WebApi/Template/Controller/ControllerApiPartial.html b/LM.WebApi/Template/Controller/ControllerApiPartial.html similarity index 100% rename from VOL.WebApi/Template/Controller/ControllerApiPartial.html rename to LM.WebApi/Template/Controller/ControllerApiPartial.html diff --git a/VOL.WebApi/Template/Controller/ControllerPartial.html b/LM.WebApi/Template/Controller/ControllerPartial.html similarity index 100% rename from VOL.WebApi/Template/Controller/ControllerPartial.html rename to LM.WebApi/Template/Controller/ControllerPartial.html diff --git a/VOL.WebApi/Template/DomianModel/ApiInputDomainModel.html b/LM.WebApi/Template/DomianModel/ApiInputDomainModel.html similarity index 100% rename from VOL.WebApi/Template/DomianModel/ApiInputDomainModel.html rename to LM.WebApi/Template/DomianModel/ApiInputDomainModel.html diff --git a/VOL.WebApi/Template/DomianModel/ApiOutputDomainModel.html b/LM.WebApi/Template/DomianModel/ApiOutputDomainModel.html similarity index 100% rename from VOL.WebApi/Template/DomianModel/ApiOutputDomainModel.html rename to LM.WebApi/Template/DomianModel/ApiOutputDomainModel.html diff --git a/VOL.WebApi/Template/DomianModel/DomainModel.html b/LM.WebApi/Template/DomianModel/DomainModel.html similarity index 100% rename from VOL.WebApi/Template/DomianModel/DomainModel.html rename to LM.WebApi/Template/DomianModel/DomainModel.html diff --git a/VOL.WebApi/Template/DomianModel/MappingConfiguration.html b/LM.WebApi/Template/DomianModel/MappingConfiguration.html similarity index 100% rename from VOL.WebApi/Template/DomianModel/MappingConfiguration.html rename to LM.WebApi/Template/DomianModel/MappingConfiguration.html diff --git a/VOL.WebApi/Template/IRepositorys/BaseIRepositorie.html b/LM.WebApi/Template/IRepositorys/BaseIRepositorie.html similarity index 100% rename from VOL.WebApi/Template/IRepositorys/BaseIRepositorie.html rename to LM.WebApi/Template/IRepositorys/BaseIRepositorie.html diff --git a/VOL.WebApi/Template/IServices/IServiceBase.html b/LM.WebApi/Template/IServices/IServiceBase.html similarity index 100% rename from VOL.WebApi/Template/IServices/IServiceBase.html rename to LM.WebApi/Template/IServices/IServiceBase.html diff --git a/VOL.WebApi/Template/IServices/IServiceBasePartial.html b/LM.WebApi/Template/IServices/IServiceBasePartial.html similarity index 91% rename from VOL.WebApi/Template/IServices/IServiceBasePartial.html rename to LM.WebApi/Template/IServices/IServiceBasePartial.html index 90bcfd1..5d5ff32 100644 --- a/VOL.WebApi/Template/IServices/IServiceBasePartial.html +++ b/LM.WebApi/Template/IServices/IServiceBasePartial.html @@ -3,7 +3,7 @@ */ using {StartName}.Core.BaseProvider; using {StartName}.Entity.DomainModels; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; namespace {Namespace}.IServices { diff --git a/VOL.WebApi/Template/Page/SearchPage.html b/LM.WebApi/Template/Page/SearchPage.html similarity index 100% rename from VOL.WebApi/Template/Page/SearchPage.html rename to LM.WebApi/Template/Page/SearchPage.html diff --git a/VOL.WebApi/Template/Page/Vue3SearchPage.html b/LM.WebApi/Template/Page/Vue3SearchPage.html similarity index 100% rename from VOL.WebApi/Template/Page/Vue3SearchPage.html rename to LM.WebApi/Template/Page/Vue3SearchPage.html diff --git a/VOL.WebApi/Template/Page/VueExtension.html b/LM.WebApi/Template/Page/VueExtension.html similarity index 100% rename from VOL.WebApi/Template/Page/VueExtension.html rename to LM.WebApi/Template/Page/VueExtension.html diff --git a/VOL.WebApi/Template/Page/VueOptions.html b/LM.WebApi/Template/Page/VueOptions.html similarity index 100% rename from VOL.WebApi/Template/Page/VueOptions.html rename to LM.WebApi/Template/Page/VueOptions.html diff --git a/VOL.WebApi/Template/Page/VueSearchPage.html b/LM.WebApi/Template/Page/VueSearchPage.html similarity index 100% rename from VOL.WebApi/Template/Page/VueSearchPage.html rename to LM.WebApi/Template/Page/VueSearchPage.html diff --git a/VOL.WebApi/Template/Page/app/edit.html b/LM.WebApi/Template/Page/app/edit.html similarity index 100% rename from VOL.WebApi/Template/Page/app/edit.html rename to LM.WebApi/Template/Page/app/edit.html diff --git a/VOL.WebApi/Template/Page/app/extension.html b/LM.WebApi/Template/Page/app/extension.html similarity index 100% rename from VOL.WebApi/Template/Page/app/extension.html rename to LM.WebApi/Template/Page/app/extension.html diff --git a/VOL.WebApi/Template/Page/app/options.html b/LM.WebApi/Template/Page/app/options.html similarity index 100% rename from VOL.WebApi/Template/Page/app/options.html rename to LM.WebApi/Template/Page/app/options.html diff --git a/VOL.WebApi/Template/Page/app/page.html b/LM.WebApi/Template/Page/app/page.html similarity index 100% rename from VOL.WebApi/Template/Page/app/page.html rename to LM.WebApi/Template/Page/app/page.html diff --git a/VOL.WebApi/Template/Page/app/pageDetail.html b/LM.WebApi/Template/Page/app/pageDetail.html similarity index 100% rename from VOL.WebApi/Template/Page/app/pageDetail.html rename to LM.WebApi/Template/Page/app/pageDetail.html diff --git a/VOL.WebApi/Template/Page/gridParameters.html b/LM.WebApi/Template/Page/gridParameters.html similarity index 100% rename from VOL.WebApi/Template/Page/gridParameters.html rename to LM.WebApi/Template/Page/gridParameters.html diff --git a/VOL.WebApi/Template/Page/router.html b/LM.WebApi/Template/Page/router.html similarity index 100% rename from VOL.WebApi/Template/Page/router.html rename to LM.WebApi/Template/Page/router.html diff --git a/VOL.WebApi/Template/Repositorys/BaseRepository.html b/LM.WebApi/Template/Repositorys/BaseRepository.html similarity index 100% rename from VOL.WebApi/Template/Repositorys/BaseRepository.html rename to LM.WebApi/Template/Repositorys/BaseRepository.html diff --git a/VOL.WebApi/Template/Repositorys/BaseRepositoryPartial.html b/LM.WebApi/Template/Repositorys/BaseRepositoryPartial.html similarity index 100% rename from VOL.WebApi/Template/Repositorys/BaseRepositoryPartial.html rename to LM.WebApi/Template/Repositorys/BaseRepositoryPartial.html diff --git a/VOL.WebApi/Template/Services/ServiceBase.html b/LM.WebApi/Template/Services/ServiceBase.html similarity index 100% rename from VOL.WebApi/Template/Services/ServiceBase.html rename to LM.WebApi/Template/Services/ServiceBase.html diff --git a/VOL.WebApi/Template/Services/ServiceBasePartial.html b/LM.WebApi/Template/Services/ServiceBasePartial.html similarity index 98% rename from VOL.WebApi/Template/Services/ServiceBasePartial.html rename to LM.WebApi/Template/Services/ServiceBasePartial.html index c9170ac..a15c052 100644 --- a/VOL.WebApi/Template/Services/ServiceBasePartial.html +++ b/LM.WebApi/Template/Services/ServiceBasePartial.html @@ -10,7 +10,7 @@ using {StartName}.Core.BaseProvider; using {StartName}.Core.Extensions.AutofacManager; using {StartName}.Entity.DomainModels; using System.Linq; -using VOL.Core.Utilities; +using LM.Core.Utilities; using System.Linq.Expressions; using {StartName}.Core.Extensions; using Microsoft.EntityFrameworkCore; diff --git a/VOL.WebApi/Upload/1111.txt b/LM.WebApi/Upload/1111.txt similarity index 100% rename from VOL.WebApi/Upload/1111.txt rename to LM.WebApi/Upload/1111.txt diff --git a/VOL.WebApi/appsettings.Development.json b/LM.WebApi/appsettings.Development.json similarity index 100% rename from VOL.WebApi/appsettings.Development.json rename to LM.WebApi/appsettings.Development.json diff --git a/VOL.WebApi/appsettings.json b/LM.WebApi/appsettings.json similarity index 100% rename from VOL.WebApi/appsettings.json rename to LM.WebApi/appsettings.json diff --git a/VOL.WebApi/builder_run.bat b/LM.WebApi/builder_run.bat similarity index 100% rename from VOL.WebApi/builder_run.bat rename to LM.WebApi/builder_run.bat diff --git a/VOL.WebApi/dev_run.bat b/LM.WebApi/dev_run.bat similarity index 100% rename from VOL.WebApi/dev_run.bat rename to LM.WebApi/dev_run.bat diff --git a/VOL.WebApi/dev_run2.bat b/LM.WebApi/dev_run2.bat similarity index 100% rename from VOL.WebApi/dev_run2.bat rename to LM.WebApi/dev_run2.bat diff --git a/VOL.WebApi/dev_run启动异常说明.txt b/LM.WebApi/dev_run启动异常说明.txt similarity index 100% rename from VOL.WebApi/dev_run启动异常说明.txt rename to LM.WebApi/dev_run启动异常说明.txt diff --git a/VOL.WebApi/quartz/error/2022-09-07.txt b/LM.WebApi/quartz/error/2022-09-07.txt similarity index 100% rename from VOL.WebApi/quartz/error/2022-09-07.txt rename to LM.WebApi/quartz/error/2022-09-07.txt diff --git a/VOL.WebApi/quartz/error/2022-09-10.txt b/LM.WebApi/quartz/error/2022-09-10.txt similarity index 100% rename from VOL.WebApi/quartz/error/2022-09-10.txt rename to LM.WebApi/quartz/error/2022-09-10.txt diff --git a/VOL.WebApi/quartz/error/2022-09-11.txt b/LM.WebApi/quartz/error/2022-09-11.txt similarity index 100% rename from VOL.WebApi/quartz/error/2022-09-11.txt rename to LM.WebApi/quartz/error/2022-09-11.txt diff --git a/VOL.WebApi/quartz/error/2023-10-22.txt b/LM.WebApi/quartz/error/2023-10-22.txt similarity index 100% rename from VOL.WebApi/quartz/error/2023-10-22.txt rename to LM.WebApi/quartz/error/2023-10-22.txt diff --git a/VOL.WebApi/tmp.bat b/LM.WebApi/tmp.bat similarity index 100% rename from VOL.WebApi/tmp.bat rename to LM.WebApi/tmp.bat diff --git a/VOL.WebApi/wwwroot/Upload/Tables/App_News/202204200018378581/img02.png b/LM.WebApi/wwwroot/Upload/Tables/App_News/202204200018378581/img02.png similarity index 100% rename from VOL.WebApi/wwwroot/Upload/Tables/App_News/202204200018378581/img02.png rename to LM.WebApi/wwwroot/Upload/Tables/App_News/202204200018378581/img02.png diff --git a/VOL.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225478035/img03.png b/LM.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225478035/img03.png similarity index 100% rename from VOL.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225478035/img03.png rename to LM.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225478035/img03.png diff --git a/VOL.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225587342/img01.png b/LM.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225587342/img01.png similarity index 100% rename from VOL.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225587342/img01.png rename to LM.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172225587342/img01.png diff --git a/VOL.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172226012098/img04.png b/LM.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172226012098/img04.png similarity index 100% rename from VOL.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172226012098/img04.png rename to LM.WebApi/wwwroot/Upload/Tables/App_Transaction/202204172226012098/img04.png diff --git a/VOL.WebApi/wwwroot/Upload/Tables/Sys_User/202204130014502760/2.png b/LM.WebApi/wwwroot/Upload/Tables/Sys_User/202204130014502760/2.png similarity index 100% rename from VOL.WebApi/wwwroot/Upload/Tables/Sys_User/202204130014502760/2.png rename to LM.WebApi/wwwroot/Upload/Tables/Sys_User/202204130014502760/2.png diff --git a/VOL.WebApi/wwwroot/css/site.css b/LM.WebApi/wwwroot/css/site.css similarity index 100% rename from VOL.WebApi/wwwroot/css/site.css rename to LM.WebApi/wwwroot/css/site.css diff --git a/VOL.WebApi/wwwroot/favicon.ico b/LM.WebApi/wwwroot/favicon.ico similarity index 100% rename from VOL.WebApi/wwwroot/favicon.ico rename to LM.WebApi/wwwroot/favicon.ico diff --git a/VOL.WebApi/wwwroot/js/site.js b/LM.WebApi/wwwroot/js/site.js similarity index 100% rename from VOL.WebApi/wwwroot/js/site.js rename to LM.WebApi/wwwroot/js/site.js diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/LICENSE b/LM.WebApi/wwwroot/lib/bootstrap/LICENSE similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/LICENSE rename to LM.WebApi/wwwroot/lib/bootstrap/LICENSE diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js diff --git a/VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map b/LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map rename to LM.WebApi/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt b/LM.WebApi/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt rename to LM.WebApi/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js b/LM.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js rename to LM.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js b/LM.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js rename to LM.WebApi/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation/LICENSE.md b/LM.WebApi/wwwroot/lib/jquery-validation/LICENSE.md similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation/LICENSE.md rename to LM.WebApi/wwwroot/lib/jquery-validation/LICENSE.md diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.js b/LM.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.js rename to LM.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.js diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js b/LM.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js rename to LM.WebApi/wwwroot/lib/jquery-validation/dist/additional-methods.min.js diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.js b/LM.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.js rename to LM.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.js diff --git a/VOL.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js b/LM.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js rename to LM.WebApi/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js diff --git a/VOL.WebApi/wwwroot/lib/jquery/LICENSE.txt b/LM.WebApi/wwwroot/lib/jquery/LICENSE.txt similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery/LICENSE.txt rename to LM.WebApi/wwwroot/lib/jquery/LICENSE.txt diff --git a/VOL.WebApi/wwwroot/lib/jquery/dist/jquery.js b/LM.WebApi/wwwroot/lib/jquery/dist/jquery.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery/dist/jquery.js rename to LM.WebApi/wwwroot/lib/jquery/dist/jquery.js diff --git a/VOL.WebApi/wwwroot/lib/jquery/dist/jquery.min.js b/LM.WebApi/wwwroot/lib/jquery/dist/jquery.min.js similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery/dist/jquery.min.js rename to LM.WebApi/wwwroot/lib/jquery/dist/jquery.min.js diff --git a/VOL.WebApi/wwwroot/lib/jquery/dist/jquery.min.map b/LM.WebApi/wwwroot/lib/jquery/dist/jquery.min.map similarity index 100% rename from VOL.WebApi/wwwroot/lib/jquery/dist/jquery.min.map rename to LM.WebApi/wwwroot/lib/jquery/dist/jquery.min.map diff --git a/VOL.WebApi/wwwroot/test.txt b/LM.WebApi/wwwroot/test.txt similarity index 100% rename from VOL.WebApi/wwwroot/test.txt rename to LM.WebApi/wwwroot/test.txt diff --git a/VOL.WebApi/wwwroot/新建文本文档.txt b/LM.WebApi/wwwroot/新建文本文档.txt similarity index 100% rename from VOL.WebApi/wwwroot/新建文本文档.txt rename to LM.WebApi/wwwroot/新建文本文档.txt diff --git a/VOL.DingTalk/VOL.DingTalk.csproj b/LM.YSErp/LM.YSErp.csproj similarity index 79% rename from VOL.DingTalk/VOL.DingTalk.csproj rename to LM.YSErp/LM.YSErp.csproj index 4d4b247..8621265 100644 --- a/VOL.DingTalk/VOL.DingTalk.csproj +++ b/LM.YSErp/LM.YSErp.csproj @@ -7,7 +7,7 @@ - + diff --git a/VOL.YSErp/Models/Biz/YSERPDepartment.cs b/LM.YSErp/Models/Biz/YSERPDepartment.cs similarity index 98% rename from VOL.YSErp/Models/Biz/YSERPDepartment.cs rename to LM.YSErp/Models/Biz/YSERPDepartment.cs index ecfaf36..7105628 100644 --- a/VOL.YSErp/Models/Biz/YSERPDepartment.cs +++ b/LM.YSErp/Models/Biz/YSERPDepartment.cs @@ -5,7 +5,7 @@ using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; -namespace VOL.YSErp.Models.Biz +namespace LM.YSErp.Models.Biz { public class YSERPDepartment { diff --git a/VOL.YSErp/Models/Biz/YSERPEmployee.cs b/LM.YSErp/Models/Biz/YSERPEmployee.cs similarity index 97% rename from VOL.YSErp/Models/Biz/YSERPEmployee.cs rename to LM.YSErp/Models/Biz/YSERPEmployee.cs index 31e25bf..5c490cd 100644 --- a/VOL.YSErp/Models/Biz/YSERPEmployee.cs +++ b/LM.YSErp/Models/Biz/YSERPEmployee.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.YSErp.Models.Biz +namespace LM.YSErp.Models.Biz { public class YSERPEmployee { diff --git a/VOL.YSErp/Models/Biz/YSERPEmployeeInfo.cs b/LM.YSErp/Models/Biz/YSERPEmployeeInfo.cs similarity index 99% rename from VOL.YSErp/Models/Biz/YSERPEmployeeInfo.cs rename to LM.YSErp/Models/Biz/YSERPEmployeeInfo.cs index cce7aec..a47839a 100644 --- a/VOL.YSErp/Models/Biz/YSERPEmployeeInfo.cs +++ b/LM.YSErp/Models/Biz/YSERPEmployeeInfo.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.YSErp.Models.Biz +namespace LM.YSErp.Models.Biz { public class YSERPEmployeeInfo { diff --git a/VOL.YSErp/Models/Biz/YSERPEmployeeUpdateModel.cs b/LM.YSErp/Models/Biz/YSERPEmployeeUpdateModel.cs similarity index 99% rename from VOL.YSErp/Models/Biz/YSERPEmployeeUpdateModel.cs rename to LM.YSErp/Models/Biz/YSERPEmployeeUpdateModel.cs index c5c9e04..ae5419c 100644 --- a/VOL.YSErp/Models/Biz/YSERPEmployeeUpdateModel.cs +++ b/LM.YSErp/Models/Biz/YSERPEmployeeUpdateModel.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.YSErp.Models.Biz +namespace LM.YSErp.Models.Biz { public class YSERPEmployeeUpdateModel { diff --git a/VOL.YSErp/Models/Biz/YSERPPagedResponse.cs b/LM.YSErp/Models/Biz/YSERPPagedResponse.cs similarity index 97% rename from VOL.YSErp/Models/Biz/YSERPPagedResponse.cs rename to LM.YSErp/Models/Biz/YSERPPagedResponse.cs index dad0e88..301354c 100644 --- a/VOL.YSErp/Models/Biz/YSERPPagedResponse.cs +++ b/LM.YSErp/Models/Biz/YSERPPagedResponse.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.YSErp.Models.Biz +namespace LM.YSErp.Models.Biz { diff --git a/VOL.YSErp/Models/SystemToken.cs b/LM.YSErp/Models/SystemToken.cs similarity index 94% rename from VOL.YSErp/Models/SystemToken.cs rename to LM.YSErp/Models/SystemToken.cs index a0954f0..51d85da 100644 --- a/VOL.YSErp/Models/SystemToken.cs +++ b/LM.YSErp/Models/SystemToken.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.YSErp.Models +namespace LM.YSErp.Models { public class SystemToken { diff --git a/VOL.YSErp/Models/YSConfig.cs b/LM.YSErp/Models/YSConfig.cs similarity index 95% rename from VOL.YSErp/Models/YSConfig.cs rename to LM.YSErp/Models/YSConfig.cs index d5340e7..6b30f96 100644 --- a/VOL.YSErp/Models/YSConfig.cs +++ b/LM.YSErp/Models/YSConfig.cs @@ -4,7 +4,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace VOL.YSErp.Models +namespace LM.YSErp.Models { /* "ys": { diff --git a/VOL.YSErp/Services/Biz/YSERPService.cs b/LM.YSErp/Services/Biz/YSERPService.cs similarity index 99% rename from VOL.YSErp/Services/Biz/YSERPService.cs rename to LM.YSErp/Services/Biz/YSERPService.cs index 1fc1b19..8859e08 100644 --- a/VOL.YSErp/Services/Biz/YSERPService.cs +++ b/LM.YSErp/Services/Biz/YSERPService.cs @@ -4,12 +4,12 @@ using System.Security.Cryptography; using System.Text; using System.Text.Json; using System.Web; -using VOL.Core.Services; -using VOL.YSErp.Models; -using VOL.YSErp.Models.Biz; +using LM.Core.Services; +using LM.YSErp.Models; +using LM.YSErp.Models.Biz; using static Dm.net.buffer.ByteArrayBuffer; -namespace VOL.YSErp.Services.Biz +namespace LM.YSErp.Services.Biz { public class YSERPService { diff --git a/Laservall.Manager.sln b/Laservall.Manager.sln index 5c249f0..ee4b43c 100644 --- a/Laservall.Manager.sln +++ b/Laservall.Manager.sln @@ -3,21 +3,21 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 18 VisualStudioVersion = 18.0.11018.127 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VOL.Core", "VOL.Core\VOL.Core.csproj", "{9F72743E-647E-4D37-85D1-07EC9CD0AB71}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LM.Core", "LM.Core\LM.Core.csproj", "{9F72743E-647E-4D37-85D1-07EC9CD0AB71}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VOL.Entity", "VOL.Entity\VOL.Entity.csproj", "{E17DB44D-59EF-47D5-9B21-E2F6C471B5E9}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LM.Entity", "LM.Entity\LM.Entity.csproj", "{E17DB44D-59EF-47D5-9B21-E2F6C471B5E9}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VOL.Builder", "VOL.Builder\VOL.Builder.csproj", "{C71993AA-586E-4AF4-AD77-B5D7A07B3B7B}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LM.Builder", "LM.Builder\LM.Builder.csproj", "{C71993AA-586E-4AF4-AD77-B5D7A07B3B7B}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VOL.Sys", "VOL.Sys\VOL.Sys.csproj", "{9F688BF2-B51B-4812-B0C4-8F5D13114E9E}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LM.Sys", "LM.Sys\LM.Sys.csproj", "{9F688BF2-B51B-4812-B0C4-8F5D13114E9E}" EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "VOL.WebApi", "VOL.WebApi\VOL.WebApi.csproj", "{4DB3C91B-93FE-4937-8B58-DDD3F57D4607}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LM.WebApi", "LM.WebApi\LM.WebApi.csproj", "{4DB3C91B-93FE-4937-8B58-DDD3F57D4607}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VOL.HR", "VOL.HR\VOL.HR.csproj", "{71939963-532C-452F-956E-D04D51EB311E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LM.HR", "LM.HR\LM.HR.csproj", "{71939963-532C-452F-956E-D04D51EB311E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VOL.YSErp", "VOL.YSErp\VOL.YSErp.csproj", "{CDEFC727-9788-4329-8201-6527B36B1A73}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LM.YSErp", "LM.YSErp\LM.YSErp.csproj", "{CDEFC727-9788-4329-8201-6527B36B1A73}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VOL.DingTalk", "VOL.DingTalk\VOL.DingTalk.csproj", "{692CF3EB-A61E-49FB-8151-5C1F62BE6BBF}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LM.DingTalk", "LM.DingTalk\LM.DingTalk.csproj", "{692CF3EB-A61E-49FB-8151-5C1F62BE6BBF}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/VOL.Sys/IServices/System/ISys_LogService.cs b/VOL.Sys/IServices/System/ISys_LogService.cs deleted file mode 100644 index 9771b02..0000000 --- a/VOL.Sys/IServices/System/ISys_LogService.cs +++ /dev/null @@ -1,10 +0,0 @@ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; - -namespace VOL.Sys.IServices -{ - public partial interface ISys_LogService : IService - { - } - } - diff --git a/VOL.Sys/IServices/System/ISys_MenuService.cs b/VOL.Sys/IServices/System/ISys_MenuService.cs deleted file mode 100644 index 89de307..0000000 --- a/VOL.Sys/IServices/System/ISys_MenuService.cs +++ /dev/null @@ -1,10 +0,0 @@ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; - -namespace VOL.Sys.IServices -{ - public partial interface ISys_MenuService : IService - { - } - } - diff --git a/VOL.Sys/IServices/System/Partial/ISys_DictionaryListService.cs b/VOL.Sys/IServices/System/Partial/ISys_DictionaryListService.cs deleted file mode 100644 index 4574d0a..0000000 --- a/VOL.Sys/IServices/System/Partial/ISys_DictionaryListService.cs +++ /dev/null @@ -1,10 +0,0 @@ -using VOL.Core.BaseProvider; -using VOL.Entity.DomainModels; - -namespace VOL.Sys.IServices -{ - public partial interface ISys_DictionaryListService - { - } - } - diff --git a/VOL.Sys/Repositories/System/Partial/Sys_MenuRepository.cs b/VOL.Sys/Repositories/System/Partial/Sys_MenuRepository.cs deleted file mode 100644 index 301a790..0000000 --- a/VOL.Sys/Repositories/System/Partial/Sys_MenuRepository.cs +++ /dev/null @@ -1,13 +0,0 @@ -using VOL.Sys.IRepositories; -using VOL.Core.BaseProvider; -using VOL.Core.Extensions.AutofacManager; -using VOL.Core.DbContext; -using VOL.Entity.DomainModels; - -namespace VOL.Sys.Repositories -{ - public partial class Sys_MenuRepository - { - } -} -