李昊 4 years ago
parent
commit
35a1930f30

+ 24 - 0
gx_api/GxPress/Api/GxPress.Api/AdminControllers/AdminPlatformDataController.cs

@@ -73,5 +73,29 @@ namespace GxPress.Api.AdminControllers
             result.PlatformTodayVisitResult = await platformDataService.GetPlatformTodayVisitResult();
             return result;
         }
+        /// <summary>
+        /// 商务数据
+        /// </summary>
+        /// <returns></returns>
+        [HttpGet("commerce-data")]
+        public async Task<CommerceDataResult> GetCommerceDataResult()
+        {
+            return await platformDataService.GetCommerceDataResult();
+        }
+        /// <summary>
+        /// 运营数据
+        /// </summary>
+        /// <returns></returns>
+        [HttpGet("operation-data")]
+        public async Task<OperationDataResult> GetOperationDataResult()
+        {
+            var result = new OperationDataResult();
+            result.PlatformOperationDataResult = await platformDataService.GetPlatformDataAsync();
+            result.UserIncreaseResult = await platformDataService.GetUserIncreaseResult();
+            result.UserAreaDistributingResults = await platformDataService.GetUserAreaDistributingResults();
+            result.UserVipProportionResult = await platformDataService.GetUserVipProportionResult();
+            result.OnlineUserResult = await platformDataService.GetOnlineUserResult();
+            return result;
+        }
     }
 }

+ 28 - 0
gx_api/GxPress/Model/GxPress.Result/DataCenter/CommerceDataResult.cs

@@ -0,0 +1,28 @@
+using System.Collections.Generic;
+
+namespace GxPress.Result.DataCenter
+{
+    /// <summary>
+    /// 商务数据
+    /// </summary>
+    public class CommerceDataResult
+    {
+        /// <summary>
+        /// 平台商务数据
+        /// </summary>
+        public PlatformCommerceResult PlatformCommerceResult { get; set; }
+        /// <summary>
+        /// 今日平台商务数据
+        /// </summary>
+        public PlatformCommerceResult PlatformTodayCommerceResult { get; set; }
+        /// <summary>
+        /// 内容销售排行榜
+        /// </summary>
+        /// <value></value>
+        public List<ContentSaleRankingResult> ContentSaleRankingResults { get; set; }
+         /// <summary>
+        /// 内容分类销售占比
+        /// </summary>
+        public List<ContentSaleProportionResult> ContentSaleProportionResults { get; set; }
+    }
+}

+ 36 - 0
gx_api/GxPress/Model/GxPress.Result/DataCenter/OperationDataResult.cs

@@ -0,0 +1,36 @@
+using System.Collections.Generic;
+
+namespace GxPress.Result.DataCenter
+{
+    /// <summary>
+    /// 运营数据
+    /// </summary>
+    public class OperationDataResult
+    {
+         /// <summary>
+        /// 平台运营数据
+        /// </summary>
+        /// <value></value>
+        public PlatformOperationDataResult PlatformOperationDataResult { get; set; }
+         /// <summary>
+        /// 用户总数增长趋势
+        /// </summary>
+        /// <value></value>
+        public UserIncreaseResult UserIncreaseResult { get; set; }
+        /// <summary>
+        /// 用户地区分布
+        /// </summary>
+        /// <value></value>
+        public List<UserAreaDistributingResult> UserAreaDistributingResults { get; set; }
+        /// <summary>
+        ///  会员用户占比
+        /// </summary>
+        /// <value></value>
+        public UserVipProportionResult UserVipProportionResult { get; set; }
+        /// <summary>
+        /// 实时在线人数
+        /// </summary>
+        /// <value></value>
+        public OnlineUserResult OnlineUserResult { get; set; }
+    }
+}

+ 53 - 0
gx_api/GxPress/Service/GxPress.Service.Implement/PlatformData/PlatformDataService.Commerce.cs

@@ -0,0 +1,53 @@
+using System;
+using System.Threading.Tasks;
+using Dapper;
+using Datory;
+using GxPress.Common.Tools;
+using GxPress.Result.DataCenter;
+
+namespace GxPress.Service.Implement.PlatformData
+{
+    public partial class PlatformDataService
+    {
+        /// <summary>
+        /// 商务数据
+        /// </summary>
+        /// <returns></returns>
+        public async Task<CommerceDataResult> GetCommerceDataResult()
+        {
+            var result = new CommerceDataResult();
+            result.PlatformCommerceResult = await GetPlatformCommerceResult();
+            result.ContentSaleRankingResults = await GetContentSaleRankingResults();
+            result.ContentSaleProportionResults = await GetContentSaleProportionResults();
+            result.PlatformTodayCommerceResult = await GetPlatformTodayCommerceResult();
+            return result;
+        }
+        public async Task<PlatformCommerceResult> GetPlatformTodayCommerceResult()
+        {
+            var nowTime = DateTime.Now.ToString("yyyy-MM-dd");
+            var sql = $@"SELECT 
+                        (SELECT 
+                                SUM(Price)
+                            FROM
+                                tede_order where CreatedDate>'{nowTime}') AS Amount,
+                        (SELECT 
+                                COUNT(1)
+                            FROM
+                                tede_order where CreatedDate>'{nowTime}') AS OrderCount,
+                        (SELECT 
+                                COUNT(1)
+                            FROM
+                                tede_user where CreatedDate>'{nowTime}') AS VipUserCount,
+                        (SELECT 
+                                SUM(Price)
+                            FROM
+                                tede_order
+                            WHERE
+                                IsVip = 1 and CreatedDate>'{nowTime}') AS VipAmount";
+            var connectionString = ConfigHelper.GetValue("Database: ConnectionString");
+            var database = new Database(DatabaseType.MySql, connectionString);
+            var connection = database.GetConnection();
+            return await connection.QueryFirstAsync<PlatformCommerceResult>(sql);
+        }
+    }
+}

+ 1 - 1
gx_api/GxPress/Service/GxPress.Service.Implement/PlatformData/PlatformDataService.Visit.cs

@@ -10,7 +10,7 @@ namespace GxPress.Service.Implement.PlatformData
     public partial class PlatformDataService
     {
         /// <summary>
-        ///  平台累计访问数据(次)
+        ///  今日访问数据(次)
         /// </summary>
         /// <returns></returns>
         public async Task<PlatformAccumulativeVisitResult> GetPlatformTodayVisitResult()

+ 5 - 0
gx_api/GxPress/Service/GxPress.Service.Interface/PlatformData/IPlatformDataService.cs

@@ -81,5 +81,10 @@ namespace GxPress.Service.Interface.PlatformData
         /// </summary>
         /// <returns></returns>
          Task<PlatformAccumulativeVisitResult> GetPlatformTodayVisitResult();
+         /// <summary>
+        /// 商务数据
+        /// </summary>
+        /// <returns></returns>
+         Task<CommerceDataResult> GetCommerceDataResult();
     }
 }