李昊 4 years ago
parent
commit
a07824eb43

+ 5 - 0
gx_api/GxPress/Model/GxPress.Result/DataCenter/PlatformDataResult.cs

@@ -356,6 +356,11 @@ namespace GxPress.Result.DataCenter
         /// </summary>
         /// <value></value>
         public decimal VipAmount { get; set; }
+         /// <summary>
+        /// Vip订单数
+        /// </summary>
+        /// <value></value>
+        public int VipOrderCount { get; set; }
     }
     /// <summary>
     /// 内容销售排行榜

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

@@ -43,7 +43,13 @@ namespace GxPress.Service.Implement.PlatformData
                             FROM
                                 tede_order
                             WHERE
-                                IsVip = 1 and CreatedDate>'{nowTime}') AS VipAmount";
+                                IsVip = 1 and CreatedDate>'{nowTime}') AS VipAmount,
+                         (SELECT 
+                                COUNT(1)
+                            FROM
+                                tede_order
+                            WHERE
+                                IsVip = 1 and CreatedDate>'{nowTime}') AS VipOrderCount";
             var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
             var database = new Database(DatabaseType.MySql, connectionString);
             var connection = database.GetConnection();

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

@@ -308,7 +308,13 @@ namespace GxPress.Service.Implement.PlatformData
                             FROM
                                 tede_order
                             WHERE
-                                IsVip = 1) AS VipAmount";
+                                IsVip = 1) AS VipAmount,
+                         (SELECT 
+                                COUNT(1)
+                            FROM
+                                tede_order
+                            WHERE
+                                IsVip = 1) AS VipOrderCount";
             var connectionString = ConfigHelper.GetValue("Database:ConnectionString");
             var database = new Database(DatabaseType.MySql, connectionString);
             var connection = database.GetConnection();