浏览代码

读取交易数据用只读库

lcl 1 周之前
父节点
当前提交
92e7efc74f
共有 2 个文件被更改,包括 4 次插入2 次删除
  1. 3 1
      AppStart/Helper/LeaderCompPrize2Helper.cs
  2. 1 1
      Startup.cs

+ 3 - 1
AppStart/Helper/LeaderCompPrize2Helper.cs

@@ -160,9 +160,11 @@ namespace MySystem
                     tmp.EveryMonthData = "1";
                     db.SaveChanges();
                 }
+
+                Thread.Sleep(60000);
                 
                 // List<LeaderCompTradeStat> stats = db.LeaderCompTradeStat.Where(m => m.StatMonth == MonthString).ToList();
-                DataTable stats = CustomerSqlConn.dtable("select UserId,ParentUserId,ParentNav,TradeAmount,LeaderType,(select sum(TradeAmount) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount>=30000000) BigTradeAmount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount>=30000000) BigCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount<30000000) SmallCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and LeaderType=2) LeaderCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and LeaderType>2) OperaterCount from LeaderCompTradeStat p where StatMonth='" + MonthString + "'", MysqlConn.SqlConnStr);
+                DataTable stats = CustomerSqlConn.dtable("select UserId,ParentUserId,ParentNav,TradeAmount,LeaderType,(select sum(TradeAmount) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount>=30000000) BigTradeAmount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount>=30000000) BigCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and TradeAmount<30000000) SmallCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and LeaderType=2) LeaderCount,(select count(1) from LeaderCompTradeStat where ParentUserId=p.UserId and LeaderType>2) OperaterCount from LeaderCompTradeStat p where StatMonth='" + MonthString + "'", MysqlConn.ReadSqlConnStr);
                 function.WriteLog(stats.Rows.Count.ToString(), "领导人达标奖励日志");
                 string sqlString = "";
                 foreach(DataRow stat in stats.Rows)

+ 1 - 1
Startup.cs

@@ -172,7 +172,7 @@ namespace MySystem
             // }
             
 
-            LeaderCompPrize2Helper.Instance.StartTest();
+            // LeaderCompPrize2Helper.Instance.StartTest();
             // RecommandKingHelper.Instance.StartTest();
         }