diff --git a/Yi.Abp.Net8/framework/Yi.Framework.AspNetCore/RemoteServiceSuccessInfo.cs b/Yi.Abp.Net8/framework/Yi.Framework.AspNetCore/RemoteServiceSuccessInfo.cs index 297c82aa..c008f162 100644 --- a/Yi.Abp.Net8/framework/Yi.Framework.AspNetCore/RemoteServiceSuccessInfo.cs +++ b/Yi.Abp.Net8/framework/Yi.Framework.AspNetCore/RemoteServiceSuccessInfo.cs @@ -1,11 +1,4 @@ -using System; -using System.Collections; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Yi.Framework.AspNetCore +namespace Yi.Framework.AspNetCore { [Serializable] public class RemoteServiceSuccessInfo @@ -15,7 +8,6 @@ namespace Yi.Framework.AspNetCore /// public RemoteServiceSuccessInfo() { - } /// diff --git a/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.SqlSugarCore/DataSeeds/BannerDataSeed.cs b/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.SqlSugarCore/DataSeeds/BannerDataSeed.cs new file mode 100644 index 00000000..9e6168c0 --- /dev/null +++ b/Yi.Abp.Net8/module/bbs/Yi.Framework.Bbs.SqlSugarCore/DataSeeds/BannerDataSeed.cs @@ -0,0 +1,54 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Volo.Abp.Data; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories; +using Yi.Framework.Bbs.Domain.Entities; +using Yi.Framework.Rbac.Domain.Entities; +using Yi.Framework.SqlSugarCore.Abstractions; + +namespace Yi.Framework.Bbs.SqlSugarCore.DataSeeds +{ + public class BannerDataSeed : IDataSeedContributor, ITransientDependency + { + private ISqlSugarRepository _repository; + public BannerDataSeed(ISqlSugarRepository repository) + { + _repository = repository; + } + public async Task SeedAsync(DataSeedContext context) + { + if (!await _repository.IsAnyAsync(x => true)) + { + await _repository.InsertManyAsync(GetSeedData()); + } + } + public List GetSeedData() + { + //这里临时使用了图床,图床地址:https://mjj.today/ + List entities = new List() + { + new BannerEntity{ + Name="欢迎", + Logo="https://i.miji.bid/2023/12/15/e6478d5d15a4b941077e336790c414f6.png", + Color="" + + }, + new BannerEntity{ + Name="前端", + Logo="https://i.miji.bid/2023/12/15/07e9291c9311889a31a2b433d4decca0.jpeg", + Color="" + + }, + }; + + + + return entities; + } + } + +} \ No newline at end of file diff --git a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application/Services/UserService.cs b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application/Services/UserService.cs index ee78066e..b3a16cb2 100644 --- a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application/Services/UserService.cs +++ b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application/Services/UserService.cs @@ -186,6 +186,7 @@ namespace Yi.Framework.Rbac.Application.Services return await MapToGetOutputDtoAsync(entity); } [OperLog("删除用户", OperEnum.Delete)] + [Permission("system:user:delete")] public override async Task DeleteAsync(Guid id) { await base.DeleteAsync(id); diff --git a/Yi.Abp.Net8/src/Yi.Abp.Application.Contracts/Yi.Abp.Application.Contracts.csproj b/Yi.Abp.Net8/src/Yi.Abp.Application.Contracts/Yi.Abp.Application.Contracts.csproj index bf5548d4..d6f06030 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.Application.Contracts/Yi.Abp.Application.Contracts.csproj +++ b/Yi.Abp.Net8/src/Yi.Abp.Application.Contracts/Yi.Abp.Application.Contracts.csproj @@ -8,4 +8,9 @@ + + + + + diff --git a/Yi.Abp.Net8/src/Yi.Abp.Application/TestService.cs b/Yi.Abp.Net8/src/Yi.Abp.Application/Services/TestService.cs similarity index 82% rename from Yi.Abp.Net8/src/Yi.Abp.Application/TestService.cs rename to Yi.Abp.Net8/src/Yi.Abp.Application/Services/TestService.cs index 35c9880b..3ae82863 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.Application/TestService.cs +++ b/Yi.Abp.Net8/src/Yi.Abp.Application/Services/TestService.cs @@ -1,6 +1,7 @@ using Volo.Abp.Application.Services; +using Volo.Abp.DependencyInjection; -namespace Yi.Abp.Application +namespace Yi.Abp.Application.Services { public class TestService : ApplicationService { diff --git a/Yi.Abp.Net8/src/Yi.Abp.Application/Yi.Abp.Application.csproj b/Yi.Abp.Net8/src/Yi.Abp.Application/Yi.Abp.Application.csproj index be317d94..94b4a956 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.Application/Yi.Abp.Application.csproj +++ b/Yi.Abp.Net8/src/Yi.Abp.Application/Yi.Abp.Application.csproj @@ -13,4 +13,9 @@ + + + + + diff --git a/Yi.Abp.Net8/src/Yi.Abp.Domain.Shared/Yi.Abp.Domain.Shared.csproj b/Yi.Abp.Net8/src/Yi.Abp.Domain.Shared/Yi.Abp.Domain.Shared.csproj index 293f5a00..e7fef7f9 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.Domain.Shared/Yi.Abp.Domain.Shared.csproj +++ b/Yi.Abp.Net8/src/Yi.Abp.Domain.Shared/Yi.Abp.Domain.Shared.csproj @@ -10,4 +10,11 @@ + + + + + + + diff --git a/Yi.Abp.Net8/src/Yi.Abp.Domain/Yi.Abp.Domain.csproj b/Yi.Abp.Net8/src/Yi.Abp.Domain/Yi.Abp.Domain.csproj index fcb4ffe4..6d794e53 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.Domain/Yi.Abp.Domain.csproj +++ b/Yi.Abp.Net8/src/Yi.Abp.Domain/Yi.Abp.Domain.csproj @@ -14,4 +14,10 @@ + + + + + + diff --git a/Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/Yi.Abp.SqlSugarCore.csproj b/Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/Yi.Abp.SqlSugarCore.csproj index 9b639e3a..85a4b7a7 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/Yi.Abp.SqlSugarCore.csproj +++ b/Yi.Abp.Net8/src/Yi.Abp.SqlSugarCore/Yi.Abp.SqlSugarCore.csproj @@ -9,4 +9,9 @@ + + + + + diff --git a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231212.txt b/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231212.txt deleted file mode 100644 index b35588a8..00000000 --- a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231212.txt +++ /dev/null @@ -1,1274 +0,0 @@ -2023-12-12 17:16:19.024 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-12 17:16:21.768 +08:00 [INF] Loaded ABP modules: -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-12 17:16:21.769 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-12 17:16:21.769 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-12 17:16:21.936 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.958 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.960 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.961 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.962 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.965 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.967 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.967 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.968 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.969 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.970 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.972 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.972 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.973 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.974 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.974 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.977 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.978 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.979 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.981 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.981 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.982 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.983 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:21.983 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:16:22.126 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:16:22.140 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:16:22.142 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:16:22.145 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:16:22.147 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:16:22.149 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:16:22.151 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:16:22.419 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-12 17:16:22.468 +08:00 [INF] Initialized all ABP modules. -2023-12-12 17:16:22.536 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-12 17:16:22.536 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-12 17:16:22.537 +08:00 [INF] Hosting environment: Development -2023-12-12 17:16:22.537 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-12 17:30:28.370 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-12 17:30:31.788 +08:00 [INF] Loaded ABP modules: -2023-12-12 17:30:31.788 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-12 17:30:31.789 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-12 17:30:31.789 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-12 17:30:32.041 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.067 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.069 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.070 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.071 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.074 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.076 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.076 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.077 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.078 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.079 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.081 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.081 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.082 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.084 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.085 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.088 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.089 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.090 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.092 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.092 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.093 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.094 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.094 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:32.246 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:32.261 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:32.263 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:32.266 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:32.269 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:32.271 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:32.273 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:32.628 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-12 17:30:32.680 +08:00 [INF] Initialized all ABP modules. -2023-12-12 17:30:32.787 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-12 17:30:32.787 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-12 17:30:32.788 +08:00 [INF] Hosting environment: Development -2023-12-12 17:30:32.788 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-12 17:30:50.122 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-12 17:30:52.779 +08:00 [INF] Loaded ABP modules: -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-12 17:30:52.779 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-12 17:30:52.779 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-12 17:30:52.780 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-12 17:30:52.780 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-12 17:30:52.970 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:52.998 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.000 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.001 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.002 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.006 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.009 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.010 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.011 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.013 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.014 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.015 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.016 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.016 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.017 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.018 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.021 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.022 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.023 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.026 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.026 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.027 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.028 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.029 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:30:53.170 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:53.183 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:53.185 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:53.189 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:53.192 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:53.194 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:53.196 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:30:53.499 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-12 17:30:53.551 +08:00 [INF] Initialized all ABP modules. -2023-12-12 17:30:53.621 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-12 17:30:53.621 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-12 17:30:53.621 +08:00 [INF] Hosting environment: Development -2023-12-12 17:30:53.621 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-12 17:51:17.104 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-12 17:51:20.297 +08:00 [INF] Loaded ABP modules: -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-12 17:51:20.297 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-12 17:51:20.297 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-12 17:51:20.499 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.524 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.525 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.526 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.527 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.530 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.532 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.533 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.533 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.535 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.535 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.537 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.538 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.538 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.539 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.539 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.542 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.543 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.544 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.546 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.546 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.547 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.548 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.548 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:51:20.691 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:51:20.704 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:51:20.706 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:51:20.709 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:51:20.712 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:51:20.715 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:51:20.717 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:51:21.036 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-12 17:51:21.087 +08:00 [INF] Initialized all ABP modules. -2023-12-12 17:51:21.163 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-12 17:51:21.163 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-12 17:51:21.164 +08:00 [INF] Hosting environment: Development -2023-12-12 17:51:21.164 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-12 17:52:15.712 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-12 17:52:18.655 +08:00 [INF] Loaded ABP modules: -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-12 17:52:18.655 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-12 17:52:18.655 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-12 17:52:18.858 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.883 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.885 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.886 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.887 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.890 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.892 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.893 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.893 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.895 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.895 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.897 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.898 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.898 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.899 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.900 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.903 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.904 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.905 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.906 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.907 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.908 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.909 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:18.909 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 17:52:19.055 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:52:19.069 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:52:19.071 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:52:19.074 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:52:19.076 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:52:19.078 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:52:19.080 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 17:52:19.406 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-12 17:52:19.459 +08:00 [INF] Initialized all ABP modules. -2023-12-12 17:52:19.539 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-12 17:52:19.539 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-12 17:52:19.539 +08:00 [INF] Hosting environment: Development -2023-12-12 17:52:19.539 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-12 17:54:01.449 +08:00 [INF] CORS policy execution successful. -2023-12-12 17:54:01.485 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:01.506 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:01.547 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-12 17:54:01.599 +08:00 [DBG] Yi-SQL执行:INSERT INTO `AccessLog` - (`Id`,`Number`,`LastModificationTime`,`CreationTime`) - VALUES - (N'e71f5fde-6f59-9353-93e7-3a0f6f9f74e5',0,null,'2023-12-12 17:54:01.581') ; -2023-12-12 17:54:01.617 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 106.3659ms -2023-12-12 17:54:01.617 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:01.650 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:01", - "ExecutionDuration": 138, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:01", - "ExecutionDuration": 82, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:03.285 +08:00 [INF] CORS policy execution successful. -2023-12-12 17:54:03.286 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:03.287 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:03.289 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-12 17:54:03.326 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'e71f5fde-6f59-9353-93e7-3a0f6f9f74e5' ) -2023-12-12 17:54:03.328 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 41.4262ms -2023-12-12 17:54:03.328 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:03.329 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:03", - "ExecutionDuration": 42, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:03", - "ExecutionDuration": 40, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:03.491 +08:00 [INF] CORS policy execution successful. -2023-12-12 17:54:03.492 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:03.492 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:03.493 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-12 17:54:03.495 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'e71f5fde-6f59-9353-93e7-3a0f6f9f74e5' ) -2023-12-12 17:54:03.496 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 4.301ms -2023-12-12 17:54:03.496 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:03.497 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:03", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:03", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:05.497 +08:00 [INF] CORS policy execution successful. -2023-12-12 17:54:05.498 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:05.498 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:05.499 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-12 17:54:05.500 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'e71f5fde-6f59-9353-93e7-3a0f6f9f74e5' ) -2023-12-12 17:54:05.501 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 3.0979ms -2023-12-12 17:54:05.502 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:05.502 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:05", - "ExecutionDuration": 4, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:05", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:05.618 +08:00 [INF] CORS policy execution successful. -2023-12-12 17:54:05.618 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:05.618 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:05.619 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-12 17:54:05.620 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'e71f5fde-6f59-9353-93e7-3a0f6f9f74e5' ) -2023-12-12 17:54:05.622 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 3.1545ms -2023-12-12 17:54:05.622 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:05.622 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:05", - "ExecutionDuration": 4, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:05", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:06.151 +08:00 [INF] CORS policy execution successful. -2023-12-12 17:54:06.151 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:06.151 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:06.153 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-12 17:54:06.153 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'e71f5fde-6f59-9353-93e7-3a0f6f9f74e5' ) -2023-12-12 17:54:06.155 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 3.0723ms -2023-12-12 17:54:06.155 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:06.155 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:06", - "ExecutionDuration": 3, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:06", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:06.293 +08:00 [INF] CORS policy execution successful. -2023-12-12 17:54:06.293 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:06.293 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:06.295 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-12 17:54:06.296 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'e71f5fde-6f59-9353-93e7-3a0f6f9f74e5' ) -2023-12-12 17:54:06.298 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 4.13ms -2023-12-12 17:54:06.298 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:06.298 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:06", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:06", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:08.615 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:08.617 +08:00 [INF] Route matched with {action = "GetWeekFirst", controller = "AccessLog", area = ""}. Executing controller action with signature System.DateTime GetWeekFirst() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:08.624 +08:00 [INF] Executing ObjectResult, writing value of type 'System.DateTime'. -2023-12-12 17:54:08.634 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application) in 16.7006ms -2023-12-12 17:54:08.634 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:08.634 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:08", - "ExecutionDuration": 19, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week-first", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekFirst", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:08", - "ExecutionDuration": 1, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:09.609 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:09.609 +08:00 [INF] Route matched with {action = "GetWeekFirst", controller = "AccessLog", area = ""}. Executing controller action with signature System.DateTime GetWeekFirst() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:09.610 +08:00 [INF] Executing ObjectResult, writing value of type 'System.DateTime'. -2023-12-12 17:54:09.610 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application) in 1.1458ms -2023-12-12 17:54:09.610 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:09.611 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:09", - "ExecutionDuration": 2, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week-first", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekFirst", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:09", - "ExecutionDuration": 0, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:09.763 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:09.764 +08:00 [INF] Route matched with {action = "GetWeekFirst", controller = "AccessLog", area = ""}. Executing controller action with signature System.DateTime GetWeekFirst() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:09.764 +08:00 [INF] Executing ObjectResult, writing value of type 'System.DateTime'. -2023-12-12 17:54:09.764 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application) in 0.7099ms -2023-12-12 17:54:09.764 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:09.765 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:09", - "ExecutionDuration": 1, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week-first", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekFirst", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:09", - "ExecutionDuration": 0, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:09.930 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:09.930 +08:00 [INF] Route matched with {action = "GetWeekFirst", controller = "AccessLog", area = ""}. Executing controller action with signature System.DateTime GetWeekFirst() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:09.931 +08:00 [INF] Executing ObjectResult, writing value of type 'System.DateTime'. -2023-12-12 17:54:09.931 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application) in 0.5866ms -2023-12-12 17:54:09.931 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:09.931 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:09", - "ExecutionDuration": 1, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week-first", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekFirst", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:09", - "ExecutionDuration": 0, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:10.094 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:10.094 +08:00 [INF] Route matched with {action = "GetWeekFirst", controller = "AccessLog", area = ""}. Executing controller action with signature System.DateTime GetWeekFirst() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:10.095 +08:00 [INF] Executing ObjectResult, writing value of type 'System.DateTime'. -2023-12-12 17:54:10.095 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application) in 0.656ms -2023-12-12 17:54:10.095 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:10.095 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:10", - "ExecutionDuration": 1, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week-first", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekFirst", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:10", - "ExecutionDuration": 0, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:54:50.805 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:50.806 +08:00 [INF] Route matched with {action = "GetWeekFirst", controller = "AccessLog", area = ""}. Executing controller action with signature System.DateTime GetWeekFirst() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:54:50.807 +08:00 [INF] Executing ObjectResult, writing value of type 'System.DateTime'. -2023-12-12 17:54:50.807 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application) in 1.5518ms -2023-12-12 17:54:50.807 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekFirst (Yi.Framework.Bbs.Application)' -2023-12-12 17:54:50.807 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:54:50", - "ExecutionDuration": 2, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week-first", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekFirst", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:54:50", - "ExecutionDuration": 0, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 17:55:04.838 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:55:04.841 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-12 17:55:07.053 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-12 17:55:07.137 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-12 17:55:07.140 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 2299.0422ms -2023-12-12 17:55:07.140 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-12 17:55:07.140 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-12 17:55:04", - "ExecutionDuration": 2302, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-12 17:55:04", - "ExecutionDuration": 2296, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-12 18:07:34.180 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-12 18:07:36.769 +08:00 [INF] Loaded ABP modules: -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-12 18:07:36.769 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-12 18:07:36.769 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-12 18:07:36.770 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-12 18:07:36.770 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-12 18:07:36.951 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.975 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.977 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.977 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.979 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.982 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.984 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.985 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.985 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.988 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.988 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.990 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.990 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.991 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.992 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.993 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.996 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.997 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:36.998 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:37.000 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:37.000 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:37.001 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:37.002 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:37.002 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-12 18:07:37.153 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 18:07:37.168 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 18:07:37.170 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 18:07:37.173 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-12 18:07:37.177 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 18:07:37.179 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 18:07:37.182 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-12 18:07:37.490 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-12 18:07:37.543 +08:00 [INF] Initialized all ABP modules. -2023-12-12 18:07:37.614 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-12 18:07:37.614 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-12 18:07:37.614 +08:00 [INF] Hosting environment: Development -2023-12-12 18:07:37.614 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web diff --git a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231213.txt b/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231213.txt deleted file mode 100644 index 286a2b70..00000000 --- a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231213.txt +++ /dev/null @@ -1,5224 +0,0 @@ -2023-12-13 12:22:25.631 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-13 12:22:30.214 +08:00 [INF] Loaded ABP modules: -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-13 12:22:30.215 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-13 12:22:30.215 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-13 12:22:30.424 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.447 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.449 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.450 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.452 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.455 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.457 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.458 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.459 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.461 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.462 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.464 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.465 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.465 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.466 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.467 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.471 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.472 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.473 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.475 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.476 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.476 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.478 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.478 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 12:22:30.633 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 12:22:30.648 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 12:22:30.651 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 12:22:30.655 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-13 12:22:30.658 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 12:22:30.660 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 12:22:30.663 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 12:22:30.983 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-13 12:22:31.042 +08:00 [INF] Initialized all ABP modules. -2023-12-13 12:22:31.143 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-13 12:22:31.143 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-13 12:22:31.144 +08:00 [INF] Hosting environment: Development -2023-12-13 12:22:31.144 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-13 12:24:24.291 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:24.330 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 1:14:24', Current time (UTC): '2023/12/13 4:24:24'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 12:24:24.330 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 1:14:24', Current time (UTC): '2023/12/13 4:24:24'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 12:24:24.331 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 1:14:24', Current time (UTC): '2023/12/13 4:24:24'. -2023-12-13 12:24:24.331 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 1:14:24', Current time (UTC): '2023/12/13 4:24:24'. -2023-12-13 12:24:24.352 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 12:24:24.352 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 12:24:24.356 +08:00 [INF] AuthenticationScheme: Bearer was challenged. -2023-12-13 12:24:24.356 +08:00 [INF] AuthenticationScheme: Bearer was challenged. -2023-12-13 12:24:24.404 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:24.405 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 1:14:24', Current time (UTC): '2023/12/13 4:24:24'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 12:24:24.405 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 1:14:24', Current time (UTC): '2023/12/13 4:24:24'. -2023-12-13 12:24:24.424 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:24.440 +08:00 [INF] Route matched with {action = "PostLogout", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Boolean] PostLogout() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:24.599 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Boolean'. -2023-12-13 12:24:24.616 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:24.617 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenMalformedException: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. - ---> Microsoft.IdentityModel.Tokens.SecurityTokenMalformedException: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. - at Microsoft.IdentityModel.JsonWebTokens.JsonWebToken.ReadToken(String encodedJson) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebToken..ctor(String jwtEncodedString) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ReadToken(String token, TokenValidationParameters validationParameters) - --- End of inner exception stack trace --- -2023-12-13 12:24:24.617 +08:00 [INF] Bearer was not authenticated. Failure message: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. -2023-12-13 12:24:24.618 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 12:24:24.618 +08:00 [INF] AuthenticationScheme: Bearer was challenged. -2023-12-13 12:24:24.621 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application) in 176.8417ms -2023-12-13 12:24:24.621 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:24.644 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:24", - "ExecutionDuration": 203, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/logout", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLogout", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 12:24:24", - "ExecutionDuration": 13, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:24.743 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.GetCaptchaImageAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:24.745 +08:00 [INF] Route matched with {action = "GetCaptchaImage", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Account.CaptchaImageDto] GetCaptchaImageAsync() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:24.804 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Application.Contracts.Dtos.Account.CaptchaImageDto'. -2023-12-13 12:24:24.808 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.GetCaptchaImageAsync (Yi.Framework.Rbac.Application) in 62.7742ms -2023-12-13 12:24:24.808 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.GetCaptchaImageAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:24.808 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:24", - "ExecutionDuration": 65, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account/captcha-image", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "GetCaptchaImageAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 12:24:24", - "ExecutionDuration": 58, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:29.410 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:29.410 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenMalformedException: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. - ---> Microsoft.IdentityModel.Tokens.SecurityTokenMalformedException: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. - at Microsoft.IdentityModel.JsonWebTokens.JsonWebToken.ReadToken(String encodedJson) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebToken..ctor(String jwtEncodedString) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ReadToken(String token, TokenValidationParameters validationParameters) - --- End of inner exception stack trace --- -2023-12-13 12:24:29.410 +08:00 [INF] Bearer was not authenticated. Failure message: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. -2023-12-13 12:24:29.411 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 12:24:29.411 +08:00 [INF] AuthenticationScheme: Bearer was challenged. -2023-12-13 12:24:29.632 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:29.632 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenMalformedException: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. - ---> Microsoft.IdentityModel.Tokens.SecurityTokenMalformedException: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. - at Microsoft.IdentityModel.JsonWebTokens.JsonWebToken.ReadToken(String encodedJson) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebToken..ctor(String jwtEncodedString) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ReadToken(String token, TokenValidationParameters validationParameters) - --- End of inner exception stack trace --- -2023-12-13 12:24:29.632 +08:00 [INF] Bearer was not authenticated. Failure message: IDX14100: JWT is not well formed, there are no dots (.). -The token needs to be in JWS or JWE Compact Serialization Format. (JWS): 'EncodedHeader.EndcodedPayload.EncodedSignature'. (JWE): 'EncodedProtectedHeader.EncodedEncryptedKey.EncodedInitializationVector.EncodedCiphertext.EncodedAuthenticationTag'. -2023-12-13 12:24:29.632 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 12:24:29.632 +08:00 [INF] AuthenticationScheme: Bearer was challenged. -2023-12-13 12:24:31.714 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:31.715 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:31.723 +08:00 [INF] Route matched with {action = "PostLogin", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Object] PostLoginAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Account.LoginInputVo) on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:31.772 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE (( `UserName` = N'cc' ) AND ( `State` = 1 )) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-13 12:24:31.789 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:31.807 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 12:24:31.812 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:31.901 +08:00 [INF] Executing ObjectResult, writing value of type '<>f__AnonymousType0`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'. -2023-12-13 12:24:31.903 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application) in 179.5209ms -2023-12-13 12:24:31.903 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:31.904 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:31", - "ExecutionDuration": 189, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/login", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLoginAsync", - "Parameters": "{\"input\":{\"userName\":\"cc\",\"password\":\"123456\",\"uuid\":\"d91667e0-87f9-42c3-348f-3a0f73980bab\",\"code\":\"z3br\"}}", - "ExecutionTime": "2023-12-13 12:24:31", - "ExecutionDuration": 149, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:31.910 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:31.914 +08:00 [INF] 用户【36532e8b-109b-c6dd-fa9e-3a0f5fe48619:cc】登入系统 -2023-12-13 12:24:31.916 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:31.916 +08:00 [INF] Executing endpoint '/hub/main/negotiate' -2023-12-13 12:24:31.917 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:31.919 +08:00 [INF] Executed endpoint '/hub/main/negotiate' -2023-12-13 12:24:31.920 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:31.922 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 12:24:31.924 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:31.925 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 12:24:31.927 +08:00 [INF] CORS policy execution successful. -2023-12-13 12:24:31.927 +08:00 [INF] Executing endpoint '/hub/main' -2023-12-13 12:24:31.932 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 14.422ms -2023-12-13 12:24:31.932 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:31.932 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:31", - "ExecutionDuration": 16, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 12:24:31", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:31.940 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.GetVue3Router (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:31.942 +08:00 [INF] Route matched with {action = "GetVue3Router", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[Yi.Framework.Rbac.Domain.Shared.Dtos.Vue3RouterDto]] GetVue3Router() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:31.944 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:31.945 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 12:24:31.947 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:31.950 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State`,`MenuName`,`MenuType`,`PermissionCode`,`ParentId`,`MenuIcon`,`Router`,`IsLink`,`IsCache`,`IsShow`,`Remark`,`Component`,`Query` FROM `Menu` WHERE ( `IsDeleted` = 0 ) -2023-12-13 12:24:31.956 +08:00 [DBG] Yi-SQL执行:INSERT INTO `LoginLog` - (`Id`,`CreationTime`,`LoginUser`,`LoginLocation`,`LoginIp`,`Browser`,`Os`,`LogMsg`,`CreatorId`) - VALUES - (N'e34c3d03-d02b-a8ef-8b78-3a0f739827b8','2023-12-13 12:24:31.931',N'cc',N'本地-本机',N'127.0.0.1',N'Other',N'Windows 10',N'cc登录系统',null) ; -2023-12-13 12:24:31.981 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[Yi.Framework.Rbac.Domain.Shared.Dtos.Vue3RouterDto, Yi.Framework.Rbac.Domain.Shared, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 12:24:31.984 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.GetVue3Router (Yi.Framework.Rbac.Application) in 41.488ms -2023-12-13 12:24:31.984 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.GetVue3Router (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:31.984 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:31", - "ExecutionDuration": 44, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account/Vue3Router", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "GetVue3Router", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 12:24:31", - "ExecutionDuration": 38, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:31.990 +08:00 [INF] 2023/12/13 12:24:31:cc,vC4Th4dE0OKHLACUz3MCTQ连接服务端success,当前已连接1个 -2023-12-13 12:24:34.019 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.DictionaryService.GetDicType (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.019 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.DeptService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.019 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.DictionaryService.GetDicType (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.020 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.UserService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.022 +08:00 [INF] Route matched with {action = "GetDicType", controller = "Dictionary", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Dictionary.DictionaryGetListOutputDto]] GetDicType(System.String) on controller Yi.Framework.Rbac.Application.Services.DictionaryService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:34.022 +08:00 [INF] Route matched with {action = "GetDicType", controller = "Dictionary", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Dictionary.DictionaryGetListOutputDto]] GetDicType(System.String) on controller Yi.Framework.Rbac.Application.Services.DictionaryService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:34.024 +08:00 [INF] Route matched with {action = "GetList", controller = "Dept", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Dept.DeptGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Dept.DeptGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.DeptService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:34.024 +08:00 [INF] Route matched with {action = "GetList", controller = "User", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.User.UserGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.User.UserGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.UserService (Yi.Framework.Rbac.Application). -2023-12-13 12:24:34.042 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`OrderNum`,`State`,`Remark`,`ListClass`,`CssClass`,`DictType`,`DictLabel`,`DictValue`,`IsDefault`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Dictionary` WHERE (( `DictType` = N'sys_user_sex' ) AND ( `State` = 1 )) AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:34.054 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`OrderNum`,`State`,`Remark`,`ListClass`,`CssClass`,`DictType`,`DictLabel`,`DictValue`,`IsDefault`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Dictionary` WHERE (( `DictType` = N'sys_normal_disable' ) AND ( `State` = 1 )) AND ( `IsDeleted` = 0 ) -2023-12-13 12:24:34.074 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Dictionary.DictionaryGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 12:24:34.074 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Dictionary.DictionaryGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 12:24:34.077 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.DictionaryService.GetDicType (Yi.Framework.Rbac.Application) in 54.6573ms -2023-12-13 12:24:34.077 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.DictionaryService.GetDicType (Yi.Framework.Rbac.Application) in 54.5526ms -2023-12-13 12:24:34.077 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.DictionaryService.GetDicType (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.077 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.DictionaryService.GetDicType (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.077 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 57, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/dictionary/dic-type/sys_user_sex", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.DictionaryService", - "MethodName": "GetDicType", - "Parameters": "{\"dicType\":\"sys_user_sex\"}", - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 45, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:34.077 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 57, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/dictionary/dic-type/sys_normal_disable", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.DictionaryService", - "MethodName": "GetDicType", - "Parameters": "{\"dicType\":\"sys_normal_disable\"}", - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 43, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:34.084 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `Id`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State`,`DeptName`,`DeptCode`,`Leader`,`ParentId`,`Remark` FROM `Dept` WHERE ( `IsDeleted` = 0 ) ) CountTable -2023-12-13 12:24:34.085 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State`,`DeptName`,`DeptCode`,`Leader`,`ParentId`,`Remark` FROM `Dept` WHERE ( `IsDeleted` = 0 ) ORDER BY `OrderNum` ASC LIMIT 0,10 -2023-12-13 12:24:34.094 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Dept.DeptGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 12:24:34.097 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.DeptService.GetListAsync (Yi.Framework.Rbac.Application) in 73.3655ms -2023-12-13 12:24:34.097 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.DeptService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.098 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 78, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/dept", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.DeptService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"id\":\"00000000-0000-0000-0000-000000000000\",\"state\":null,\"deptName\":null,\"deptCode\":null,\"leader\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 25, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:34.100 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `user`.`Id` AS `Id` ,`user`.`Name` AS `Name` ,`user`.`Age` AS `Age` ,`user`.`UserName` AS `UserName` ,`user`.`Icon` AS `Icon` ,`user`.`Nick` AS `Nick` ,`user`.`Email` AS `Email` ,`user`.`Ip` AS `Ip` ,`user`.`Address` AS `Address` ,`user`.`Phone` AS `Phone` ,`user`.`Introduction` AS `Introduction` ,`user`.`Remark` AS `Remark` ,`user`.`Sex` AS `Sex` ,`user`.`DeptId` AS `DeptId` ,`user`.`CreationTime` AS `CreationTime` ,`user`.`CreatorId` AS `CreatorId` ,`user`.`State` AS `State` ,`dept`.`DeptName` AS `DeptName` FROM (SELECT * FROM (SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE ( `State` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `user` Left JOIN `Dept` `dept` ON ( `user`.`DeptId` = `dept`.`Id` ) AND ( `dept`.`IsDeleted` = 0 ) WHERE ( `user`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 12:24:34.101 +08:00 [DBG] Yi-SQL执行:SELECT `user`.`Id` AS `Id` ,`user`.`Name` AS `Name` ,`user`.`Age` AS `Age` ,`user`.`UserName` AS `UserName` ,`user`.`Icon` AS `Icon` ,`user`.`Nick` AS `Nick` ,`user`.`Email` AS `Email` ,`user`.`Ip` AS `Ip` ,`user`.`Address` AS `Address` ,`user`.`Phone` AS `Phone` ,`user`.`Introduction` AS `Introduction` ,`user`.`Remark` AS `Remark` ,`user`.`Sex` AS `Sex` ,`user`.`DeptId` AS `DeptId` ,`user`.`CreationTime` AS `CreationTime` ,`user`.`CreatorId` AS `CreatorId` ,`user`.`State` AS `State` ,`dept`.`DeptName` AS `DeptName` FROM (SELECT * FROM (SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE ( `State` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `user` Left JOIN `Dept` `dept` ON ( `user`.`DeptId` = `dept`.`Id` ) AND ( `dept`.`IsDeleted` = 0 ) WHERE ( `user`.`IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 12:24:34.104 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.User.UserGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 12:24:34.108 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.UserService.GetListAsync (Yi.Framework.Rbac.Application) in 83.991ms -2023-12-13 12:24:34.108 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.UserService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 12:24:34.108 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 88, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/user", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.UserService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"userName\":null,\"phone\":null,\"state\":true,\"deptId\":null,\"ids\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 12:24:34", - "ExecutionDuration": 32, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 12:24:35.826 +08:00 [INF] 用户cc离开了,当前已连接0个 -2023-12-13 12:24:35.827 +08:00 [INF] Executed endpoint '/hub/main' -2023-12-13 16:17:09.796 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-13 16:17:14.047 +08:00 [INF] Loaded ABP modules: -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-13 16:17:14.047 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-13 16:17:14.047 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-13 16:17:14.048 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-13 16:17:14.048 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-13 16:17:14.284 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.307 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.309 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.310 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.311 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.314 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.316 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.318 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.319 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.321 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.321 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.323 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.325 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.326 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.327 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.328 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.332 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.333 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.335 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.337 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.338 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.339 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.340 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:14.340 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:17:15.580 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:15.595 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:15.598 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:15.601 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:15.604 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:15.605 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:15.608 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:15.971 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-13 16:17:16.025 +08:00 [INF] Initialized all ABP modules. -2023-12-13 16:17:16.133 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-13 16:17:16.133 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-13 16:17:16.133 +08:00 [INF] Hosting environment: Development -2023-12-13 16:17:16.133 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-13 16:17:21.205 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:21.243 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:17:21.338 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:17:21.342 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:17:21.361 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:17:21.410 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 163.5192ms -2023-12-13 16:17:21.410 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:21.427 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:21", - "ExecutionDuration": 210, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:17:21", - "ExecutionDuration": 47, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:23.132 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:17:23.132 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:17:23.133 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:23.135 +08:00 [INF] Route matched with {action = "PostLogin", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Object] PostLoginAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Account.LoginInputVo) on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:17:23.257 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE (( `UserName` = N'cc' ) AND ( `State` = 1 )) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-13 16:17:23.275 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:23.298 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:17:23.303 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:23.436 +08:00 [INF] Executing ObjectResult, writing value of type '<>f__AnonymousType0`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'. -2023-12-13 16:17:23.438 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application) in 302.3052ms -2023-12-13 16:17:23.438 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:23.438 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 305, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/login", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLoginAsync", - "Parameters": "{\"input\":{\"userName\":\"cc\",\"password\":\"123456\",\"uuid\":\"\",\"code\":\"\"}}", - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 195, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:23.447 +08:00 [INF] 用户【36532e8b-109b-c6dd-fa9e-3a0f5fe48619:cc】登入系统 -2023-12-13 16:17:23.470 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:23.472 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:17:23.472 +08:00 [DBG] Yi-SQL执行:INSERT INTO `LoginLog` - (`Id`,`CreationTime`,`LoginUser`,`LoginLocation`,`LoginIp`,`Browser`,`Os`,`LogMsg`,`CreatorId`) - VALUES - (N'f44ed2e7-aeff-45b1-2643-3a0f746d5802','2023-12-13 16:17:23.461',N'cc',N'本地-本机',N'127.0.0.1',N'Other',N'Windows 10',N'cc登录系统',null) ; -2023-12-13 16:17:23.474 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:23.477 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:17:23.632 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:23.633 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:17:23.641 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 168.6856ms -2023-12-13 16:17:23.641 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:23.641 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 171, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 160, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:23.649 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:23.649 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:17:23.651 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:23.653 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:17:23.654 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:23.654 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:17:23.655 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 5.0831ms -2023-12-13 16:17:23.655 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:23.655 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:23.974 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:17:23.974 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:17:23.997 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:23'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:23.997 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:23'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:23.997 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:23'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:23.998 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:23'. -2023-12-13 16:17:23.998 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:23'. -2023-12-13 16:17:23.998 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:23'. -2023-12-13 16:17:23.998 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:23.998 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:23.998 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:24.000 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:24.000 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:24.020 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:24.036 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:17:24.041 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:17:24.042 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:17:24.044 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:17:24.046 +08:00 [DBG] Yi-SQL执行:INSERT INTO `AccessLog` - (`Id`,`Number`,`LastModificationTime`,`CreationTime`) - VALUES - (N'947fd485-3518-1852-96fd-3a0f746d5a4e',0,null,'2023-12-13 16:17:24.046') ; -2023-12-13 16:17:24.048 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 47.4771ms -2023-12-13 16:17:24.048 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:24.048 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 49, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:17:24", - "ExecutionDuration": 28, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:24.049 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:17:24.051 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 51.0877ms -2023-12-13 16:17:24.051 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:24.052 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 53, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:17:24", - "ExecutionDuration": 30, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:24.055 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:17:24.059 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 39.0192ms -2023-12-13 16:17:24.059 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:24.059 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:23", - "ExecutionDuration": 61, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:17:24", - "ExecutionDuration": 18, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:24.107 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:24'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:24.107 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:24'. -2023-12-13 16:17:24.107 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:24.112 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:24.417 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- -{ - "code": null, - "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", - "details": null, - "data": {}, - "validationErrors": null -} - -2023-12-13 16:17:24.418 +08:00 [ERR] 中文提示 : 表达式错误 value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id 表达式中出现了空引用 检查参数是否为null -English Message : Expression error value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id expression, An empty reference appears in the expression to check if the parameter is null -SqlSugar.SqlSugarException: 中文提示 : 表达式错误 value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id 表达式中出现了空引用 检查参数是否为null -English Message : Expression error value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id expression, An empty reference appears in the expression to check if the parameter is null - at SqlSugar.Check.ExceptionEasy(String enMessage, String cnMessage) - at SqlSugar.ExpressionTool.GetMemberValue(MemberInfo member, Expression expression) - at SqlSugar.MemberExpressionResolve.ResolveMemberValue(ExpressionParameter parameter, ExpressionParameter baseParameter, Nullable`1 isLeft, Boolean isSetTempData, MemberExpression expression) - at SqlSugar.MemberExpressionResolve.ResolveMemberValue(ExpressionParameter parameter, ExpressionParameter baseParameter, MemberExpression expression, Nullable`1 isLeft, Boolean isSetTempData) - at SqlSugar.MemberExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.BinaryExpressionResolve.Right(ExpressionParameter parameter, String operatorValue, Boolean isEqual, Expression rightExpression, Boolean lsbs) - at SqlSugar.BinaryExpressionResolve.DefaultBinary(ExpressionParameter parameter, BinaryExpression expression, String operatorValue) - at SqlSugar.BinaryExpressionResolve.Other(ExpressionParameter parameter) - at SqlSugar.BinaryExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.BinaryExpressionResolve.Left(BinaryExpression expression, Expression leftExpression) - at SqlSugar.BinaryExpressionResolve.DefaultBinary(ExpressionParameter parameter, BinaryExpression expression, String operatorValue) - at SqlSugar.BinaryExpressionResolve.Other(ExpressionParameter parameter) - at SqlSugar.BinaryExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.LambdaExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.ExpressionContext.Resolve(Expression expression, ResolveExpressType resolveType) - at SqlSugar.SubTools.GetMethodValue(ExpressionContext context, Expression item, ResolveExpressType type) - at SqlSugar.SubWhere.GetValue(Expression expression) - at SqlSugar.SubResolve.<>c__DisplayClass10_0.b__6(ISubOperation it) - at System.Linq.Enumerable.SelectListIterator`2.Fill(ReadOnlySpan`1 source, Span`1 destination, Func`2 func) - at System.Linq.Enumerable.SelectListIterator`2.ToList() - at SqlSugar.SubResolve.GetSubItems() - at SqlSugar.SubResolve.GetSql() - at SqlSugar.MethodCallExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.BaseResolve.ResloveBoolMethod(ExpressionParameter parameter, Expression item, String asName) - at SqlSugar.BaseResolve.ResolveNewExpressions(ExpressionParameter parameter, Expression item, String asName) - at SqlSugar.MemberInitExpressionResolve.Select(MemberInitExpression expression, ExpressionParameter parameter, Boolean isSingle) - at SqlSugar.MemberInitExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.LambdaExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.ExpressionContext.Resolve(Expression expression, ResolveExpressType resolveType) - at SqlSugar.QueryBuilder.GetExpressionValue(Expression expression, ResolveExpressType resolveType) - at SqlSugar.QueryBuilder.GetSelectValueByExpression() - at SqlSugar.SqliteQueryBuilder.get_GetSelectValue() - at SqlSugar.QueryableProvider`2.Select[TResult](Expression`1 expression, Boolean isAutoFill) - at Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync(DiscussGetListInputVo input) in E:\code\csharp\Yi\Yi.Abp.Net8\module\bbs\Yi.Framework.Bbs.Application\Services\DiscussService.cs:line 77 - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at lambda_method1376(Closure, Object) - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) -2023-12-13 16:17:24.422 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. -2023-12-13 16:17:24.426 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 313.9118ms -2023-12-13 16:17:24.426 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:24.430 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:24", - "ExecutionDuration": 319, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 500, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:17:24", - "ExecutionDuration": 272, - "ExtraProperties": {} - } - ], - "Exceptions": [ - { - "InnerException": null, - "StackTrace": null, - "Source": null, - "Sql": null, - "Parametres": null, - "Message": "中文提示 : 表达式错误 value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id 表达式中出现了空引用 检查参数是否为null \r\nEnglish Message : Expression error value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id expression, An empty reference appears in the expression to check if the parameter is null ", - "Data": {}, - "HelpLink": null, - "HResult": -2146233088 - } - ], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:29.687 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:29.688 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:17:29.696 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:17:29.697 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:17:29.697 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:17:29.698 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 9.3468ms -2023-12-13 16:17:29.698 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:29.703 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:29", - "ExecutionDuration": 11, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:17:29", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:29.707 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:29.708 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:17:29.719 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:29.721 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:17:29.722 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:17:29.723 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:17:29.723 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 15.3008ms -2023-12-13 16:17:29.723 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:17:29.723 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:29", - "ExecutionDuration": 16, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:17:29", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:30.645 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:17:30.645 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:17:30.656 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:30.656 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:30.656 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:30.656 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. -2023-12-13 16:17:30.656 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. -2023-12-13 16:17:30.656 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. -2023-12-13 16:17:30.656 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.656 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.656 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.656 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:30.656 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:30.656 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:30.659 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:17:30.659 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:17:30.660 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:17:30.660 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:17:30.660 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 3.6747ms -2023-12-13 16:17:30.660 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.660 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:17:30.660 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 4, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:30.662 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:17:30.662 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 5.5288ms -2023-12-13 16:17:30.662 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.662 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:30.684 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:17:30.686 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 29.371ms -2023-12-13 16:17:30.686 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.686 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 30, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 29, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:17:30.702 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:17:30.702 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:17:30'. -2023-12-13 16:17:30.703 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.703 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:17:30.789 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- -{ - "code": null, - "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", - "details": null, - "data": {}, - "validationErrors": null -} - -2023-12-13 16:17:30.789 +08:00 [ERR] 中文提示 : 表达式错误 value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id 表达式中出现了空引用 检查参数是否为null -English Message : Expression error value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id expression, An empty reference appears in the expression to check if the parameter is null -SqlSugar.SqlSugarException: 中文提示 : 表达式错误 value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id 表达式中出现了空引用 检查参数是否为null -English Message : Expression error value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id expression, An empty reference appears in the expression to check if the parameter is null - at SqlSugar.Check.ExceptionEasy(String enMessage, String cnMessage) - at SqlSugar.ExpressionTool.GetMemberValue(MemberInfo member, Expression expression) - at SqlSugar.MemberExpressionResolve.ResolveMemberValue(ExpressionParameter parameter, ExpressionParameter baseParameter, Nullable`1 isLeft, Boolean isSetTempData, MemberExpression expression) - at SqlSugar.MemberExpressionResolve.ResolveMemberValue(ExpressionParameter parameter, ExpressionParameter baseParameter, MemberExpression expression, Nullable`1 isLeft, Boolean isSetTempData) - at SqlSugar.MemberExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.BinaryExpressionResolve.Right(ExpressionParameter parameter, String operatorValue, Boolean isEqual, Expression rightExpression, Boolean lsbs) - at SqlSugar.BinaryExpressionResolve.DefaultBinary(ExpressionParameter parameter, BinaryExpression expression, String operatorValue) - at SqlSugar.BinaryExpressionResolve.Other(ExpressionParameter parameter) - at SqlSugar.BinaryExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.BinaryExpressionResolve.Left(BinaryExpression expression, Expression leftExpression) - at SqlSugar.BinaryExpressionResolve.DefaultBinary(ExpressionParameter parameter, BinaryExpression expression, String operatorValue) - at SqlSugar.BinaryExpressionResolve.Other(ExpressionParameter parameter) - at SqlSugar.BinaryExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.LambdaExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.ExpressionContext.Resolve(Expression expression, ResolveExpressType resolveType) - at SqlSugar.SubTools.GetMethodValue(ExpressionContext context, Expression item, ResolveExpressType type) - at SqlSugar.SubWhere.GetValue(Expression expression) - at SqlSugar.SubResolve.<>c__DisplayClass10_0.b__6(ISubOperation it) - at System.Linq.Enumerable.SelectListIterator`2.Fill(ReadOnlySpan`1 source, Span`1 destination, Func`2 func) - at System.Linq.Enumerable.SelectListIterator`2.ToList() - at SqlSugar.SubResolve.GetSubItems() - at SqlSugar.SubResolve.GetSql() - at SqlSugar.MethodCallExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.BaseResolve.ResloveBoolMethod(ExpressionParameter parameter, Expression item, String asName) - at SqlSugar.BaseResolve.ResolveNewExpressions(ExpressionParameter parameter, Expression item, String asName) - at SqlSugar.MemberInitExpressionResolve.Select(MemberInitExpression expression, ExpressionParameter parameter, Boolean isSingle) - at SqlSugar.MemberInitExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.LambdaExpressionResolve..ctor(ExpressionParameter parameter) - at SqlSugar.BaseResolve.Start() - at SqlSugar.ExpressionContext.Resolve(Expression expression, ResolveExpressType resolveType) - at SqlSugar.QueryBuilder.GetExpressionValue(Expression expression, ResolveExpressType resolveType) - at SqlSugar.QueryBuilder.GetSelectValueByExpression() - at SqlSugar.SqliteQueryBuilder.get_GetSelectValue() - at SqlSugar.QueryableProvider`2.Select[TResult](Expression`1 expression, Boolean isAutoFill) - at Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync(DiscussGetListInputVo input) in E:\code\csharp\Yi\Yi.Abp.Net8\module\bbs\Yi.Framework.Bbs.Application\Services\DiscussService.cs:line 77 - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at lambda_method1376(Closure, Object) - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) -2023-12-13 16:17:30.789 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. -2023-12-13 16:17:30.789 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 86.3236ms -2023-12-13 16:17:30.789 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:17:30.790 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 87, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 500, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:17:30", - "ExecutionDuration": 85, - "ExtraProperties": {} - } - ], - "Exceptions": [ - { - "InnerException": null, - "StackTrace": null, - "Source": null, - "Sql": null, - "Parametres": null, - "Message": "中文提示 : 表达式错误 value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id 表达式中出现了空引用 检查参数是否为null \r\nEnglish Message : Expression error value(Castle.Proxies.DiscussServiceProxy).CurrentUser.Id expression, An empty reference appears in the expression to check if the parameter is null ", - "Data": {}, - "HelpLink": null, - "HResult": -2146233088 - } - ], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:25:28.117 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-13 16:25:31.010 +08:00 [INF] Loaded ABP modules: -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-13 16:25:31.011 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-13 16:25:31.011 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-13 16:25:31.214 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.237 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.238 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.239 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.241 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.243 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.245 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.246 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.247 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.248 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.249 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.251 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.251 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.252 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.253 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.253 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.256 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.257 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.259 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.260 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.261 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.261 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.262 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.263 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:25:31.395 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:31.409 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:31.411 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:31.414 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:31.416 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:31.418 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:31.420 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:31.731 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-13 16:25:31.778 +08:00 [INF] Initialized all ABP modules. -2023-12-13 16:25:31.863 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-13 16:25:31.864 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-13 16:25:31.864 +08:00 [INF] Hosting environment: Development -2023-12-13 16:25:31.864 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-13 16:25:43.384 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:25:43.384 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:25:43.412 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:25:43.423 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:25:43.544 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:43.555 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:25:43.557 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:25:43.576 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:25:43.589 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:25:43.598 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:25:43.629 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 203.0409ms -2023-12-13 16:25:43.630 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:25:43.660 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:25:43", - "ExecutionDuration": 255, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:25:43", - "ExecutionDuration": 62, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:25:43.696 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:25:43.714 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 301.8134ms -2023-12-13 16:25:43.715 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:25:43.716 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:25:43", - "ExecutionDuration": 338, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:25:43", - "ExecutionDuration": 181, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:25:44.078 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:25:44.079 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:25:44.085 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:25:44.086 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. -2023-12-13 16:25:44.097 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.107 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:25:44.107 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:25:44.107 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. -2023-12-13 16:25:44.107 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. -2023-12-13 16:25:44.108 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.108 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.108 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:25:44.112 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:25:44.115 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:25:44.119 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:25:44.121 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:25:44.134 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:25:44.135 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:25:44.137 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:25:44.140 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 27.3276ms -2023-12-13 16:25:44.140 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.140 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 31, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 24, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:25:44.155 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:25:44.161 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 45.9938ms -2023-12-13 16:25:44.161 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.162 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 53, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 29, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:25:44.176 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:25:44.180 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 71.4888ms -2023-12-13 16:25:44.180 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.180 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 84, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 69, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:25:44.193 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:25:44.193 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. -2023-12-13 16:25:44.194 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.204 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:25:44.305 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:25:44.307 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:25:44.309 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:25:44.314 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 110.1594ms -2023-12-13 16:25:44.314 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.315 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 120, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:25:44", - "ExecutionDuration": 79, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:25:44.322 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:25:44.322 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:25:44'. -2023-12-13 16:25:44.323 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:25:44.328 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-13 16:26:09.913 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-13 16:26:12.469 +08:00 [INF] Loaded ABP modules: -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-13 16:26:12.469 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-13 16:26:12.469 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-13 16:26:12.470 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-13 16:26:12.470 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-13 16:26:12.630 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.650 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.653 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.656 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.658 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.661 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.663 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.664 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.664 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.666 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.667 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.669 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.669 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.670 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.671 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.671 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.675 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.676 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.677 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.679 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.680 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.681 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.682 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.682 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:26:12.811 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:12.822 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:12.823 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:12.826 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:12.828 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:12.830 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:12.832 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:13.073 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-13 16:26:13.133 +08:00 [INF] Initialized all ABP modules. -2023-12-13 16:26:13.203 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-13 16:26:13.203 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-13 16:26:13.203 +08:00 [INF] Hosting environment: Development -2023-12-13 16:26:13.203 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-13 16:26:18.471 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:26:18.471 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:26:18.491 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:26:18.498 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:26:18.580 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:18.594 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:26:18.596 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:26:18.608 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:26:18.613 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:26:18.619 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:26:18.639 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 139.5567ms -2023-12-13 16:26:18.640 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:26:18.655 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:26:18", - "ExecutionDuration": 175, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:26:18", - "ExecutionDuration": 31, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:26:18.675 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:26:18.686 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 194.0487ms -2023-12-13 16:26:18.686 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:26:18.687 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:26:18", - "ExecutionDuration": 220, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:26:18", - "ExecutionDuration": 118, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:26:19.111 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:26:19.111 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:26:19.112 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:26:19.112 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. -2023-12-13 16:26:19.112 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. -2023-12-13 16:26:19.112 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:26:19.390 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:26:19.390 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. -2023-12-13 16:26:19.390 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.390 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.391 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.396 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:26:19.396 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:26:19.396 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:26:19.401 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:26:19.402 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:26:19.405 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:26:19.406 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:26:19.410 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:26:19.412 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 15.8244ms -2023-12-13 16:26:19.412 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.412 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 22, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 13, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:26:19.419 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:26:19.422 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 25.1018ms -2023-12-13 16:26:19.422 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.422 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 32, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 18, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:26:19.432 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:26:19.433 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 37.492ms -2023-12-13 16:26:19.433 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.433 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 42, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 36, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:26:19.451 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:26:19.451 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. -2023-12-13 16:26:19.452 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.456 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:26:19.508 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:26:19.510 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:26:19.512 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:26:19.514 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 57.7068ms -2023-12-13 16:26:19.514 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.514 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 62, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:26:19", - "ExecutionDuration": 42, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:26:19.521 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:26:19.521 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:26:19'. -2023-12-13 16:26:19.522 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:26:19.524 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:37.320 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-13 16:27:40.037 +08:00 [INF] Loaded ABP modules: -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-13 16:27:40.037 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-13 16:27:40.037 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-13 16:27:40.038 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-13 16:27:40.038 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-13 16:27:40.038 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-13 16:27:40.038 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-13 16:27:40.038 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-13 16:27:40.038 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-13 16:27:40.038 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-13 16:27:40.211 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.231 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.233 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.234 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.236 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.240 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.243 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.245 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.245 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.247 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.248 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.251 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.252 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.252 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.254 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.254 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.258 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.260 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.262 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.264 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.265 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.266 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.267 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.268 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:27:40.396 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:40.408 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:40.410 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:40.412 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:40.415 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:40.416 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:40.418 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:40.679 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-13 16:27:40.731 +08:00 [INF] Initialized all ABP modules. -2023-12-13 16:27:40.808 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-13 16:27:40.808 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-13 16:27:40.808 +08:00 [INF] Hosting environment: Development -2023-12-13 16:27:40.808 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-13 16:27:45.898 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:45.898 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:45.913 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:27:45.918 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:27:46.019 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:46.024 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:27:46.026 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:27:46.037 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:46.047 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:27:46.052 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:46.149 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 229.7072ms -2023-12-13 16:27:46.149 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:46.163 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:45", - "ExecutionDuration": 256, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:45", - "ExecutionDuration": 37, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:46.187 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:27:46.198 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 285.4074ms -2023-12-13 16:27:46.198 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:46.199 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:45", - "ExecutionDuration": 304, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:27:45", - "ExecutionDuration": 191, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:46.608 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:27:46.608 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:27:46.611 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:46'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:46.611 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:46'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:46.611 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:46'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:46.612 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:46'. -2023-12-13 16:27:46.612 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:46'. -2023-12-13 16:27:46.612 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:46'. -2023-12-13 16:27:47.990 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:47.990 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:47.990 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.000 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:48.000 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:48.001 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:48.007 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:27:48.009 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:27:48.018 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:27:48.019 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:27:48.021 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:27:48.024 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 23.9098ms -2023-12-13 16:27:48.024 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.024 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:47", - "ExecutionDuration": 34, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:27:48", - "ExecutionDuration": 20, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:48.035 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:48.039 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 37.5493ms -2023-12-13 16:27:48.039 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.039 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:47", - "ExecutionDuration": 49, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:48", - "ExecutionDuration": 24, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:48.055 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:27:48.058 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 57.9099ms -2023-12-13 16:27:48.058 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.058 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:47", - "ExecutionDuration": 71, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:27:48", - "ExecutionDuration": 56, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:48.080 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:48'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:48.080 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:48'. -2023-12-13 16:27:48.081 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.090 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:48.188 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:27:48.190 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:27:48.192 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:48.196 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 105.4394ms -2023-12-13 16:27:48.196 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.196 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:48", - "ExecutionDuration": 115, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:48", - "ExecutionDuration": 74, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:48.205 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:48'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:48.205 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:48'. -2023-12-13 16:27:48.206 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.211 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:48.222 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:27:48.223 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Banner` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:27:48.227 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:48.230 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application) in 18.716ms -2023-12-13 16:27:48.230 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:48.230 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:48", - "ExecutionDuration": 24, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/banner", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.BannerService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:48", - "ExecutionDuration": 9, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:51.255 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:51.255 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:51.255 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:27:51.255 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:27:51.258 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:51.258 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:27:51.261 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:27:51.262 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:27:51.263 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:27:51.264 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:51.264 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 8.8565ms -2023-12-13 16:27:51.264 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:51.265 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:27:51.265 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:51", - "ExecutionDuration": 10, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:51", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:51.265 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 9.5273ms -2023-12-13 16:27:51.265 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:27:51.265 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:51", - "ExecutionDuration": 10, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:27:51", - "ExecutionDuration": 8, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:51.970 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:27:51.970 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:27:51.971 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:51'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:51.971 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:51'. -2023-12-13 16:27:51.972 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:51.973 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:51.975 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:27:51.978 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:27:51.980 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 7.6966ms -2023-12-13 16:27:51.980 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:51.981 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:51", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:27:51", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:52.005 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:52.005 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. -2023-12-13 16:27:52.006 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.006 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:52.007 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:27:52.008 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:27:52.009 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 2.3824ms -2023-12-13 16:27:52.009 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.009 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 3, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 1, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:52.042 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:52.042 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. -2023-12-13 16:27:52.043 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.043 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:52.047 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:27:52.049 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:27:52.051 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:52.052 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 8.5163ms -2023-12-13 16:27:52.052 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.052 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 9, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:52.139 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:52.139 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. -2023-12-13 16:27:52.140 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.140 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:52.150 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:27:52.151 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:27:52.152 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:52.153 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 12.4201ms -2023-12-13 16:27:52.153 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.153 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 13, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 10, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:52.171 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:52.171 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:52'. -2023-12-13 16:27:52.172 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.172 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:52.178 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:27:52.179 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Banner` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:27:52.180 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:52.181 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application) in 8.545ms -2023-12-13 16:27:52.181 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:52.181 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 9, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/banner", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.BannerService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:52", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:53.848 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:53'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:53.848 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:53'. -2023-12-13 16:27:53.848 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:53.849 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:53.855 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:27:53.856 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:27:53.857 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:53.857 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 8.1409ms -2023-12-13 16:27:53.857 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:53.857 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:53", - "ExecutionDuration": 9, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:53", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:27:53.869 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:53'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:27:53.870 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:27:53'. -2023-12-13 16:27:53.870 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:53.870 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:27:53.874 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:27:53.874 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:27:53.875 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:27:53.875 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 4.8822ms -2023-12-13 16:27:53.875 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:27:53.875 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:27:53", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:27:53", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:04.470 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:04.470 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. -2023-12-13 16:28:04.471 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.471 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:04.476 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:04.477 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`AgreeNum` DESC LIMIT 0,10 -2023-12-13 16:28:04.478 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:04.478 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.9368ms -2023-12-13 16:28:04.478 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.478 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":1,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:04.489 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:04.489 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. -2023-12-13 16:28:04.490 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.490 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:04.494 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:04.495 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:04.496 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:04.496 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.0845ms -2023-12-13 16:28:04.496 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.496 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:04.707 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:04.707 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. -2023-12-13 16:28:04.708 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.708 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:04.714 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:04.714 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`SeeNum` DESC LIMIT 0,10 -2023-12-13 16:28:04.715 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:04.716 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 7.7483ms -2023-12-13 16:28:04.716 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.716 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":2,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:04.730 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:04.730 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:04'. -2023-12-13 16:28:04.730 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.730 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:04.734 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:04.735 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:04.736 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:04.736 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 5.5035ms -2023-12-13 16:28:04.736 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:04.736 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:04", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:05.014 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:05.014 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. -2023-12-13 16:28:05.015 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.015 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:05.018 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:05.019 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`AgreeNum` DESC LIMIT 0,10 -2023-12-13 16:28:05.020 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:05.020 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 5.2133ms -2023-12-13 16:28:05.020 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.020 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":1,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:05.030 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:05.030 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. -2023-12-13 16:28:05.031 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.031 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:05.034 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:05.035 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:05.036 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:05.036 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 4.9766ms -2023-12-13 16:28:05.036 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.036 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:05.301 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:05.301 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. -2023-12-13 16:28:05.301 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.301 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:05.305 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:05.306 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:05.307 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:05.307 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 5.4561ms -2023-12-13 16:28:05.307 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.307 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:05.320 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:05.320 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. -2023-12-13 16:28:05.321 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.321 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:05.325 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:05.325 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:05.326 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:05.327 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 5.5544ms -2023-12-13 16:28:05.327 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.327 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:05.734 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:05.734 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. -2023-12-13 16:28:05.734 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.734 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:05.738 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:05.739 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`AgreeNum` DESC LIMIT 0,10 -2023-12-13 16:28:05.740 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:05.740 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 5.5087ms -2023-12-13 16:28:05.740 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.740 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":1,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:05.751 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:05.751 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:05'. -2023-12-13 16:28:05.751 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.751 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:05.755 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:05.756 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:05.756 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:05.757 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 5.1321ms -2023-12-13 16:28:05.757 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:05.757 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:05", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:10.337 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:10'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:10.337 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:10'. -2023-12-13 16:28:10.337 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:10.338 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:10.342 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:10.343 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:10.343 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:10.344 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.1061ms -2023-12-13 16:28:10.344 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:10.344 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:10", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:10", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:10.355 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:10'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:10.355 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:10'. -2023-12-13 16:28:10.356 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:10.356 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:10.359 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:10.360 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:10.361 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:10.362 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 5.6657ms -2023-12-13 16:28:10.362 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:10.362 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:10", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:10", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:21.273 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:28:21.273 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:28:21.275 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:28:21.276 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:28:21.277 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:21.277 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 3.5683ms -2023-12-13 16:28:21.277 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:28:21.277 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:21", - "ExecutionDuration": 4, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:21", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:21.593 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:28:21.594 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:28:21.596 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:28:21.597 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:28:21.600 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:28:21.601 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:28:21.601 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 7.3101ms -2023-12-13 16:28:21.601 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:28:21.601 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:21", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:28:21", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:22.038 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:22'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:22.038 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:22'. -2023-12-13 16:28:22.038 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:22.038 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:22.043 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:22.044 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:22.045 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:22.045 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.3758ms -2023-12-13 16:28:22.045 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:22.045 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:22", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:22", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:22.077 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:22'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:22.077 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:22'. -2023-12-13 16:28:22.078 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:22.079 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:22.083 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:22.084 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:22.085 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:22.085 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.3847ms -2023-12-13 16:28:22.085 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:22.085 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:22", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:22", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:25.390 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:25'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:25.390 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:25'. -2023-12-13 16:28:25.391 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:25.391 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:25.396 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:25.397 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:25.398 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:25.398 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.9846ms -2023-12-13 16:28:25.398 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:25.398 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:25", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:25", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:25.412 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:25'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:25.412 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:25'. -2023-12-13 16:28:25.413 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:25.413 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:25.417 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:25.418 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:25.419 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:25.419 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.5079ms -2023-12-13 16:28:25.419 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:25.420 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:25", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:25", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:28.440 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:28.440 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. -2023-12-13 16:28:28.441 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.441 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:28.442 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:28:28.443 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:28:28.443 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 1.9939ms -2023-12-13 16:28:28.443 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.444 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 2, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 1, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:28.509 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:28:28.509 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:28:28.510 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:28.510 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:28.510 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. -2023-12-13 16:28:28.510 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. -2023-12-13 16:28:28.511 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.511 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.511 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:28.511 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:28.513 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:28:28.514 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:28:28.514 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:28:28.515 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:28.515 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:28:28.515 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 4.0265ms -2023-12-13 16:28:28.515 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.516 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 4, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:28.517 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 5.5175ms -2023-12-13 16:28:28.517 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.517 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:28.586 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:28.586 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. -2023-12-13 16:28:28.587 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.587 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:28.592 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:28:28.593 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:28:28.594 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:28.594 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 7.1233ms -2023-12-13 16:28:28.594 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.595 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:28.605 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:28.605 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:28'. -2023-12-13 16:28:28.605 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.605 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-13 16:28:28.607 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:28:28.607 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Banner` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:28:28.608 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:28:28.608 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application) in 2.6389ms -2023-12-13 16:28:28.608 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:28.608 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 3, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/banner", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.BannerService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:28", - "ExecutionDuration": 2, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:28:54.277 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:54'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:28:54.277 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:28:54'. -2023-12-13 16:28:54.278 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:28:54.278 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:29:01.754 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-13 16:29:01.755 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE 1=1 )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-13 16:29:01.755 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:29:01.755 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 7477.4053ms -2023-12-13 16:29:01.755 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:29:01.756 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:28:54", - "ExecutionDuration": 7478, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:28:54", - "ExecutionDuration": 7476, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:29:01.769 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:29:01'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:29:01.769 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:29:01'. -2023-12-13 16:29:01.769 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:29:01.769 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-13 16:30:18.049 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-13 16:30:20.678 +08:00 [INF] Loaded ABP modules: -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-13 16:30:20.678 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-13 16:30:20.678 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-13 16:30:20.867 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.891 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.892 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.893 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.895 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.897 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.899 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.900 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.901 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.902 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.903 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.905 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.906 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.906 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.907 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.908 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.911 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.912 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.914 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.916 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.916 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.917 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.918 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:20.918 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-13 16:30:21.038 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:30:21.050 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:30:21.052 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:30:21.054 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:30:21.057 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:30:21.058 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:30:21.060 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-13 16:30:21.326 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-13 16:30:21.373 +08:00 [INF] Initialized all ABP modules. -2023-12-13 16:30:21.446 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-13 16:30:21.446 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-13 16:30:21.446 +08:00 [INF] Hosting environment: Development -2023-12-13 16:30:21.446 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-13 16:31:33.245 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:33.245 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:33.284 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:31:33.289 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-13 16:31:33.424 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:33.433 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:31:33.435 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:31:33.455 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:31:33.473 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:31:33.483 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:33.505 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 212.9098ms -2023-12-13 16:31:33.505 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:33.533 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:33", - "ExecutionDuration": 282, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:31:33", - "ExecutionDuration": 66, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:33.579 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:31:33.595 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 310.0017ms -2023-12-13 16:31:33.595 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:33.597 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:33", - "ExecutionDuration": 370, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:31:33", - "ExecutionDuration": 178, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:33.826 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:33'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:31:33.827 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:33'. -2023-12-13 16:31:33.836 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 16:31:33.849 +08:00 [INF] AuthenticationScheme: Bearer was challenged. -2023-12-13 16:31:46.823 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:31:46.823 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:31:46.825 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:46'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:31:46.825 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:46'. -2023-12-13 16:31:46.826 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:46.829 +08:00 [INF] Route matched with {action = "PostLogout", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Boolean] PostLogout() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:31:46.831 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Boolean'. -2023-12-13 16:31:46.831 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application) in 2.0982ms -2023-12-13 16:31:46.831 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:46.832 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:46", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/logout", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLogout", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:31:46", - "ExecutionDuration": 0, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:48.261 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:31:48.261 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:31:48.262 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:48.265 +08:00 [INF] Route matched with {action = "PostLogin", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Object] PostLoginAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Account.LoginInputVo) on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:31:48.300 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE (( `UserName` = N'cc' ) AND ( `State` = 1 )) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-13 16:31:48.304 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:48.307 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:31:48.308 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:48.392 +08:00 [INF] Executing ObjectResult, writing value of type '<>f__AnonymousType0`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'. -2023-12-13 16:31:48.394 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application) in 128.9105ms -2023-12-13 16:31:48.394 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:48.395 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 133, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/login", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLoginAsync", - "Parameters": "{\"input\":{\"userName\":\"cc\",\"password\":\"123456\",\"uuid\":\"\",\"code\":\"\"}}", - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 103, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:48.403 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:48.404 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:31:48.405 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:48.407 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:31:48.410 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:48.411 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:31:48.411 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 7.4088ms -2023-12-13 16:31:48.411 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:48.412 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:48.417 +08:00 [INF] 用户【36532e8b-109b-c6dd-fa9e-3a0f5fe48619:cc】登入系统 -2023-12-13 16:31:48.421 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:48.421 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:31:48.423 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:48.424 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:31:48.428 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:31:48.429 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:31:48.429 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 7.9379ms -2023-12-13 16:31:48.429 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:31:48.429 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:48.482 +08:00 [DBG] Yi-SQL执行:INSERT INTO `LoginLog` - (`Id`,`CreationTime`,`LoginUser`,`LoginLocation`,`LoginIp`,`Browser`,`Os`,`LogMsg`,`CreatorId`) - VALUES - (N'42118ce7-6fa3-ab02-31bc-3a0f747a8adb','2023-12-13 16:31:48.450',N'cc',N'本地-本机',N'127.0.0.1',N'Other',N'Windows 10',N'cc登录系统',null) ; -2023-12-13 16:31:48.689 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:31:48.689 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:31:48.690 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:31:48.690 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:31:48.690 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. -2023-12-13 16:31:48.690 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. -2023-12-13 16:31:48.691 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:31:48.691 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:31:48.696 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:31:48.696 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:31:48.705 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:31:48.712 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:31:48.712 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. -2023-12-13 16:31:48.713 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:31:48.717 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:31:48.719 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:31:48.739 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:31:48.740 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:31:48.741 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:31:48.743 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 46.5703ms -2023-12-13 16:31:48.743 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:31:48.743 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 53, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 42, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:48.756 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:31:48.758 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:31:48.758 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 61.5922ms -2023-12-13 16:31:48.758 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:31:48.758 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 68, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 59, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:48.764 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 46.65ms -2023-12-13 16:31:48.764 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:31:48.765 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 51, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:31:48", - "ExecutionDuration": 27, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:31:48.820 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:31:48.820 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:31:48'. -2023-12-13 16:31:48.820 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 16:31:48.820 +08:00 [INF] AuthenticationScheme: Bearer was challenged. -2023-12-13 16:32:58.000 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:32:58.000 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:32:58.000 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:32:58'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:32:58.001 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:32:58'. -2023-12-13 16:32:58.001 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application)' -2023-12-13 16:32:58.001 +08:00 [INF] Route matched with {action = "PostLogout", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Boolean] PostLogout() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:32:58.002 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Boolean'. -2023-12-13 16:32:58.003 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application) in 1.1494ms -2023-12-13 16:32:58.003 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLogout (Yi.Framework.Rbac.Application)' -2023-12-13 16:32:58.003 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:32:58", - "ExecutionDuration": 2, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/logout", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLogout", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:32:58", - "ExecutionDuration": 0, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:32:59.929 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:32:59.929 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:32:59.930 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:32:59.930 +08:00 [INF] Route matched with {action = "PostLogin", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Object] PostLoginAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Account.LoginInputVo) on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:32:59.934 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE (( `UserName` = N'cc' ) AND ( `State` = 1 )) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-13 16:32:59.934 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:32:59.936 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:32:59.938 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:33:00.002 +08:00 [INF] Executing ObjectResult, writing value of type '<>f__AnonymousType0`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'. -2023-12-13 16:33:00.003 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application) in 72.5306ms -2023-12-13 16:33:00.003 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-13 16:33:00.003 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:32:59", - "ExecutionDuration": 73, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/login", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLoginAsync", - "Parameters": "{\"input\":{\"userName\":\"cc\",\"password\":\"123456\",\"uuid\":\"\",\"code\":\"\"}}", - "ExecutionTime": "2023-12-13 16:32:59", - "ExecutionDuration": 70, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:33:00.004 +08:00 [INF] 用户【36532e8b-109b-c6dd-fa9e-3a0f5fe48619:cc】登入系统 -2023-12-13 16:33:00.011 +08:00 [DBG] Yi-SQL执行:INSERT INTO `LoginLog` - (`Id`,`CreationTime`,`LoginUser`,`LoginLocation`,`LoginIp`,`Browser`,`Os`,`LogMsg`,`CreatorId`) - VALUES - (N'48cc3386-2692-686c-1243-3a0f747ba268','2023-12-13 16:33:00.010',N'cc',N'本地-本机',N'127.0.0.1',N'Other',N'Windows 10',N'cc登录系统',null) ; -2023-12-13 16:33:00.022 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:33:00.022 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:33:00.024 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:33:00.025 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:33:00.028 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:33:00.029 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:33:00.030 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 7.2894ms -2023-12-13 16:33:00.030 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:33:00.030 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:33:00.041 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:33:00.041 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-13 16:33:00.042 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-13 16:33:00.044 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-13 16:33:00.046 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-13 16:33:00.047 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-13 16:33:00.047 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 6.2732ms -2023-12-13 16:33:00.047 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-13 16:33:00.047 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:33:00.120 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:33:00.120 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. -2023-12-13 16:33:00.121 +08:00 [INF] CORS policy execution failed. -2023-12-13 16:33:00.121 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-13 16:33:00.128 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:33:00.128 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:33:00.128 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. -2023-12-13 16:33:00.128 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:33:00.128 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. -2023-12-13 16:33:00.128 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:33:00.129 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:33:00.129 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:33:00.129 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-13 16:33:00.129 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-13 16:33:00.129 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-13 16:33:00.130 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-13 16:33:00.130 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-13 16:33:00.131 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 2.3143ms -2023-12-13 16:33:00.131 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:33:00.131 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 1, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:33:00.132 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-13 16:33:00.132 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'947fd485-3518-1852-96fd-3a0f746d5a4e' ) -2023-12-13 16:33:00.132 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-13 16:33:00.134 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 4.6276ms -2023-12-13 16:33:00.134 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:33:00.134 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:33:00.134 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-13 16:33:00.135 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 5.6071ms -2023-12-13 16:33:00.135 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-13 16:33:00.135 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-13 16:33:00", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-13 16:33:00.168 +08:00 [INF] Failed to validate the token. -Microsoft.IdentityModel.Tokens.SecurityTokenExpiredException: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. - at Microsoft.IdentityModel.Tokens.Validators.ValidateLifetime(Nullable`1 notBefore, Nullable`1 expires, SecurityToken securityToken, TokenValidationParameters validationParameters) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateTokenPayloadAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) - at Microsoft.IdentityModel.JsonWebTokens.JsonWebTokenHandler.ValidateJWSAsync(JsonWebToken jsonWebToken, TokenValidationParameters validationParameters, BaseConfiguration configuration) -2023-12-13 16:33:00.168 +08:00 [INF] Bearer was not authenticated. Failure message: IDX10223: Lifetime validation failed. The token is expired. ValidTo (UTC): '2023/12/13 6:24:29', Current time (UTC): '2023/12/13 8:33:00'. -2023-12-13 16:33:00.168 +08:00 [INF] Authorization failed. These requirements were not met: -DenyAnonymousAuthorizationRequirement: Requires an authenticated user. -2023-12-13 16:33:00.168 +08:00 [INF] AuthenticationScheme: Bearer was challenged. diff --git a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231214.txt b/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231214.txt deleted file mode 100644 index e2fe4b23..00000000 --- a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231214.txt +++ /dev/null @@ -1,2726 +0,0 @@ -2023-12-14 14:12:27.944 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-14 14:12:32.003 +08:00 [INF] Loaded ABP modules: -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-14 14:12:32.004 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-14 14:12:32.004 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-14 14:12:32.254 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.280 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.282 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.283 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.284 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.287 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.289 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.290 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.291 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.293 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.293 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.296 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.296 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.297 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.299 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.299 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.303 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.304 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.306 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.308 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.309 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.310 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.311 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.311 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:12:32.467 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:12:32.484 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:12:32.487 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:12:32.491 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:12:32.493 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:12:32.496 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:12:32.498 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:12:32.876 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-14 14:12:32.943 +08:00 [INF] Initialized all ABP modules. -2023-12-14 14:12:33.049 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-14 14:12:33.050 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-14 14:12:33.050 +08:00 [INF] Hosting environment: Development -2023-12-14 14:12:33.050 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-14 14:12:57.342 +08:00 [INF] CORS policy execution successful. -2023-12-14 14:12:57.374 +08:00 [INF] Executing endpoint 'Yi.Abp.Application.TestService.HelloWorld (Yi.Abp.Application)' -2023-12-14 14:12:57.395 +08:00 [INF] Route matched with {action = "HelloWorld", controller = "Test", area = ""}. Executing controller action with signature System.String HelloWorld(System.String) on controller Yi.Abp.Application.TestService (Yi.Abp.Application). -2023-12-14 14:12:57.424 +08:00 [INF] Executing ObjectResult, writing value of type 'System.String'. -2023-12-14 14:12:57.453 +08:00 [INF] Executed action Yi.Abp.Application.TestService.HelloWorld (Yi.Abp.Application) in 56.1914ms -2023-12-14 14:12:57.453 +08:00 [INF] Executed endpoint 'Yi.Abp.Application.TestService.HelloWorld (Yi.Abp.Application)' -2023-12-14 14:12:57.475 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:12:57", - "ExecutionDuration": 85, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/test/hello-world", - "Actions": [ - { - "ServiceName": "Yi.Abp.Application.TestService", - "MethodName": "HelloWorld", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:12:57", - "ExecutionDuration": 9, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:13:15.034 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-14 14:13:18.717 +08:00 [INF] Loaded ABP modules: -2023-12-14 14:13:18.717 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-14 14:13:18.717 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-14 14:13:18.717 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-14 14:13:18.717 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-14 14:13:18.717 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-14 14:13:18.717 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-14 14:13:18.718 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-14 14:13:18.718 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-14 14:13:18.957 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.982 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.984 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.985 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.987 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.990 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.992 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.993 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.993 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.996 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.996 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:18.999 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.000 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.001 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.002 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.003 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.007 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.008 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.010 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.012 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.013 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.013 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.014 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.015 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:13:19.182 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:13:19.195 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:13:19.197 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:13:19.201 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:13:19.203 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:13:19.205 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:13:19.208 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:13:19.554 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-14 14:13:19.610 +08:00 [INF] Initialized all ABP modules. -2023-12-14 14:13:19.706 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-14 14:13:19.706 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-14 14:13:19.706 +08:00 [INF] Hosting environment: Development -2023-12-14 14:13:19.706 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-14 14:24:02.607 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-14 14:24:05.914 +08:00 [INF] Loaded ABP modules: -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-14 14:24:05.914 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-14 14:24:05.914 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-14 14:24:05.915 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-14 14:24:05.915 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-14 14:24:06.168 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.197 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.199 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.200 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.202 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.206 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.210 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.212 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.213 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.215 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.216 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.218 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.219 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.219 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.222 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.223 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.228 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.230 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.232 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.235 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.236 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.238 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.241 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.242 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:24:06.415 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.431 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.433 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.437 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.441 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.443 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.446 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.449 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:06.479 +08:00 [DBG] Yi-SQL执行:INSERT INTO `Config` (`Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`) VALUES('445480de-e9fe-bce8-f8ef-3a0f792bfd3c','站点名称','bbs.site.name','意社区',NULL,'0',NULL,0,'2023-12-14 14:24:06.464',NULL,NULL,NULL), ('f3c8dbde-f120-ca99-747b-3a0f792bfd43','站点作者','bbs.site.author','橙子',NULL,'0',NULL,0,'2023-12-14 14:24:06.469',NULL,NULL,NULL), ('f7d24e71-6ca3-c68d-9389-3a0f792bfd45','站点Icp备案','bbs.site.icp','赣ICP备20008025号',NULL,'0',NULL,0,'2023-12-14 14:24:06.469',NULL,NULL,NULL), ('4e7e1daf-131e-17b7-43a1-3a0f792bfd45','站点底部信息','bbs.site.bottom','你好世界',NULL,'0',NULL,0,'2023-12-14 14:24:06.469',NULL,NULL,NULL) ;SELECT LAST_INSERT_ROWID(); - -2023-12-14 14:24:06.890 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-14 14:24:06.986 +08:00 [INF] Initialized all ABP modules. -2023-12-14 14:24:07.184 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-14 14:24:07.184 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-14 14:24:07.184 +08:00 [INF] Hosting environment: Development -2023-12-14 14:24:07.184 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-14 14:24:13.864 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:13.918 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:14.064 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:24:14.070 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:24:14.251 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:24:14.292 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 371.0614ms -2023-12-14 14:24:14.292 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:14.314 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:13", - "ExecutionDuration": 436, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:24:14", - "ExecutionDuration": 220, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:16.588 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:16.589 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:16.594 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:24:16.594 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:24:16.597 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:24:16.598 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 8.8525ms -2023-12-14 14:24:16.598 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:16.598 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:16", - "ExecutionDuration": 10, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:24:16", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:19.531 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:19.532 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:19.534 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:24:19.535 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:24:19.537 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:24:19.538 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 6.0764ms -2023-12-14 14:24:19.538 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:19.539 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:19", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:24:19", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:24.596 +08:00 [INF] CORS policy execution failed. -2023-12-14 14:24:24.597 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-14 14:24:24.598 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:24.601 +08:00 [INF] Route matched with {action = "PostLogin", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Object] PostLoginAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Account.LoginInputVo) on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:24.714 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE (( `UserName` = N'cc' ) AND ( `State` = 1 )) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-14 14:24:24.735 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:24.758 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:24:24.765 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:24.877 +08:00 [INF] Executing ObjectResult, writing value of type '<>f__AnonymousType0`1[[System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]]'. -2023-12-14 14:24:24.880 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application) in 279.5132ms -2023-12-14 14:24:24.881 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.PostLoginAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:24.882 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:24", - "ExecutionDuration": 284, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/account/login", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "PostLoginAsync", - "Parameters": "{\"input\":{\"userName\":\"cc\",\"password\":\"123456\",\"uuid\":\"\",\"code\":\"\"}}", - "ExecutionTime": "2023-12-14 14:24:24", - "ExecutionDuration": 172, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:24.891 +08:00 [INF] 用户【36532e8b-109b-c6dd-fa9e-3a0f5fe48619:cc】登入系统 -2023-12-14 14:24:24.906 +08:00 [DBG] Yi-SQL执行:INSERT INTO `LoginLog` - (`Id`,`CreationTime`,`LoginUser`,`LoginLocation`,`LoginIp`,`Browser`,`Os`,`LogMsg`,`CreatorId`) - VALUES - (N'8d0a4977-1f42-b1f4-f51d-3a0f792c4545','2023-12-14 14:24:24.901',N'cc',N'本地-本机',N'127.0.0.1',N'Other',N'Windows 10',N'cc登录系统',null) ; -2023-12-14 14:24:24.927 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:24.929 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:24.932 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:24.934 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:24:24.936 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:24.938 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-14 14:24:24.948 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 19.0614ms -2023-12-14 14:24:24.949 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:24.949 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:24", - "ExecutionDuration": 22, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:24:24", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:24.958 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:24.958 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:24.960 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:24.961 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:24:24.964 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:24.965 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-14 14:24:24.965 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 6.4029ms -2023-12-14 14:24:24.965 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:24.965 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:24", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:24:24", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:31.723 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:31.723 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:31.726 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:24:31.726 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:24:31.728 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:24:31.728 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 5.0869ms -2023-12-14 14:24:31.729 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:31.729 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:31", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:24:31", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:31.744 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:31.744 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:24:31.749 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:31.751 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:24:31.753 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:24:31.754 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-14 14:24:31.754 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 9.8277ms -2023-12-14 14:24:31.754 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:24:31.754 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:31", - "ExecutionDuration": 10, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:24:31", - "ExecutionDuration": 9, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:32.058 +08:00 [INF] CORS policy execution failed. -2023-12-14 14:24:32.058 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-14 14:24:32.059 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.060 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.062 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-14 14:24:32.062 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-14 14:24:32.078 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-14 14:24:32.083 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:24:32.084 +08:00 [DBG] Yi-SQL执行:INSERT INTO `AccessLog` - (`Id`,`Number`,`LastModificationTime`,`CreationTime`) - VALUES - (N'5819dfaf-4609-1255-6d56-3a0f792c6153',0,null,'2023-12-14 14:24:32.083') ; -2023-12-14 14:24:32.085 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:24:32.085 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 23.3685ms -2023-12-14 14:24:32.085 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.086 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 26, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 21, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:32.096 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:24:32.099 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 36.209ms -2023-12-14 14:24:32.099 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.099 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 39, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 18, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:32.115 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.118 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:24:32.204 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-14 14:24:32.361 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-14 14:24:32.363 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:24:32.366 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 247.4929ms -2023-12-14 14:24:32.366 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.366 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 251, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 228, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:32.374 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.377 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-14 14:24:32.387 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:24:32.387 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Banner` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:24:32.391 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:24:32.393 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application) in 15.2253ms -2023-12-14 14:24:32.393 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.393 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 18, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/banner", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.BannerService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 8, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:24:32.400 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.403 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-14 14:24:32.405 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-14 14:24:32.416 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-14 14:24:32.418 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 15.1222ms -2023-12-14 14:24:32.418 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:24:32.418 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 18, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:24:32", - "ExecutionDuration": 13, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:05.247 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:05.247 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:05.248 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:25:05.248 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:25:05.249 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:25:05.250 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:25:05.251 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:25:05.252 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:25:05.255 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:25:05.256 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-14 14:25:05.256 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:05.256 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 8.8209ms -2023-12-14 14:25:05.257 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 8.8128ms -2023-12-14 14:25:05.257 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:05.257 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:05.257 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 9, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 8, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:05.257 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 9, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 8, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:05.986 +08:00 [INF] CORS policy execution failed. -2023-12-14 14:25:05.986 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-14 14:25:05.986 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:05.987 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:05.987 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:05.987 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:05.989 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-14 14:25:05.990 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:25:05.992 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:25:05.994 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:05.995 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 7.9346ms -2023-12-14 14:25:05.995 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:05.995 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 9, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:06.028 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'5819dfaf-4609-1255-6d56-3a0f792c6153' ) -2023-12-14 14:25:06.031 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 43.736ms -2023-12-14 14:25:06.031 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:06.031 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 44, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:25:05", - "ExecutionDuration": 43, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:06.055 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:06.056 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:06.066 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-14 14:25:06.068 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-14 14:25:06.068 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:06.069 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 12.6529ms -2023-12-14 14:25:06.069 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:06.069 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:06", - "ExecutionDuration": 13, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:06", - "ExecutionDuration": 10, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:06.184 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:06.185 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:06.187 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:25:06.188 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Banner` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:25:06.189 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:06.189 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application) in 4.3787ms -2023-12-14 14:25:06.189 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:06.189 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:06", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/banner", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.BannerService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:06", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:06.221 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:06.221 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:06.223 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-14 14:25:06.225 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-14 14:25:06.225 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 4.0153ms -2023-12-14 14:25:06.226 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:06.226 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:06", - "ExecutionDuration": 5, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:25:06", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:19.031 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:19.031 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:19.031 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:25:19.031 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:25:19.033 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:25:19.033 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:25:19.034 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:25:19.036 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:19.037 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 5.9279ms -2023-12-14 14:25:19.038 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:19.038 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 4, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:19.045 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:25:19.047 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:25:19.048 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-14 14:25:19.048 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 16.9915ms -2023-12-14 14:25:19.048 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:19.048 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 17, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 16, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:19.746 +08:00 [INF] CORS policy execution failed. -2023-12-14 14:25:19.746 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-14 14:25:19.748 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.748 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.748 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:19.748 +08:00 [INF] Route matched with {action = "Access", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task AccessAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:19.750 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,1 -2023-12-14 14:25:19.750 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:25:19.751 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:25:19.753 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:19.753 +08:00 [DBG] Yi-SQL执行:UPDATE `AccessLog` SET - `Number` =( `Number` + 1 ) WHERE ( `Id` = N'5819dfaf-4609-1255-6d56-3a0f792c6153' ) -2023-12-14 14:25:19.753 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 5.0611ms -2023-12-14 14:25:19.753 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.754 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 6, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 3, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:19.757 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application) in 8.4229ms -2023-12-14 14:25:19.757 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.AccessAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.757 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 9, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 204, - "Url": "/api/app/access-log", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "AccessAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:19.807 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.808 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:19.813 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-14 14:25:19.814 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-14 14:25:19.815 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:19.815 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 7.3532ms -2023-12-14 14:25:19.815 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.815 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:19.834 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.834 +08:00 [INF] Route matched with {action = "GetList", controller = "Banner", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.BannerService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:19.836 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:25:19.837 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Banner` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:25:19.838 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Banner.BannerGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:19.838 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application) in 3.5382ms -2023-12-14 14:25:19.838 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.BannerService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.838 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 4, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/banner", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.BannerService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 2, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:19.850 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.850 +08:00 [INF] Route matched with {action = "GetWeek", controller = "AccessLog", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]] GetWeekAsync() on controller Yi.Framework.Bbs.Application.Services.AccessLogService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:19.851 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Number`,`LastModificationTime`,`CreationTime` FROM `AccessLog` ORDER BY `CreationTime` DESC LIMIT 0,7 -2023-12-14 14:25:19.852 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.AccessLog.AccessLogDto[]'. -2023-12-14 14:25:19.852 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application) in 1.6304ms -2023-12-14 14:25:19.852 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.AccessLogService.GetWeekAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:19.852 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 2, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/access-log/week", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.AccessLogService", - "MethodName": "GetWeekAsync", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:25:19", - "ExecutionDuration": 1, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:21.279 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:21.279 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:21.286 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-14 14:25:21.287 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-14 14:25:21.288 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:21.288 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 9.0216ms -2023-12-14 14:25:21.288 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:21.288 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:21", - "ExecutionDuration": 10, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:21", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:21.298 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:21.299 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:21.303 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-14 14:25:21.304 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-14 14:25:21.305 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:21.306 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 6.7508ms -2023-12-14 14:25:21.306 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:21.306 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:21", - "ExecutionDuration": 7, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:21", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:31.442 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:31.442 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:25:31.445 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:31.445 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:25:31.445 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:25:31.446 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:25:31.447 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:25:31.448 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:31.449 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 7.24ms -2023-12-14 14:25:31.449 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:31.451 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 5, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:31.452 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:25:31.454 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:25:31.455 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-14 14:25:31.455 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 9.8459ms -2023-12-14 14:25:31.455 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:25:31.455 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 10, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 8, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:31.941 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:31.941 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:31.947 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-14 14:25:31.948 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `PlateId` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsTop` = 0 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-14 14:25:31.948 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:31.949 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 7.4272ms -2023-12-14 14:25:31.949 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:31.949 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"isTop\":false,\"type\":0,\"sorting\":null,\"skipCount\":1,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 6, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:31.969 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:31.969 +08:00 [INF] Route matched with {action = "GetList", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:31.975 +08:00 [DBG] Yi-SQL执行: SELECT COUNT(1) FROM (SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ) CountTable -2023-12-14 14:25:31.976 +08:00 [DBG] Yi-SQL执行:SELECT `discuss`.`Id` AS `Id` , ( CASE WHEN (EXISTS ( SELECT * FROM `Agree` WHERE (( `CreatorId` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' ) AND ( `DiscussId` = `discuss`.`Id` )) )) THEN 1 ELSE 0 END ) AS `IsAgree` , `user`.`Id` AS `User.Id` , `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM (SELECT * FROM (SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `IsTop` = 1 ) AND ( `IsDeleted` = 0 ) ) MergeTable ) `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`IsDeleted` = 0 ) ORDER BY `discuss`.`CreationTime` DESC LIMIT 0,10 -2023-12-14 14:25:31.976 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:25:31.976 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application) in 7.6535ms -2023-12-14 14:25:31.977 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:31.977 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 8, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"title\":null,\"plateId\":null,\"isTop\":true,\"type\":0,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:25:31", - "ExecutionDuration": 7, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:25:55.396 +08:00 [INF] CORS policy execution failed. -2023-12-14 14:25:55.396 +08:00 [INF] Request origin http://127.0.0.1:18001 does not have permission to access the resource. -2023-12-14 14:25:55.396 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.CreateAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:55.400 +08:00 [INF] Route matched with {action = "Create", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetOutputDto] CreateAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussCreateInputVo) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:25:55.427 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `Id` = N'68444634-209e-44ae-f707-3a0f6b4feed3' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:25:55.445 +08:00 [DBG] Yi-SQL执行:INSERT INTO `Discuss` - (`Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds`) - VALUES - (N'99ac65d0-3fd2-0815-a597-3a0f792da6f1',N'12312',N'12312413',N'12312',0,0,N'',N'123123123aacaxcas das十大吃饭',null,0,0,0,N'68444634-209e-44ae-f707-3a0f6b4feed3','2023-12-14 14:25:55.442',N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619',null,null,null) ; -2023-12-14 14:25:55.467 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetOutputDto'. -2023-12-14 14:25:55.472 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.CreateAsync (Yi.Framework.Bbs.Application) in 72.4064ms -2023-12-14 14:25:55.472 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.CreateAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:25:55.472 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:25:55", - "ExecutionDuration": 76, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "POST", - "HttpStatusCode": 200, - "Url": "/api/app/discuss", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "CreateAsync", - "Parameters": "{\"input\":{\"title\":\"12312\",\"types\":\"12312413\",\"introduction\":\"12312\",\"createTime\":\"2023-12-14T14:25:55.4018239+08:00\",\"content\":\"123123123aacaxcas das\\u5341\\u5927\\u5403\\u996D\",\"color\":null,\"plateId\":\"68444634-209e-44ae-f707-3a0f6b4feed3\",\"permissionType\":0,\"cover\":\"\"}}", - "ExecutionTime": "2023-12-14 14:25:55", - "ExecutionDuration": 45, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:26:01.499 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:26:01.499 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.CommentService.GetDiscussIdAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:26:01.502 +08:00 [INF] Route matched with {action = "Get", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetOutputDto] GetAsync(System.Guid) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:26:01.503 +08:00 [INF] Route matched with {action = "GetDiscussId", controller = "Comment", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Comment.CommentGetListOutputDto]] GetDiscussIdAsync(System.Guid, Yi.Framework.Bbs.Application.Contracts.Dtos.Comment.CommentGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.CommentService (Yi.Framework.Bbs.Application). -2023-12-14 14:26:01.541 +08:00 [DBG] Yi-SQL执行:SELECT `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Id` AS `Id` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Content` AS `Content` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM `Discuss` `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `discuss`.`IsDeleted` = 0 ) -2023-12-14 14:26:01.574 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-14 14:26:01.581 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Content`,`DiscussId`,`ParentId`,`CreationTime`,`RootId`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Comment` WHERE ( `DiscussId` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:26:01.586 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-14 14:26:01.711 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Comment.CommentGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:26:01.714 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.CommentService.GetDiscussIdAsync (Yi.Framework.Bbs.Application) in 211.6904ms -2023-12-14 14:26:01.714 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.CommentService.GetDiscussIdAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:26:01.715 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:26:01", - "ExecutionDuration": 216, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/comment/discuss-id/99ac65d0-3fd2-0815-a597-3a0f792da6f1", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "VerifyDiscussPermissionAsync", - "Parameters": "{\"discussId\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\"}", - "ExecutionTime": "2023-12-14 14:26:01", - "ExecutionDuration": 7, - "ExtraProperties": {} - }, - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.CommentService", - "MethodName": "GetDiscussIdAsync", - "Parameters": "{\"discussId\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\",\"input\":{\"creationTime\":null,\"content\":null,\"discussId\":null}}", - "ExecutionTime": "2023-12-14 14:26:01", - "ExecutionDuration": 144, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:26:01.745 +08:00 [ERR] ---------- RemoteServiceErrorInfo ---------- -{ - "code": null, - "message": "对不起,在处理你的请求期间,产生了一个服务器内部错误!", - "details": null, - "data": {}, - "validationErrors": null -} - -2023-12-14 14:26:01.745 +08:00 [ERR] 等待更新消息通知 -System.NotImplementedException: 等待更新消息通知 - at Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync(Guid id) in E:\code\csharp\Yi\Yi.Abp.Net8\module\bbs\Yi.Framework.Bbs.Application\Services\DiscussService.cs:line 62 - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo) - at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync() - at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation) - at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed) - at lambda_method1485(Closure, Object) - at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) - at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() ---- End of stack trace from previous location --- - at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) -2023-12-14 14:26:01.759 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Http.RemoteServiceErrorResponse'. -2023-12-14 14:26:01.768 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync (Yi.Framework.Bbs.Application) in 265.3365ms -2023-12-14 14:26:01.768 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:26:01.783 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:26:01", - "ExecutionDuration": 269, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 501, - "Url": "/api/app/discuss/99ac65d0-3fd2-0815-a597-3a0f792da6f1", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetAsync", - "Parameters": "{\"id\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\"}", - "ExecutionTime": "2023-12-14 14:26:01", - "ExecutionDuration": 211, - "ExtraProperties": {} - } - ], - "Exceptions": [ - { - "ClassName": "System.NotImplementedException", - "Message": "等待更新消息通知", - "Data": {}, - "InnerException": null, - "HelpURL": null, - "StackTraceString": " at Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync(Guid id) in E:\\code\\csharp\\Yi\\Yi.Abp.Net8\\module\\bbs\\Yi.Framework.Bbs.Application\\Services\\DiscussService.cs:line 62\r\n at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync()\r\n at Volo.Abp.GlobalFeatures.GlobalFeatureInterceptor.InterceptAsync(IAbpMethodInvocation invocation)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed)\r\n at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync()\r\n at Volo.Abp.Validation.ValidationInterceptor.InterceptAsync(IAbpMethodInvocation invocation)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed)\r\n at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync()\r\n at Volo.Abp.Auditing.AuditingInterceptor.InterceptAsync(IAbpMethodInvocation invocation)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed)\r\n at Castle.DynamicProxy.AsyncInterceptorBase.ProceedAsynchronous[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAbpMethodInvocationAdapterWithReturnValue`1.ProceedAsync()\r\n at Volo.Abp.Uow.UnitOfWorkInterceptor.InterceptAsync(IAbpMethodInvocation invocation)\r\n at Volo.Abp.Castle.DynamicProxy.CastleAsyncAbpInterceptorAdapter`1.InterceptAsync[TResult](IInvocation invocation, IInvocationProceedInfo proceedInfo, Func`3 proceed)\r\n at lambda_method1485(Closure, Object)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted)\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync()\r\n--- End of stack trace from previous location ---\r\n at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|26_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted)", - "RemoteStackTraceString": null, - "RemoteStackIndex": 0, - "ExceptionMethod": null, - "HResult": -2147467263, - "Source": "Yi.Framework.Bbs.Application", - "WatsonBuckets": null - } - ], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:38:15.319 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-14 14:38:18.576 +08:00 [INF] Loaded ABP modules: -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-14 14:38:18.577 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-14 14:38:18.577 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-14 14:38:18.823 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.845 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.847 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.849 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.850 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.852 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.854 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.855 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.856 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.858 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.858 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.860 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.861 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.861 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.862 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.863 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.868 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.869 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.870 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.872 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.873 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.874 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.875 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:18.875 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 14:38:19.015 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.027 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.029 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.032 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.034 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.036 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.038 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.040 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:19.360 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-14 14:38:19.412 +08:00 [INF] Initialized all ABP modules. -2023-12-14 14:38:19.505 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-14 14:38:19.505 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-14 14:38:19.505 +08:00 [INF] Hosting environment: Development -2023-12-14 14:38:19.505 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-14 14:38:27.200 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:38:27.200 +08:00 [INF] Executing endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:38:27.220 +08:00 [INF] Route matched with {action = "Get", controller = "Account", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto] Get() on controller Yi.Framework.Rbac.Application.Services.AccountService (Yi.Framework.Rbac.Application). -2023-12-14 14:38:27.227 +08:00 [INF] Route matched with {action = "GetList", controller = "Config", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto]] GetListAsync(Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListInputVo) on controller Yi.Framework.Rbac.Application.Services.ConfigService (Yi.Framework.Rbac.Application). -2023-12-14 14:38:27.322 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Name`,`Age`,`UserName`,`Password`,`Salt`,`Icon`,`Nick`,`Email`,`Ip`,`Address`,`Phone`,`Introduction`,`Remark`,`Sex`,`DeptId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`OrderNum`,`State` FROM `User` WHERE `Id` = N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619' AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:27.330 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( `IsDeleted` = 0 ) -2023-12-14 14:38:27.332 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`ConfigName`,`ConfigKey`,`ConfigValue`,`ConfigType`,`OrderNum`,`Remark`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Config` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 14:38:27.361 +08:00 [DBG] Yi-SQL执行:SELECT `UserId` as aid,`RoleId` as bid FROM `UserRole` WHERE `UserId` = '36532e8b-109b-c6dd-fa9e-3a0f5fe48619' -2023-12-14 14:38:27.368 +08:00 [DBG] Yi-SQL执行:SELECT * FROM `Role` WHERE ( `IsDeleted` = 0 ) AND `Id` = null AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:27.405 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Rbac.Application.Contracts.Dtos.Config.ConfigGetListOutputDto, Yi.Framework.Rbac.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:38:27.405 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Rbac.Domain.Shared.Dtos.UserRoleMenuDto'. -2023-12-14 14:38:27.440 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application) in 210.9984ms -2023-12-14 14:38:27.440 +08:00 [INF] Executed action Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application) in 217.7934ms -2023-12-14 14:38:27.440 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.ConfigService.GetListAsync (Yi.Framework.Rbac.Application)' -2023-12-14 14:38:27.440 +08:00 [INF] Executed endpoint 'Yi.Framework.Rbac.Application.Services.AccountService.Get (Yi.Framework.Rbac.Application)' -2023-12-14 14:38:27.460 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 248, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/config", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.ConfigService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"configName\":null,\"configKey\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 108, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:38:27.460 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 248, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/account", - "Actions": [ - { - "ServiceName": "Yi.Framework.Rbac.Application.Services.AccountService", - "MethodName": "Get", - "Parameters": "{}", - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 108, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:38:27.750 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.CommentService.GetDiscussIdAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:38:27.750 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:38:27.754 +08:00 [INF] Route matched with {action = "Get", controller = "Discuss", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetOutputDto] GetAsync(System.Guid) on controller Yi.Framework.Bbs.Application.Services.DiscussService (Yi.Framework.Bbs.Application). -2023-12-14 14:38:27.755 +08:00 [INF] Route matched with {action = "GetDiscussId", controller = "Comment", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Comment.CommentGetListOutputDto]] GetDiscussIdAsync(System.Guid, Yi.Framework.Bbs.Application.Contracts.Dtos.Comment.CommentGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.CommentService (Yi.Framework.Bbs.Application). -2023-12-14 14:38:27.818 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-14 14:38:27.824 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Content`,`DiscussId`,`ParentId`,`CreationTime`,`RootId`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Comment` WHERE ( `DiscussId` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:27.831 +08:00 [DBG] Yi-SQL执行:SELECT `user`.`UserName` AS `User.UserName` , `user`.`Nick` AS `User.Nick` , `user`.`Icon` AS `User.Icon` ,`discuss`.`Id` AS `Id` ,`discuss`.`Title` AS `Title` ,`discuss`.`Types` AS `Types` ,`discuss`.`Introduction` AS `Introduction` ,`discuss`.`AgreeNum` AS `AgreeNum` ,`discuss`.`SeeNum` AS `SeeNum` ,`discuss`.`Cover` AS `Cover` ,`discuss`.`Content` AS `Content` ,`discuss`.`Color` AS `Color` ,`discuss`.`IsTop` AS `IsTop` ,`discuss`.`PermissionType` AS `PermissionType` ,`discuss`.`PlateId` AS `PlateId` ,`discuss`.`CreationTime` AS `CreationTime` ,`discuss`.`PermissionUserIds` AS `PermissionUserIds` FROM `Discuss` `discuss` Left JOIN `User` `user` ON ( `discuss`.`CreatorId` = `user`.`Id` ) AND ( `user`.`IsDeleted` = 0 ) WHERE ( `discuss`.`Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `discuss`.`IsDeleted` = 0 ) -2023-12-14 14:38:27.833 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Comment.CommentGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:38:27.836 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.CommentService.GetDiscussIdAsync (Yi.Framework.Bbs.Application) in 80.6208ms -2023-12-14 14:38:27.836 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.CommentService.GetDiscussIdAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:38:27.837 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 86, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/comment/discuss-id/99ac65d0-3fd2-0815-a597-3a0f792da6f1", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "VerifyDiscussPermissionAsync", - "Parameters": "{\"discussId\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\"}", - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 13, - "ExtraProperties": {} - }, - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.CommentService", - "MethodName": "GetDiscussIdAsync", - "Parameters": "{\"discussId\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\",\"input\":{\"creationTime\":null,\"content\":null,\"discussId\":null}}", - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 26, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:38:27.883 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-14 14:38:27.886 +08:00 [INF] Executing ObjectResult, writing value of type 'Yi.Framework.Bbs.Application.Contracts.Dtos.Discuss.DiscussGetOutputDto'. -2023-12-14 14:38:27.893 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync (Yi.Framework.Bbs.Application) in 138.7535ms -2023-12-14 14:38:27.893 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.DiscussService.GetAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:38:27.893 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 143, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/discuss/99ac65d0-3fd2-0815-a597-3a0f792da6f1", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "GetAsync", - "Parameters": "{\"id\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\"}", - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 110, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:38:27.916 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.ArticleService.GetAllAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:38:27.921 +08:00 [INF] Route matched with {action = "GetAll", controller = "Article", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[System.Collections.Generic.List`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Article.ArticleAllOutputDto]] GetAllAsync(System.Guid) on controller Yi.Framework.Bbs.Application.Services.ArticleService (Yi.Framework.Bbs.Application). -2023-12-14 14:38:27.927 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE ( `Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) ORDER BY DATETIME('now') LIMIT 0,1 -2023-12-14 14:38:27.936 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`IsDeleted`,`Content`,`Name`,`DiscussId`,`ParentId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Article` WHERE ( `DiscussId` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' ) AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:27.960 +08:00 [INF] Executing ObjectResult, writing value of type 'System.Collections.Generic.List`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Article.ArticleAllOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 14:38:27.961 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.ArticleService.GetAllAsync (Yi.Framework.Bbs.Application) in 40.8073ms -2023-12-14 14:38:27.962 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.ArticleService.GetAllAsync (Yi.Framework.Bbs.Application)' -2023-12-14 14:38:27.962 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": "36532e8b-109b-c6dd-fa9e-3a0f5fe48619", - "UserName": "cc", - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 45, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::ffff:127.0.0.1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/article/all/discuss-id/99ac65d0-3fd2-0815-a597-3a0f792da6f1", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.DiscussService", - "MethodName": "VerifyDiscussPermissionAsync", - "Parameters": "{\"discussId\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\"}", - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 1, - "ExtraProperties": {} - }, - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.ArticleService", - "MethodName": "GetAllAsync", - "Parameters": "{\"discussId\":\"99ac65d0-3fd2-0815-a597-3a0f792da6f1\"}", - "ExecutionTime": "2023-12-14 14:38:27", - "ExecutionDuration": 36, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 14:38:27.974 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Title`,`Types`,`Introduction`,`AgreeNum`,`SeeNum`,`Cover`,`Content`,`Color`,`IsDeleted`,`IsTop`,`PermissionType`,`PlateId`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`,`PermissionUserIds` FROM `Discuss` WHERE `Id` = N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' AND ( `IsDeleted` = 0 ) -2023-12-14 14:38:28.010 +08:00 [DBG] Yi-SQL执行:UPDATE `Discuss` SET - `Title`=N'12312',`Types`=N'12312413',`Introduction`=N'12312',`AgreeNum`=0,`SeeNum`=1,`Cover`=N'',`Content`=N'123123123aacaxcas das十大吃饭',`Color`=null,`IsDeleted`=0,`IsTop`=0,`PermissionType`=0,`PlateId`=N'68444634-209e-44ae-f707-3a0f6b4feed3',`CreationTime`='2023-12-14 14:25:55.442',`CreatorId`=N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619',`LastModifierId`=N'36532e8b-109b-c6dd-fa9e-3a0f5fe48619',`LastModificationTime`='2023-12-14 14:38:27.994',`PermissionUserIds`=null WHERE `Id`=N'99ac65d0-3fd2-0815-a597-3a0f792da6f1' -2023-12-14 15:08:11.065 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-14 15:08:14.311 +08:00 [INF] Loaded ABP modules: -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-14 15:08:14.312 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-14 15:08:14.312 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-14 15:08:14.527 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.550 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.551 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.552 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.554 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.556 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.558 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.559 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.560 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.561 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.562 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.564 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.565 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.565 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.566 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.567 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.570 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.571 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.572 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.574 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.575 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.575 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.576 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.577 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 15:08:14.711 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:14.723 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:14.725 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:14.728 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:14.730 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:14.732 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:14.734 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:14.736 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 15:08:15.058 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-14 15:08:15.113 +08:00 [INF] Initialized all ABP modules. -2023-12-14 15:08:15.204 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-14 15:08:15.204 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-14 15:08:15.204 +08:00 [INF] Hosting environment: Development -2023-12-14 15:08:15.204 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-14 15:08:27.250 +08:00 [INF] Sending file. Request path: '/swagger-ui.css'. Physical path: 'N/A' -2023-12-14 15:08:27.250 +08:00 [INF] Sending file. Request path: '/swagger-ui-standalone-preset.js'. Physical path: 'N/A' -2023-12-14 15:08:27.252 +08:00 [INF] Sending file. Request path: '/swagger-ui-bundle.js'. Physical path: 'N/A' -2023-12-14 15:08:27.504 +08:00 [INF] Sending file. Request path: '/favicon-32x32.png'. Physical path: 'N/A' -2023-12-14 15:08:59.993 +08:00 [INF] Executing endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 15:09:00.027 +08:00 [INF] Route matched with {action = "GetList", controller = "Plate", area = ""}. Executing controller action with signature System.Threading.Tasks.Task`1[Volo.Abp.Application.Dtos.PagedResultDto`1[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto]] GetListAsync(Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListInputVo) on controller Yi.Framework.Bbs.Application.Services.PlateService (Yi.Framework.Bbs.Application). -2023-12-14 15:09:00.119 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Plate` WHERE ( `IsDeleted` = 0 ) -2023-12-14 15:09:00.124 +08:00 [DBG] Yi-SQL执行:SELECT `Id`,`Code`,`Name`,`Logo`,`Introduction`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime` FROM `Plate` WHERE ( `IsDeleted` = 0 ) LIMIT 0,10 -2023-12-14 15:09:00.222 +08:00 [INF] Executing ObjectResult, writing value of type 'Volo.Abp.Application.Dtos.PagedResultDto`1[[Yi.Framework.Bbs.Application.Contracts.Dtos.Plate.PlateGetListOutputDto, Yi.Framework.Bbs.Application.Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]'. -2023-12-14 15:09:00.263 +08:00 [INF] Executed action Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application) in 232.8421ms -2023-12-14 15:09:00.263 +08:00 [INF] Executed endpoint 'Yi.Framework.Bbs.Application.Services.PlateService.GetListAsync (Yi.Framework.Bbs.Application)' -2023-12-14 15:09:00.283 +08:00 [DBG] Yi-请求追踪:{ - "ApplicationName": "Yi.Abp.Web", - "UserId": null, - "UserName": null, - "TenantId": null, - "TenantName": null, - "ImpersonatorUserId": null, - "ImpersonatorTenantId": null, - "ImpersonatorUserName": null, - "ImpersonatorTenantName": null, - "ExecutionTime": "2023-12-14 15:08:59", - "ExecutionDuration": 277, - "ClientId": null, - "CorrelationId": null, - "ClientIpAddress": "::1", - "ClientName": null, - "BrowserInfo": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36 Edg/120.0.0.0", - "HttpMethod": "GET", - "HttpStatusCode": 200, - "Url": "/api/app/plate", - "Actions": [ - { - "ServiceName": "Yi.Framework.Bbs.Application.Services.PlateService", - "MethodName": "GetListAsync", - "Parameters": "{\"input\":{\"name\":null,\"code\":null,\"startTime\":null,\"endTime\":null,\"sorting\":null,\"skipCount\":0,\"maxResultCount\":10}}", - "ExecutionTime": "2023-12-14 15:09:00", - "ExecutionDuration": 137, - "ExtraProperties": {} - } - ], - "Exceptions": [], - "ExtraProperties": {}, - "EntityChanges": [], - "Comments": [] -} -2023-12-14 16:42:13.210 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-14 16:42:22.214 +08:00 [INF] Loaded ABP modules: -2023-12-14 16:42:22.214 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-14 16:42:22.214 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-14 16:42:22.214 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-14 16:42:22.214 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-14 16:42:22.214 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-14 16:42:22.214 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-14 16:42:22.215 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-14 16:42:22.215 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-14 16:42:22.557 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.581 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.583 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.584 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.586 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.589 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.591 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.592 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.593 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.595 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.596 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.598 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.599 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.599 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.600 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.601 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.605 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.606 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.607 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.609 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.610 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.610 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.611 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.612 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:42:22.752 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:22.765 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:22.767 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:22.770 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:22.773 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:22.775 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:22.777 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:22.779 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:42:23.153 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-14 16:42:23.213 +08:00 [INF] Initialized all ABP modules. -2023-12-14 16:42:23.322 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-14 16:42:23.322 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-14 16:42:23.322 +08:00 [INF] Hosting environment: Development -2023-12-14 16:42:23.322 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web -2023-12-14 16:48:34.244 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-14 16:48:38.034 +08:00 [INF] Loaded ABP modules: -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-14 16:48:38.035 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-14 16:48:38.035 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-14 16:48:38.263 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.313 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.316 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.317 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.319 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.324 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.327 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.329 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.329 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.332 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.334 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.336 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.338 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.340 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.343 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.344 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.349 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.351 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.353 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.355 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.356 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.357 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.358 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.359 +08:00 [DBG] Yi-SQL执行:select Name from sqlite_master where type='table' and name<>'sqlite_sequence' order by name; -2023-12-14 16:48:38.613 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:38.629 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:38.631 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:38.634 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:38.638 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:38.642 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:38.645 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:38.647 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) -2023-12-14 16:48:39.168 +08:00 [INF] User profile is available. Using 'C:\Users\chenchun\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-14 16:48:39.234 +08:00 [INF] Initialized all ABP modules. -2023-12-14 16:48:39.368 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-14 16:48:39.368 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-14 16:48:39.368 +08:00 [INF] Hosting environment: Development -2023-12-14 16:48:39.368 +08:00 [INF] Content root path: E:\code\csharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web diff --git a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231215.txt b/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231215.txt index b9ae1d97..0924de5c 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231215.txt +++ b/Yi.Abp.Net8/src/Yi.Abp.Web/Logs/log-20231215.txt @@ -1,84 +1,194 @@ -2023-12-15 00:10:51.343 +08:00 [INF] Yi框架-Abp.vNext,启动! -2023-12-15 00:10:57.118 +08:00 [INF] Loaded ABP modules: -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Data.AbpDataModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule -2023-12-15 00:10:57.120 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.UI.AbpUiModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule -2023-12-15 00:10:57.120 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule -2023-12-15 00:10:57.121 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule -2023-12-15 00:10:57.121 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule -2023-12-15 00:10:57.121 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule -2023-12-15 00:10:58.044 +08:00 [INF] User profile is available. Using 'C:\Users\45431\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. -2023-12-15 00:10:58.208 +08:00 [INF] Initialized all ABP modules. -2023-12-15 00:10:58.431 +08:00 [INF] Now listening on: http://[::]:19001 -2023-12-15 00:10:58.431 +08:00 [INF] Application started. Press Ctrl+C to shut down. -2023-12-15 00:10:58.431 +08:00 [INF] Hosting environment: Development -2023-12-15 00:10:58.431 +08:00 [INF] Content root path: D:\CSharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web +2023-12-15 23:39:44.805 +08:00 [INF] Yi框架-Abp.vNext,启动! +2023-12-15 23:39:50.595 +08:00 [INF] Loaded ABP modules: +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2023-12-15 23:39:50.596 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2023-12-15 23:39:50.596 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule +2023-12-15 23:39:51.577 +08:00 [INF] User profile is available. Using 'C:\Users\45431\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2023-12-15 23:39:51.580 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.698 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.710 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.724 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.751 +08:00 [INF] Initialized all ABP modules. +2023-12-15 23:39:51.767 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.815 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.838 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.857 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.902 +08:00 [INF] Now listening on: http://[::]:19001 +2023-12-15 23:39:51.902 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2023-12-15 23:39:51.902 +08:00 [INF] Hosting environment: Development +2023-12-15 23:39:51.902 +08:00 [INF] Content root path: D:\CSharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web +2023-12-15 23:39:51.925 +08:00 [DBG] Yi-SQL执行:INSERT INTO `Banner` (`Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`) VALUES(N'55cde9be-cfdf-c5a8-8ec9-3a0f804f28d5',N'欢迎',N'https://mjj.today/i/8dkmrd',N'',0,'2023-12-15 23:39:51.900',NULL,NULL,NULL), (N'c6315092-1340-7e4c-be36-3a0f804f28e6',N'前端',N'https://mjj.today/i/8dkbGu',N'',0,'2023-12-15 23:39:51.912',NULL,NULL,NULL) ;select @@IDENTITY + +2023-12-15 23:39:51.943 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( `DictType` = N'bbs_type_lable' ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.956 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'BBS' ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:39:51.968 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:51.087 +08:00 [INF] Yi框架-Abp.vNext,启动! +2023-12-15 23:42:56.241 +08:00 [INF] Loaded ABP modules: +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Abp.Web.YiAbpWebModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Abp.SqlsugarCore.YiAbpSqlSugarCoreModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Abp.Domain.YiAbpDomainModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Abp.Domain.Shared.YiAbpDomainSharedModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Rbac.Domain.Shared.YiFrameworkRbacDomainSharedModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainSharedModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.VirtualFileSystem.AbpVirtualFileSystemModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Settings.AbpSettingsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Localization.AbpLocalizationAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Security.AbpSecurityModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Data.AbpDataModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.ObjectExtending.AbpObjectExtendingModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Validation.AbpValidationAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Uow.AbpUnitOfWorkModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.EventBus.Abstractions.AbpEventBusAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Threading.AbpThreadingModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Mapster.YiFrameworkMapsterModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Core.YiFrameworkCoreModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.ObjectMapping.AbpObjectMappingModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Bbs.Domain.Shared.YiFrameworkBbsDomainSharedModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Rbac.Domain.YiFrameworkRbacDomainModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.AspNetCore.SignalR.AbpAspNetCoreSignalRModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.AspNetCore.AbpAspNetCoreModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Json.AbpJsonModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Json.SystemTextJson.AbpJsonSystemTextJsonModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Json.AbpJsonAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Timing.AbpTimingModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.MultiTenancy.AbpMultiTenancyModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Auditing.AbpAuditingContractsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Http.AbpHttpModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Http.AbpHttpAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Minify.AbpMinifyModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Authorization.AbpAuthorizationAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Validation.AbpValidationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.ExceptionHandling.AbpExceptionHandlingModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Domain.AbpDddDomainModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.EventBus.AbpEventBusModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Guids.AbpGuidsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.BackgroundWorkers.AbpBackgroundWorkersModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.DistributedLocking.AbpDistributedLockingAbstractionsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Specifications.AbpSpecificationsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Caching.AbpCachingModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Serialization.AbpSerializationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Bbs.Domain.YiFrameworkBbsDomainModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Rbac.SqlSugarCore.YiFrameworkRbacSqlSugarCoreModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.SqlSugarCore.YiFrameworkSqlSugarCoreModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Bbs.SqlSugarCore.YiFrameworkBbsSqlSugarCoreModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Abp.Application.YiAbpApplicationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Abp.Application.Contracts.YiAbpApplicationContractsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Rbac.Application.Contracts.YiFrameworkRbacApplicationContractsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Ddd.Application.Contracts.YiFrameworkDddApplicationContractsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationContractsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Bbs.Application.Contracts.YiFrameworkBbsApplicationContractsModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Rbac.Application.YiFrameworkRbacApplicationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Ddd.Application.YiFrameworkDddApplicationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Application.AbpDddApplicationModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Features.AbpFeaturesModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.GlobalFeatures.AbpGlobalFeaturesModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.BackgroundWorkers.Quartz.AbpBackgroundWorkersQuartzModule +2023-12-15 23:42:56.242 +08:00 [INF] - Volo.Abp.Quartz.AbpQuartzModule +2023-12-15 23:42:56.242 +08:00 [INF] - Yi.Framework.Bbs.Application.YiFrameworkBbsApplicationModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.ApiVersioning.AbpApiVersioningAbstractionsModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.AspNetCore.Mvc.AbpAspNetCoreMvcContractsModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.UI.Navigation.AbpUiNavigationModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.UI.AbpUiModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.Autofac.AbpAutofacModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.Castle.AbpCastleCoreModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.Swashbuckle.AbpSwashbuckleModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.AspNetCore.Serilog.AbpAspNetCoreSerilogModule +2023-12-15 23:42:56.243 +08:00 [INF] - Volo.Abp.AspNetCore.Authentication.JwtBearer.AbpAspNetCoreAuthenticationJwtBearerModule +2023-12-15 23:42:56.243 +08:00 [INF] - Yi.Framework.AspNetCore.YiFrameworkAspNetCoreModule +2023-12-15 23:42:57.206 +08:00 [INF] User profile is available. Using 'C:\Users\45431\AppData\Local\ASP.NET\DataProtection-Keys' as key repository and Windows DPAPI to encrypt keys at rest. +2023-12-15 23:42:57.302 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dept` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.340 +08:00 [INF] Initialized all ABP modules. +2023-12-15 23:42:57.403 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Dictionary` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.420 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.435 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'系统管理' ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.449 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Post` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.463 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Role` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.479 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `User` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.490 +08:00 [INF] Now listening on: http://[::]:19001 +2023-12-15 23:42:57.490 +08:00 [INF] Application started. Press Ctrl+C to shut down. +2023-12-15 23:42:57.490 +08:00 [INF] Hosting environment: Development +2023-12-15 23:42:57.490 +08:00 [INF] Content root path: D:\CSharp\Yi\Yi.Abp.Net8\src\Yi.Abp.Web +2023-12-15 23:42:57.497 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Banner` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.550 +08:00 [DBG] Yi-SQL执行:INSERT INTO `Banner` (`Id`,`Name`,`Logo`,`Color`,`IsDeleted`,`CreationTime`,`CreatorId`,`LastModifierId`,`LastModificationTime`) VALUES(N'36a8208f-cc3e-03b4-9c6a-3a0f8051fded',N'欢迎',N'https://i.miji.bid/2023/12/15/e6478d5d15a4b941077e336790c414f6.png',N'',0,'2023-12-15 23:42:57.524',NULL,NULL,NULL), (N'5e183433-188c-043b-e69e-3a0f8051fdfd',N'前端',N'https://i.miji.bid/2023/12/15/07e9291c9311889a31a2b433d4decca0.jpeg',N'',0,'2023-12-15 23:42:57.536',NULL,NULL,NULL) ;select @@IDENTITY + +2023-12-15 23:42:57.566 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `DictionaryType` WHERE ( `DictType` = N'bbs_type_lable' ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.587 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Menu` WHERE ( `MenuName` = N'BBS' ) AND ( `IsDeleted` = 0 ) +2023-12-15 23:42:57.602 +08:00 [DBG] Yi-SQL执行:SELECT COUNT(1) FROM `Config` WHERE ( 1 = 1 ) AND ( `IsDeleted` = 0 ) diff --git a/Yi.Abp.Net8/src/Yi.Abp.Web/Yi.Abp.Web.csproj b/Yi.Abp.Net8/src/Yi.Abp.Web/Yi.Abp.Web.csproj index baa57e36..1824c846 100644 --- a/Yi.Abp.Net8/src/Yi.Abp.Web/Yi.Abp.Web.csproj +++ b/Yi.Abp.Net8/src/Yi.Abp.Web/Yi.Abp.Web.csproj @@ -35,4 +35,8 @@ + + + + diff --git a/Yi.Doc.Md/00.作者的话/你好.md b/Yi.Doc.Md/00.作者的话/你好.md new file mode 100644 index 00000000..88f32f1a --- /dev/null +++ b/Yi.Doc.Md/00.作者的话/你好.md @@ -0,0 +1,15 @@ +本文档不会涉及过多的复杂的内容,不仅仅是DDD的入门者最佳选择之一,更是Abp.vNext的入门者最佳选择之一 + +即使只是当演练项目的态度去审视,我也很高兴的希望,你能从这里学习到不同角度下的理解 + +小说写手 + +做什么的 + +开源现状 + +不忘初心、一切开源,最纯粹的职位.net生态,我不是什么大佬,但有一颗的 + +兄弟圈 + +我有一个梦想 \ No newline at end of file diff --git a/Yi.Doc.Md/01.框架快速开始教程/01.Yi框架简介.md b/Yi.Doc.Md/01.框架快速开始教程/01.Yi框架简介.md index 9772985a..7c156f9c 100644 --- a/Yi.Doc.Md/01.框架快速开始教程/01.Yi框架简介.md +++ b/Yi.Doc.Md/01.框架快速开始教程/01.Yi框架简介.md @@ -1,6 +1,6 @@ ## 它是什么? -YiFramework是一个基于.Net8+Abp.vNext+的后端开源框架 +YiFramework是一个基于.Net8+Abp.vNext+SqlSugar的DDD领域驱动设计后端开源框架 中文名称:意框架 @@ -9,6 +9,11 @@ YiFramework是一个基于.Net8+Abp.vNext+的后端开源框架 但是,不仅仅是如此 ## 它的理念 +谁说Abp复杂?谁说DDD难?打破常规,化繁为简,新人入门,项目二开,最佳方式之一 + +> 一百个人,就有一百种DDD,Yi框架不一定是极度严格的DDD,而是站在巨人的肩膀上,经过极多项目的提炼,摸索出一种最佳实践 + + 优雅的进行快速开发,通常,简单程度与优雅程度不可兼得,Yi框架并不一昧的追求极致的解耦,会站在用户使用角度上,在使用难易度进行考虑衡量 > 一个面向用户的快速开发后端框架 @@ -17,37 +22,21 @@ YiFramework是一个基于.Net8+Abp.vNext+的后端开源框架 ## 特点 - 面向用户的后端框架,使用简单,适合小型、中型、企业级项目 -- 项目内置源码,不打包,方便二开 +- 项目直接内置源码,不打包,非常适合进行二开改造 - 内置包含大量通用场景模块 - 等等 ## 基础设施简介 -- Jwt鉴权 -- 接口级别授权 -- 对象映射 -- O/RM -- 数据过滤 -- 多租户 -- 逻辑删除 -- 审计日志 -- 种子数据 -- 工作单元 -- 模块化 -- 动态Api -- 属性注入 -- 自动依赖注入 -- 当前用户 -- 仓储 -- Crud +以下全部功能可直接使用: + +- [Abp.vNext官网](https://docs.abp.io/zh-Hans/abp/latest/) + +- [SqlSugar官网](https://www.donet5.com/home/doc) ## 内置模块简介 - Rbac权限管理系统 - Bbs论坛社区系统 - -## 业务项目 -- RABC后台管理系统 -- BBS社区系统 > 重复的东西,无需再写一遍,这也是优雅的体现之一 diff --git a/Yi.Doc.Md/01.框架快速开始教程/02.核心技术.md b/Yi.Doc.Md/01.框架快速开始教程/02.核心技术.md index e69de29b..89f9cdb0 100644 --- a/Yi.Doc.Md/01.框架快速开始教程/02.核心技术.md +++ b/Yi.Doc.Md/01.框架快速开始教程/02.核心技术.md @@ -0,0 +1,30 @@ +# 后端 +C# Asp.NetCore 8.0 +- [x] 动态Api:Abp.vNext +- [x] 鉴权授权:Jwt +- [x] 日志:Serilog +- [x] 模块化:Abp.vNext +- [x] 依赖注入:Autofac +- [x] 对象映射:Mapster +- [x] ORM: SqlsugarCore +- [x] 多租户:Abp.vNext +- [x] 后台任务:Quartz.Net +- [x] 本地缓存:Abp.vNext +- [x] 分布式缓存:Abp.vNext +- [x] 事件总线:Abp.vNext + +# 前端 +js Vue3.2 +- [x] 异步请求:axios +- [x] 图表:echarts +- [x] ui:element-plus +- [x] 存储:pinia +- [x] 路由:vue-router +- [x] 打包:vite + +# 运维 +- [x] 部署:nginx +- [x] CICD:gitlab+Jenkins +- [x] Docker:harbor + + diff --git a/Yi.Doc.Md/01.框架快速开始教程/03.如何启动.md b/Yi.Doc.Md/01.框架快速开始教程/03.如何启动.md index e69de29b..eff525b2 100644 --- a/Yi.Doc.Md/01.框架快速开始教程/03.如何启动.md +++ b/Yi.Doc.Md/01.框架快速开始教程/03.如何启动.md @@ -0,0 +1,46 @@ +本项目为前后端分离项目,后端需要.Net8环境启动,前端需Node.js环境启动 + +推荐下载开发工具: + +- Visual Studio 2022 +- Visual Studio Core + + +## 后端 +vs选中启动项目Yi.Abp.Web模板项目 +![Alt text](../image/web.png) + +直接启动即可,无任何其他环境依赖,数据库默认采用`Sqlsite`,缓存默认采用`本地缓存` + +启动后,浏览器将会弹出项目接口地址swagger: + +![Alt text](../image/swagger.png) + +> 纳尼?怎么就看到一个测试接口?莫急,由于模块化方式,接口会越来越多,已自动分组至右上角,请点击分组 + +恭喜你,已经成功运行后端,是不是很简单? + +> 等等?表结构呢?表数据呢?为什么没有sql文件?在这里,统统不需要,配置文件默认开启CodeFirst可自动建库及表结构,默认开启DataSeed种子数据,自动创建初始化数据 + +## 前端 +对于前端,默认提供两个项目,分别对应后端的BBS与RBAC + +- BBS -> Yi.BBS.Vue3 +- RBAC -> Yi.RuoYi.Vue3 + +可根据需要选择进行启动 + +1:还原依赖 + +> npm install + +2:启动项目 + +> npm run dev + + +## 配置启动地址: +前端: +![Alt text](../image/feStart.png) +后端: +![Alt text](../image/start.png) \ No newline at end of file diff --git a/Yi.Doc.Md/01.框架快速开始教程/04.目录结构.md b/Yi.Doc.Md/01.框架快速开始教程/04.目录结构.md new file mode 100644 index 00000000..6e19562a --- /dev/null +++ b/Yi.Doc.Md/01.框架快速开始教程/04.目录结构.md @@ -0,0 +1,104 @@ +好了,相信当你非常容易的启动了项目之后,并看到了页面效果,也感受到它的简易 + +废话少说,直接上图: +![Alt text](../image/code.png) + +***感觉和传统的不太一样,怎么这么多类库,感觉很难上手*** + +NONONONONO! + +恰恰相反,其实对于使用用户来说我们只关注src中的Yi.Abp即可,如下图: +项目模板结构: + +> 懂Abp.vNext的大佬看到目录就会有一股熟悉的味道 + +Yi框架并没有直接采用Abp.vNext的模板生成,而是从零进行搭建起来的,但其中的分层结构与Abp.vNext是一致的,只是EntityFramework更换成了SqlSugar + +总体来看分为以下3个部分: +- Framework (Yi.Framework框架部分,基础设施) +- Module(Yi.Framework提供的内置模块部分,例如Rbac、Bbs) +- Src (真正业务进行开发的部分) + +很好,换句话来说,只需要关注Src部分,其他的都以`源代码`的方式,并没有进行打成nuget包,1是为了方便二开,2是为了方便大家学习,3是本来也不复杂 + +现在,我们来好好见识下为何如此分层吧~ + +说到分层,不得不提这个经典神图 + +![Alt text](../image/fenceng.png) + +这张图就对应着我们的结构 + +![Alt text](../image/jiegou.png) + +这个可能没接触过DDD的不能理解,为什么要这样分层,三层架构不好吗?这样感觉好难,不能理解!且慢,待你看完下面每层的概述,你就不会认为简单,这不比三层架构简单? + +首先,Yi框架的分层非常明确,命名属于严格类型,对于初学者,一眼看破 + +简单分为6个类库 +1. 应用层 +2. 应用抽象层 +3. 领域层 +4. 共享层 +5. 基础设施Sqlsugar层 +6. Web层 + +我们从下至上讲解: +## Doman.Shared 共享层 +最底层是Doman.Shared,共享层,这里存放各个常量、枚举、不依赖各个模块的通用类: + +![Alt text](../image/domanShared.png) + +> Doman.Shared,共享层 是一层很简单、不包含业务的模块,让它尽可能简单,有没有感觉像三层架构的Common? + +## Domain 领域层 +只依赖Doman.Shared的`Domain领域层` + +![Alt text](../image/domain.png) + +你可以选择存放大部分业务到领域层中,我们称这种模式叫做:`重领域层模式` +你也可以选择存放大部分业务到它的上一层,Application 应用层,叫做:`重应用层模式` + +在领域层中,你的实体,以及跟实体相关的设施可在这里 +同时你也可以创建领域服务(Managers文件夹中),管理当前子领域的聚合,例如: + +> 在学校模块中,包含了学生、教师、教室,为了更加聚合,可在学校模块中创建领域服务 + +## Application 应用层 +接下来,是应用层 + +![Alt text](../image/application.png) +熟悉的Crud、熟悉的Service,这里可以存放简单的通用业务,例如:Crud +如果是重应用层开发,你完全可以将业务写入到应用层,当一个快乐的三层架构Crud,Boy + +另外,关于上次的Job任务调度、事件处理也可以放在这里进行处理 + +> 简单而优雅~何乐而不为? + +## Application.Contracrs 抽象层 +Application.Contracrs应用抽象模块,是对应用模块的抽象,它的结构也非常的简单 + +![Alt text](../image/contracrs.png) + +这里有Dtos的概念,不出意外,大部分人已经接触,具体的可以在后续Crud中进行讲解 + +## SqlSugarCore 数据访问层 +![Alt text](../image/sqlsugar.png) + +这一层中,依赖领域层,但是不依赖应用层 +用于使用Sqlsugar相关的操作,比如`自定义仓储` +但是,其实大部分通用场景,框架内部已经封装,能用到这层的机会都比较少 +对复杂的数据访问封装 + +> 由于Querable对象用起来并没有到达SugarQuerable的爽感,且也不想让每个复杂查询都通过仓储进行扩展,这会导致用户使用感较差,所以经过各类平衡考虑,YiFramework框架与Sqlsugar是有轻量的`耦合性`的,框架提供Sqlsugar抽象层,避免过重的耦合,意味着,你可以在大部分地方使用Sqlsugar的操作,这在真正的业务项目来说,使用非常的方便,与Sqlsugar保持有一致的观念 + +## Web 层 +最后一个同样非常简单的一层 +Web模块,它的目的只是利用Asp.NetCore host Web主机,将应用层的业务通过Webapi形式暴露出去而已 +![Alt text](../image/webPro.png) + +可以看的出,结构很简单,甚至除了启动配置目录,连其他一个额外的目录都没有 + +> 综上所述,我们的业务,我的开发代码,大部分都在`领域层`与`应用层` + +光说不练,源代码直接提供rbac、bbs两大模块,结构是一致的,直接看看依葫芦画瓢不就清楚啦~ \ No newline at end of file diff --git a/Yi.Doc.Md/01.框架快速开始教程/04.结构/01.项目结构.md b/Yi.Doc.Md/01.框架快速开始教程/04.结构/01.项目结构.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Yi.Doc.Md/01.框架快速开始教程/04.结构/02.框架结构.md b/Yi.Doc.Md/01.框架快速开始教程/04.结构/02.框架结构.md deleted file mode 100644 index e69de29b..00000000 diff --git a/Yi.Doc.Md/01.框架快速开始教程/04.结构/03.模块结构.md b/Yi.Doc.Md/02.框架功能模块/01.模块化.md similarity index 64% rename from Yi.Doc.Md/01.框架快速开始教程/04.结构/03.模块结构.md rename to Yi.Doc.Md/02.框架功能模块/01.模块化.md index b92e4c6c..383290f4 100644 --- a/Yi.Doc.Md/01.框架快速开始教程/04.结构/03.模块结构.md +++ b/Yi.Doc.Md/02.框架功能模块/01.模块化.md @@ -22,39 +22,43 @@ app.UseSqlsugar(); 另外,该模块类实现`AbpModule`基类 ConfigureServices:用来配置容器服务 -OnApplicationInitialization:用来配置管道模型 +OnApplicationInitialization:管道模型组装后执行 Abp内置`DependsOn`特性标签,可进行维护各个模块之间的依赖关系 ## 完整例子 创建模块化文件: ``` cs +using Volo.Abp.Caching; +using Volo.Abp.Domain; using Volo.Abp.Modularity; -using Yi.Abp.Domain; -using Yi.Abp.SqlSugarCore; -using Yi.Framework.Bbs.SqlSugarCore; +using Yi.Abp.Domain.Shared; +using Yi.Framework.Bbs.Domain; using Yi.Framework.Mapster; -using Yi.Framework.Rbac.SqlSugarCore; -using Yi.Framework.SqlSugarCore; +using Yi.Framework.Rbac.Domain; -namespace Yi.Abp.SqlsugarCore +namespace Yi.Abp.Domain { [DependsOn( - typeof(YiAbpDomainModule), + typeof(YiAbpDomainSharedModule), + - typeof(YiFrameworkRbacSqlSugarCoreModule), - typeof(YiFrameworkBbsSqlSugarCoreModule), + typeof(YiFrameworkRbacDomainModule), + typeof(YiFrameworkBbsDomainModule), typeof(YiFrameworkMapsterModule), - typeof(YiFrameworkSqlSugarCoreModule) + typeof(AbpDddDomainModule), + typeof(AbpCachingModule) )] - public class YiAbpSqlSugarCoreModule : AbpModule + public class YiAbpDomainModule : AbpModule { - public override void ConfigureServices(ServiceConfigurationContext context) + public virtual void ConfigureServices(ServiceConfigurationContext context) + { + } + + public virtual void OnPreApplicationInitialization(ApplicationInitializationContext context) { - context.Services.AddYiDbContext(); } } } -``` -在启动管道模型组装文件使用入口模块: +``` \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/02.动态Api.md b/Yi.Doc.Md/02.框架功能模块/02.动态Api.md new file mode 100644 index 00000000..3e216bc5 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/02.动态Api.md @@ -0,0 +1,60 @@ +## 简介 +控制器层通常不包含业务的,我们控制器的代码经常是如下: +``` cs +[HttpGet] +[route("Info")] +pulic IActionResult GetInfo() +{ + retrun Ok(_service.GetInfo()); +} +``` +我们不仅要创建控制器文件,还要写出应用层到控制器的方法,将业务的数据通过控制器暴露出去 +> 控制器只做转发,没有做任何事情,形成了大量的冗余代码 + +## 如何使用 +> 推荐直接在应用层中直接使用 + +使用动态Api,需要3个条件 +1. 任何一个类,实现`IRemoteService`接口 +2. 该类需要加入DI容器 +3. 在管道模型中,配置动态Api服务: + +> 通常我们直接继承`ApplicationService`即可,因为该类实现了`IRemoteService` +``` cs + //动态Api + Configure(options => + { + options.ConventionalControllers.Create(typeof(YiAbpApplicationModule).Assembly, options => options.RemoteServiceName = "default"); + }); +``` + +根据方法名自动映射Http方法及路由 +例如: +- GetInfo:Get请求 +- UpdateInfo:Put请求 +- RemoveInfo: Del请求 +- CreateInfo: Post请求 + + +## 完整例子 +``` cs +using Volo.Abp.Application.Services; + +namespace Yi.Abp.Application.Services +{ + public class TestService : ApplicationService + { + /// + /// 你好世界 + /// + /// + /// + public string GetHelloWorld(string? name) + { + return name ?? "HelloWord"; + } + } +} + +``` + diff --git a/Yi.Doc.Md/02.框架功能模块/03.依赖注入.md b/Yi.Doc.Md/02.框架功能模块/03.依赖注入.md new file mode 100644 index 00000000..d2d04be5 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/03.依赖注入.md @@ -0,0 +1,35 @@ +## 简介 +熟悉Asp.NetCore的小伙伴们,对依赖注入可太熟悉,这里也不在过多的讲述依赖注入知识 +默认内置的注入方式,通常是在启动类文件,一个一个手动注入,例如: +``` cs +service.Addsingle<接口,类>() +``` +同样,当服务过多,添加服务的代码会显的非常长,不够优雅 +可以使用框架内置的接口 +- IScopedDependency +- ISingletonDependency +- ITransientDependency + +也可以使用框架内置的特性 +- DependencyAttribute +- ExposeServicesAttribute + +> 使用特性,可以指定特定类、接口作为抽象 +## 如何使用 +#### 特性方式: +在实现类上标注特性即可 +``` cs +[ExposeServices(typeof(ITestService))] +[Dependency(ServiceLifetime.Transient)] +public class Test +{ +} +``` + +#### 接口方式: +同理,根据不同的接口,选择不同的生命周期,自动会优先找自动以`I+类名`的接口作为抽象 +``` cs +public class Test:ITest,ISingletonDependency +{ +} +``` \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/04.属性注入.md b/Yi.Doc.Md/02.框架功能模块/04.属性注入.md new file mode 100644 index 00000000..ad2c80b6 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/04.属性注入.md @@ -0,0 +1,16 @@ +## 简介 +默认推荐的构造函数注入,依赖关系会非常明确 +但是,会给程序带来大量的重复依赖注入代码,构造函数会非常的冗余 +所以,在Abp的中,内置了属性注入方式 +> 不是开玩笑,万不得已,最好别用。我也被坑过很多次,带来的弊端也非常明显,难以调试,且依赖关系不清晰,生命周期也是在构造函数之后 + +## 使用方式 +使用极为简单: +``` cs + public IArticleRepository ArticleRepository { get; set; } +``` +在具备get与set方法的属性上,打上Autowired特性即可,在该类被注入时候,该属性会在容器中寻找并且赋值 + +我们的实现方式,是通过AutoFac的模块,你需要在启动的Host中添加autofac的属性注入模块: +``` cs + diff --git a/Yi.Doc.Md/02.框架功能模块/05.当前用户.md b/Yi.Doc.Md/02.框架功能模块/05.当前用户.md new file mode 100644 index 00000000..870c88b0 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/05.当前用户.md @@ -0,0 +1,41 @@ +## 简介 +如何获取当前请求用户信息?这个问题有很多个答案 + +常规是通过HttpContext对象进行获取,它通常是在ControllerBase中,控制器中内置了HttpContext对象 +也可以通过依赖注入HttpContext访问器中获取 + +> 但是,他们都不够优雅,原因:与HttpContext具备了强耦合,如果对于没有HttpContext,将会非常的难维护,例如:单元测速 + +你可以依赖注入使用:`ICurrentUser` +它是瞬态注入,但是它能够获取当前作用域的用户信息 +## 如何使用 +任何地方,依赖注入:`ICurrentUser` +它包含属性: +``` cs + public interface ICurrentUser + { +//是否授权 + public bool IsAuthenticated { get; } +//id + public Guid Id { get; } +//用户名 + public string UserName { get; } +//租户id + public Guid TenantId { get; } +//邮件 + public string Email { get; } + + public bool EmailVerified { get; } +//电话 + public string PhoneNumber { get; } + + public bool PhoneNumberVerified { get; } +//角色codes + public string[]? Roles { get; } + + + } +``` +直接使用即可 + +> 注意,当前用户功能默认是继承到Core模块,所以你无需进行任何引用,直接使用即可 diff --git a/Yi.Doc.Md/02.框架功能模块/06.SqlSugarORM.md b/Yi.Doc.Md/02.框架功能模块/06.SqlSugarORM.md new file mode 100644 index 00000000..5f0bcaf0 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/06.SqlSugarORM.md @@ -0,0 +1,25 @@ +## 简介 +在C#强大的语法下,Orm也是极度的优雅 +本框架默认集成Sqlsugar Orm,与YiFramework拥有相同理念 +> 从用户体验出发,用起来爽,使用体验极佳 + +你可以查略 [Sqlsguar官网](https://www.donet5.com/Home/Doc)学习 +## 如何使用 +默认已经集成SqlSugar模块,可依赖注入`ISqlSugarDbContext`即可,我们称做它为Db,用于操作数据库 + +> 不推荐直接使用db,大部分的操作数据方式使用仓储完全够用`ISqlSugarRepository repository`或`IRepository repository` + +由于Querable对象用起来并没有到达SugarQuerable的爽感,且也不想让每个复杂查询都通过仓储进行扩展,这会导致用户使用感较差 + +所以经过各类平衡考虑,YiFramework框架与Sqlsugar是有轻量的`耦合性`的,框架提供Sqlsugar抽象层,避免过重的耦合,意味着,你可以在`大部分`地方使用Sqlsugar的操作,这在真正的业务项目来说,使用非常的方便,与Sqlsugar保持有一致的观念 + +我们已经集成SqlSugarCore模块在Abp.vNext中的 +- Crud +- 仓储 +- 工作单元 +- 审计日志 +- 逻辑删除 +- 数据过滤 +- 领域事件 + +意味着,可以平滑的直接使用Abp.vNext的这些功能 \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/07.仓储.md b/Yi.Doc.Md/02.框架功能模块/07.仓储.md new file mode 100644 index 00000000..bddedc0a --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/07.仓储.md @@ -0,0 +1,28 @@ +## 简介 +使用仓储用于操作数据库数据,封装通用增删改查等方式 +> `ISqlsugarRepository`仓储内置了Sqlsugar Db,具有一定的强耦合,但是使用起来会非常的舒服方便 + +** 原因:**Queryable对象是微软内置的查询对象,可以使用linq语法,同时也是为了Efcore的查询对象,Sqlsugar 的查询对象为SugarQueryable对象,两者并不兼容,SugarQueryable的功能远远大与Queryable,为此Sqlsugar不会限制自己而兼容Queryable对象 + +## 使用方式 +方式1:依赖注入`IRepository`接口即可 + +方式2:依赖注入`IRepository`接口即可 + +方式3:依赖注入`ISqlSugarRepository`接口即可 + +方式4:依赖注入`ISqlSugarRepository`接口即可 + +方式5:继承`SqlSugarRepository`基类,自定义仓储,注入自己的仓储接口,例如写一个`StudentRepository`继承`SqlSugarRepository`,再实现自己的`IStudentRepository`,后续使用`IStudentRepository`依赖注册进行使用即可 + +> 推荐简单常用`ISqlSugarRepository`的注入 + +`ISqlSugarRepository`内置了非常多的通用数据库操作方法,同时也内置了`ISqlsugarClient`Db对象在其中 + +内置方法非常多 +- 查询 +- 删除 +- 修改 +- 添加 +- 分页查询 +- Db对象 \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/08.Crud增删改查.md b/Yi.Doc.Md/02.框架功能模块/08.Crud增删改查.md new file mode 100644 index 00000000..e0623f10 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/08.Crud增删改查.md @@ -0,0 +1,56 @@ +## 简介 +> 想做一个快乐的Crud boy??好,满足你 + +可能绝大部分简单的业务,真的只是不用类型的Crud,大量的重复代码,使用cv方式,不够优雅 + +框架内部内部封装各种场景下的crud + +## 使用 +在应用层继承`YiCrudAppService`crud服务即可 +在这之前,你应该先了解各个dto的作用: + +> 注意,我们当然可以直接使用Abp中的`CrudAppService`,但由于Abp内置的Crud还缺少一些常用的接口,比如批量删除等方式,所以推荐使用`YiCrudAppService`,使用上完全没有区别 + +``` cs +- TGetOutputDto (单查返回的dto) +- TGetListOutputDto (多查返回的dto) +- TGetListInput (多查的条件) +- TCreateInput (创建的dto) +- TUpdateInput (更新的dto) +``` +根据Dto业务场景,它有很多种选项,依次为: +``` cs +- YiCrudAppService +- YiCrudAppService +- YiCrudAppService +- YiCrudAppService +- YiCrudAppService +``` +dto可以放到`Application.Contracts`层,同理接口继承`IYiCrudAppService`即可 +```cs +- YiCrudAppService +- YiCrudAppService +- YiCrudAppService +- YiCrudAppService +- YiCrudAppService +``` +> 可以发现,接口,不应该与实体有直接关系 + +其中,在YiCrudAppService中,我们提供了一些内置的方法: +```cs +public virtual async Task CreateAsync(TCreateInput input) +public virtual async Task DeleteAsync(string id) +public virtual async Task UpdateAsync(TKey id, TUpdateInput input) +public virtual async Task GetAsync(TKey id) +public virtual async Task> GetListAsync(TGetListInput input) +``` +同时还有映射关系: +``` cs +protected virtual Task MapToGetOutputDtoAsync(TEntity entity) +protected virtual Task> MapToGetListOutputDtosAsync(List entities) +protected virtual Task MapToGetListOutputDtoAsync(TEntity entity) +protected virtual Task MapToGetOutputDtoAsync(TEntity entity) +protected virtual Task> MapToGetListOutputDtosAsync(List entities) +protected virtual Task MapToGetListOutputDtoAsync(TEntity entity) +``` +另外,它也提供了对应的`仓储`及`当前用户`等常用属性 \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/09.审计日志.md b/Yi.Doc.Md/02.框架功能模块/09.审计日志.md new file mode 100644 index 00000000..4abac7f9 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/09.审计日志.md @@ -0,0 +1,42 @@ +## 简介 +审计日志是对数据的操作记录 +例如: +1. 数据的创建者 +2. 数据的创建时间 +3. 数据的更新者 +4. 数据的更新时间 + +对于重要的数据,我们应该提供审计日志功能,方便进行数据追溯 +框架内部已`自动集成`,使用起来非常简单 +## 如何使用 +我们把全部的审计日志封装一个对象 +你的**实体**可直接继继承或者实现接口 +AuditedObject与IAuditedObject + +它包含4个属性字段, +``` cs + public DateTime CreationTime { get; set; }= DateTime.Now; + + public Guid? CreatorId { get; set; } + + public Guid? LastModifierId { get; set; } + + public DateTime? LastModificationTime { get; set; } + +``` + +**在执行插入的时候:** +会自动为`CreationTime` 与 `CreatorId` 赋值 + + +**在执行更新的时候:** +会自动为`LastModificationTime` 与 `LastModifierId` 赋值 + +当然,如果只需要部分的审计日志,你完全可以实现单独的接口 +分别为: +``` cs +IHasCreationTime +IMayHaveCreator +IModificationAuditedObject +IHasModificationTime +``` \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/10.工作单元.md b/Yi.Doc.Md/02.框架功能模块/10.工作单元.md new file mode 100644 index 00000000..4d9e4e63 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/10.工作单元.md @@ -0,0 +1,47 @@ +## 简介 +> 工作单元模式是“维护一个被业务事务影响的对象列表,协调变化的写入和并发问题的解决” + +它的作用 +1. 事务相关 +2. 共用连接 +... + +## 如何使用 +依赖注入`IUnitOfWorkManager`,使用`CreateContext`创建一个`IUnitOfWork`工作单元 +在工作单元内部,可提交,回滚,获取仓储 +``` cs + bool IsTran { get; set; } + bool IsCommit { get; set; } + bool IsClose { get; set; } + + IRepository GetRepository(); + bool Commit(); +``` + +> 注意,在除Get请求上,其他请求默认都开启了工作单元(post、put、delelte) + +## 完整例子 +``` cs + private IUnitOfWorkManager _unitOfWorkManager { get; set; } + public void Test() + { + using (var uow = _unitOfWorkManager.CreateContext()) + { + //仓储执行各种操作 + + //统一提交 + uow.Commit(); + } + + } +``` +## 特性方式 +还可以通过`[UnitOfWork]`特性,打在方法上,该方法便会当作一个事务进行提交 +``` cs + [UnitOfWork] + public void Test() + { + //仓储执行各种操作 + } +``` + diff --git a/Yi.Doc.Md/02.框架功能模块/11.种子数据.md b/Yi.Doc.Md/02.框架功能模块/11.种子数据.md new file mode 100644 index 00000000..2d1ca2ed --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/11.种子数据.md @@ -0,0 +1,92 @@ +## 简介 +种子数据一直都是一个很繁琐的东西,例如在初始化数据的时候,添加默认用户 +可以通过导入sql的方式进行添加种子数据,也可以通过程序代码中自动初始化数据 +我们目前提供后者 + +## 如何使用 +一切的根源,来源自:`IDataSeedContributor` +直接使用实现`IDataSeedContributor`接口,我们只需要实现 `SeedAsync(DataSeedContext context)`即可 + +在实现类上,要将该类加入容器中,推荐通过内置的依赖注入模块 + +当然,对于扩展,你可以重写其他的方法 + +#### 其他方式使用 +另外,你可以直接依赖注入,直接使用IDataSeeder SeedAsync方法,重新手动执行种子数据 +> 默认在程序启动的时候,会根据配置文件选择,是否执行种子数据 + +## 完整例子 +``` cs +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using SqlSugar; +using Volo.Abp.Data; +using Volo.Abp.DependencyInjection; +using Volo.Abp.Domain.Repositories; +using Volo.Abp.Guids; +using Yi.Framework.Rbac.Domain.Entities; +using Yi.Framework.SqlSugarCore.Abstractions; + +namespace Yi.Framework.Bbs.SqlSugarCore.DataSeeds +{ + public class ConfigDataSeed : IDataSeedContributor, ITransientDependency + { + private ISqlSugarRepository _repository; + public ConfigDataSeed(ISqlSugarRepository repository) + { + _repository = repository; + } + public async Task SeedAsync(DataSeedContext context) + { + if (!await _repository.IsAnyAsync(x => true)) + { + await _repository.InsertManyAsync(GetSeedData()); + } + } + public List GetSeedData() + { + List entities = new List(); + ConfigEntity config1 = new ConfigEntity() + { + ConfigKey = "bbs.site.name", + ConfigName = "站点名称", + ConfigValue = "意社区" + }; + entities.Add(config1); + + ConfigEntity config2 = new ConfigEntity() + { + ConfigKey = "bbs.site.author", + ConfigName = "站点作者", + ConfigValue = "橙子" + }; + entities.Add(config2); + + ConfigEntity config3 = new ConfigEntity() + { + ConfigKey = "bbs.site.icp", + ConfigName = "站点Icp备案", + ConfigValue = "赣ICP备20008025号" + }; + entities.Add(config3); + + + ConfigEntity config4 = new ConfigEntity() + { + ConfigKey = "bbs.site.bottom", + ConfigName = "站点底部信息", + ConfigValue = "你好世界" + }; + entities.Add(config4); + return entities; + } + } + + +} + + +``` \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/12.Jwt鉴权.md b/Yi.Doc.Md/02.框架功能模块/12.Jwt鉴权.md new file mode 100644 index 00000000..940540f2 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/12.Jwt鉴权.md @@ -0,0 +1,80 @@ +## 简介 +> 鉴权是用于解析用户的令牌,知道用户是否携带令牌,并且知道用户信息是谁 + +改鉴权使用的是微软Asp.NetCore扩鉴权扩展方式 +程序模块已内置 +``` cs +context.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) + .AddJwtBearer(options => + { + options.TokenValidationParameters = new TokenValidationParameters + { + ClockSkew = TimeSpan.Zero, + ValidateIssuer = true, + ValidateAudience = true, + ValidateLifetime = true, + ValidateIssuerSigningKey = true, + ValidIssuer = jwtOptions.Issuer, + ValidAudience = jwtOptions.Audience, + RequireExpirationTime = true, + IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwtOptions.SecurityKey)) + }; + options.Events = new JwtBearerEvents + { + OnMessageReceived = context => + { + var accessToken = context.Request.Query["access_token"]; + if (!string.IsNullOrEmpty(accessToken)) + { + context.Token = accessToken; + } + return Task.CompletedTask; + } + }; + }); +``` +## 如何使用 +默认已经集成,所以在使用方面,可要求客户端添加标准的jwtbear头即可 + +swagger 接口文档中,已集成,直接输入jwttoken即可 +![Alt text](../image/swaggerIndex.png) + +我们采用的是HSA对称加密方式,只需要具备密钥 +对应的配置文件 +``` json + //鉴权 + "JwtOptions": { + "Issuer": "https://ccnetcore.com", + "Audience": "https://ccnetcore.com", + "SecurityKey": "zqxwcevrbtnymu312412ihe9rfwhe78rh23djoi32hrui3ryf9e8wfh34iuj54y0934uti4h97fgw7hf97wyh8yy69520", + "ExpiresMinuteTime": 86400 + } +``` +## Token如何来 +那肯定是登录啊,登录接口会返回Token + +那如何制作Token?直接上代码,下面这个也是登录的创建token的方式 + +``` cs + /// + /// 创建令牌 + /// + /// + /// + private string CreateToken(Dictionary dic) + { + var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(_jwtOptions.SecurityKey)); + var creds = new SigningCredentials(key, SecurityAlgorithms.HmacSha256); + var claims = dic.Select(x => new Claim(x.Key, x.Value.ToString())).ToList(); + var token = new JwtSecurityToken( + issuer: _jwtOptions.Issuer, + audience: _jwtOptions.Audience, + claims: claims, + expires: DateTime.Now.AddSeconds(_jwtOptions.ExpiresMinuteTime), + notBefore: DateTime.Now, + signingCredentials: creds); + string returnToken = new JwtSecurityTokenHandler().WriteToken(token); + + return returnToken; + } +``` diff --git a/Yi.Doc.Md/02.框架功能模块/13.接口授权.md b/Yi.Doc.Md/02.框架功能模块/13.接口授权.md new file mode 100644 index 00000000..cf3443d4 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/13.接口授权.md @@ -0,0 +1,18 @@ +## 简介 +> 授权必须基于鉴权之后,知道了用户的信息,根据用户权限列表进行判断是否有权限进入 + +框架内部集成授权方式,并非为Asp.netcore授权方式,而是提供一种更简单的方式 +使用起来非常简单 + +## 使用 +只需要在需要授权的接口上打上特性 `[Permission("code")]`接口 + +code为登录时候颁发的token中的权限,如果该用户的token 权限列表中不包含code,将被会拦截,并提示未授权,被拒绝 + +``` cs + [Permission("system:user:delete")] + public override async Task DeleteAsync(Guid id) + { + await base.DeleteAsync(id); + } +``` \ No newline at end of file diff --git a/Yi.Doc.Md/02.框架功能模块/14.异常处理.md b/Yi.Doc.Md/02.框架功能模块/14.异常处理.md new file mode 100644 index 00000000..3e749b15 --- /dev/null +++ b/Yi.Doc.Md/02.框架功能模块/14.异常处理.md @@ -0,0 +1,48 @@ +## 简介 +当程序出现异常之后,框架需要记录,同时反馈前端对应的信息 +它通过`全局错误中间件`实现 + +错误后,将统一返回以下模型格式: +``` cs +public class RemoteServiceErrorInfo +{ + + public string? Code { get; set; } + + /// + /// message. + /// + public string? Message { get; set; } + + /// + /// details. + /// + public string? Details { get; set; } + + /// + /// data. + /// + public object? Data { get; set; } +} +``` + +框架内部错误分为三大类: +#### 系统内部错误 +> httpCode:500 +系统不能处理、或未发现的错误,需要即使进行修复 +#### 业务友好错误 +> httpCode:403 +跟业务相关,业务请求不合理,例如:登录失败、数据重复 +#### 授权错误 +> httpCode:401 +跟权限相关,代表当前用户权限不足 + +## 使用 +你可以在程序任何地方进行抛出错误 +``` cs + throw new Exception("系统错误");//状态码500 + throw new UserFriendlyException("业务错误");//状态码403 + throw new NotImplementedException("未实现");//状态码501 + throw new UserFriendlyException("花里胡哨错误","401");//状态码401 +``` +Abp内部将自动抓取,并返回给前端 \ No newline at end of file diff --git a/Yi.Doc.Md/03.实战演练/图书管理系统.md b/Yi.Doc.Md/03.实战演练/图书管理系统.md new file mode 100644 index 00000000..d25d0935 --- /dev/null +++ b/Yi.Doc.Md/03.实战演练/图书管理系统.md @@ -0,0 +1,5 @@ +恭喜恭喜,看到了这里,说明你已经掌握了框架最常用的一些基础设施功能 + +现在你要做到的,是真正编写一个业务,将这些功能进行组合接口 + +那就万变不离其宗,还是以那个多少人的第一个项目来上手,著名鼎鼎的`图书管理系统` \ No newline at end of file diff --git a/Yi.Doc.Md/image/application.png b/Yi.Doc.Md/image/application.png new file mode 100644 index 00000000..57384446 Binary files /dev/null and b/Yi.Doc.Md/image/application.png differ diff --git a/Yi.Doc.Md/image/code.png b/Yi.Doc.Md/image/code.png new file mode 100644 index 00000000..72c9a319 Binary files /dev/null and b/Yi.Doc.Md/image/code.png differ diff --git a/Yi.Doc.Md/image/contracrs.png b/Yi.Doc.Md/image/contracrs.png new file mode 100644 index 00000000..67216299 Binary files /dev/null and b/Yi.Doc.Md/image/contracrs.png differ diff --git a/Yi.Doc.Md/image/domain.png b/Yi.Doc.Md/image/domain.png new file mode 100644 index 00000000..4f04882a Binary files /dev/null and b/Yi.Doc.Md/image/domain.png differ diff --git a/Yi.Doc.Md/image/domanShared.png b/Yi.Doc.Md/image/domanShared.png new file mode 100644 index 00000000..1522463a Binary files /dev/null and b/Yi.Doc.Md/image/domanShared.png differ diff --git a/Yi.Doc.Md/image/feStart.png b/Yi.Doc.Md/image/feStart.png new file mode 100644 index 00000000..03e3ff69 Binary files /dev/null and b/Yi.Doc.Md/image/feStart.png differ diff --git a/Yi.Doc.Md/image/fenceng.png b/Yi.Doc.Md/image/fenceng.png new file mode 100644 index 00000000..66594809 Binary files /dev/null and b/Yi.Doc.Md/image/fenceng.png differ diff --git a/Yi.Doc.Md/image/jiegou.png b/Yi.Doc.Md/image/jiegou.png new file mode 100644 index 00000000..107ffe32 Binary files /dev/null and b/Yi.Doc.Md/image/jiegou.png differ diff --git a/Yi.Doc.Md/image/sqlsugar.png b/Yi.Doc.Md/image/sqlsugar.png new file mode 100644 index 00000000..ff293675 Binary files /dev/null and b/Yi.Doc.Md/image/sqlsugar.png differ diff --git a/Yi.Doc.Md/image/start.png b/Yi.Doc.Md/image/start.png new file mode 100644 index 00000000..3b9f83e1 Binary files /dev/null and b/Yi.Doc.Md/image/start.png differ diff --git a/Yi.Doc.Md/image/swagger.png b/Yi.Doc.Md/image/swagger.png new file mode 100644 index 00000000..de34de69 Binary files /dev/null and b/Yi.Doc.Md/image/swagger.png differ diff --git a/Yi.Doc.Md/image/swaggerIndex.png b/Yi.Doc.Md/image/swaggerIndex.png new file mode 100644 index 00000000..1c1af8fe Binary files /dev/null and b/Yi.Doc.Md/image/swaggerIndex.png differ diff --git a/Yi.Doc.Md/image/web.png b/Yi.Doc.Md/image/web.png new file mode 100644 index 00000000..1ac93f24 Binary files /dev/null and b/Yi.Doc.Md/image/web.png differ diff --git a/Yi.Doc.Md/image/webPro.png b/Yi.Doc.Md/image/webPro.png new file mode 100644 index 00000000..dd842b28 Binary files /dev/null and b/Yi.Doc.Md/image/webPro.png differ