From 65262a36048ebe62d9f761f694c3c61bfad2fb49 Mon Sep 17 00:00:00 2001 From: “wangming” <“wangming@antissoft.com”> Date: Mon, 15 Sep 2025 03:06:50 +0800 Subject: [PATCH] Update multiple .DS_Store files and add [AllowAnonymous] attribute to several methods in LqStatisticsService to enhance accessibility for API endpoints. --- .DS_Store | Bin 18436 -> 0 bytes netcore/src/.DS_Store | Bin 10244 -> 0 bytes netcore/src/Application/.DS_Store | Bin 10244 -> 0 bytes netcore/src/Application/NCC.API/.DS_Store | Bin 10244 -> 0 bytes netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs | 8 ++++++++ 5 files changed, 8 insertions(+), 0 deletions(-) diff --git a/.DS_Store b/.DS_Store index 0812e3d..6d6e37f 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/netcore/src/.DS_Store b/netcore/src/.DS_Store index a997e15..141eeaa 100644 Binary files a/netcore/src/.DS_Store and b/netcore/src/.DS_Store differ diff --git a/netcore/src/Application/.DS_Store b/netcore/src/Application/.DS_Store index 58d28c4..1f866c2 100644 Binary files a/netcore/src/Application/.DS_Store and b/netcore/src/Application/.DS_Store differ diff --git a/netcore/src/Application/NCC.API/.DS_Store b/netcore/src/Application/NCC.API/.DS_Store index 08c8cba..76012f3 100644 Binary files a/netcore/src/Application/NCC.API/.DS_Store and b/netcore/src/Application/NCC.API/.DS_Store differ diff --git a/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs b/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs index eedfb41..6827432 100644 --- a/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs +++ b/netcore/src/Modularity/Extend/NCC.Extend/LqStatisticsService.cs @@ -77,6 +77,7 @@ namespace NCC.Extend.LqStatistics /// 成功返回门店业绩统计列表 /// 服务器内部错误 [HttpGet("GetStorePerformanceList")] + [AllowAnonymous] public async Task> GetStorePerformanceList() { try @@ -135,6 +136,7 @@ namespace NCC.Extend.LqStatistics /// 成功返回门店开单业绩统计列表 /// 服务器内部错误 [HttpGet("GetStoreOrderPerformanceList")] + [AllowAnonymous] public async Task> GetStoreOrderPerformanceList() { try @@ -207,6 +209,7 @@ namespace NCC.Extend.LqStatistics /// 请求参数错误 /// 服务器内部错误 [HttpPost("StoreStatistics")] + [AllowAnonymous] public async Task GetStoreStatistics(StoreStatisticsInput input) { try @@ -313,6 +316,7 @@ namespace NCC.Extend.LqStatistics /// 请求参数错误 /// 服务器内部错误 [HttpPost("BusinessUnitStatistics")] + [AllowAnonymous] public async Task GetBusinessUnitStatistics(BusinessUnitStatisticsInput input) { try @@ -431,6 +435,7 @@ namespace NCC.Extend.LqStatistics /// 请求参数错误 /// 服务器内部错误 [HttpPost("OtherDepartmentStatistics")] + [AllowAnonymous] public async Task GetOtherDepartmentStatistics(OtherDepartmentStatisticsInput input) { try @@ -551,6 +556,7 @@ namespace NCC.Extend.LqStatistics /// 请求参数错误 /// 服务器内部错误 [HttpPost("ManagerStatistics")] + [AllowAnonymous] public async Task GetManagerStatistics(ManagerStatisticsInput input) { try @@ -675,6 +681,7 @@ namespace NCC.Extend.LqStatistics /// 请求参数错误 /// 服务器内部错误 [HttpPost("ManagerSummaryStatistics")] + [AllowAnonymous] public async Task GetManagerSummaryStatistics(ManagerStatisticsInput input) { try @@ -805,6 +812,7 @@ namespace NCC.Extend.LqStatistics /// 查询参数 /// 科技部老师业绩统计结果 [HttpPost("GetTechTeacherStatistics")] + [AllowAnonymous] public async Task> GetTechTeacherStatistics(TechTeacherStatisticsInput input) { try -- libgit2 0.21.4