|
@@ -1,157 +0,0 @@
|
|
|
-using System;
|
|
|
-using System.Collections.Generic;
|
|
|
-using Library;
|
|
|
-using LitJson;
|
|
|
-using System.Linq;
|
|
|
-using System.Data;
|
|
|
-using System.Threading;
|
|
|
-
|
|
|
-namespace MySystem
|
|
|
-{
|
|
|
- public class StatService
|
|
|
- {
|
|
|
- public readonly static StatService Instance = new StatService();
|
|
|
- private StatService()
|
|
|
- { }
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- public void Start()
|
|
|
- {
|
|
|
- Thread th = new Thread(StartDo);
|
|
|
- th.IsBackground = true;
|
|
|
- th.Start();
|
|
|
- }
|
|
|
- public void StartDo()
|
|
|
- {
|
|
|
- while (true)
|
|
|
- {
|
|
|
- string content = RedisDbconn.Instance.RPop<string>("DoTableEveryMonthQueue");
|
|
|
- if(!string.IsNullOrEmpty(content) && DateTime.Now.Day < 15)
|
|
|
- {
|
|
|
- GetApMysqlData();
|
|
|
- }
|
|
|
- Thread.Sleep(60000);
|
|
|
- }
|
|
|
- }
|
|
|
- public void GetApMysqlData()
|
|
|
- {
|
|
|
- string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
|
|
|
- string Start = DateTime.Now.AddMonths(-1).ToString("yyyy-MM");
|
|
|
- string End = DateTime.Now.ToString("yyyy-MM");
|
|
|
- string check = function.ReadInstance("/MakeTable/" + Month + ".txt");
|
|
|
- if (!string.IsNullOrEmpty(check))
|
|
|
- {
|
|
|
- return;
|
|
|
- }
|
|
|
- function.WritePage("/MakeTable/", Month + ".txt", DateTime.Now.ToString());
|
|
|
- try
|
|
|
- {
|
|
|
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "抓取数据");
|
|
|
-
|
|
|
- Dictionary<string, string> fields = new Dictionary<string, string>();
|
|
|
- string createstr = "";
|
|
|
- string sqlstr = "";
|
|
|
-
|
|
|
- //创客表
|
|
|
- fields.Add("Id", "Id");
|
|
|
- fields.Add("ParentUserId", "ParentUserId");
|
|
|
- fields.Add("ParentNav", "'ParentNav'");
|
|
|
- fields.Add("UserLevel", "UserLevel");
|
|
|
- fields.Add("PreUserLevel", "PreUserLevel");
|
|
|
- createstr = "Id int NOT NULL AUTO_INCREMENT,ParentUserId int not null default 0,ParentNav longtext,UserLevel int not null default 0,PreUserLevel int not null default 0,PRIMARY KEY(Id)";
|
|
|
- sqlstr = "select Id,ParentUserId,ParentNav,UserLevel,(case when PreUserLevel is null then 0 else PreUserLevel end) PreUserLevel from (select Id,ParentUserId,ParentNav,UserLevel,(select Rank from UserRankWhite where Id=u.Id and CreateDate<'" + End + "-01 00:00:00' and UpdateDate>'" + End + "-01 00:00:00') PreUserLevel from Users u where AuthFlag=1) tb";
|
|
|
- AddTable(Month, "Users", createstr, sqlstr, fields);
|
|
|
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "抓取数据");
|
|
|
-
|
|
|
- //交易统计表-贷记卡
|
|
|
- fields = new Dictionary<string, string>();
|
|
|
- fields.Add("UserId", "UserId");
|
|
|
- fields.Add("QrPayFlag", "QrPayFlag");
|
|
|
- fields.Add("BrandId", "BrandId");
|
|
|
- fields.Add("HelpDirectTradeAmt", "HelpDirectTradeAmt");
|
|
|
- fields.Add("NotHelpDirectTradeAmt", "NotHelpDirectTradeAmt");
|
|
|
- fields.Add("ProfitDirectTradeAmt", "ProfitDirectTradeAmt");
|
|
|
- createstr = "Id int NOT NULL AUTO_INCREMENT,UserId int not null default 0,QrPayFlag int not null default 0,BrandId int not null default 0,HelpDirectTradeAmt decimal(18,2) not null default 0,NotHelpDirectTradeAmt decimal(18,2) not null default 0,ProfitDirectTradeAmt decimal(18,2) not null default 0,PRIMARY KEY(Id)";
|
|
|
- sqlstr = "select UserId,QueryCount QrPayFlag,BrandId,sum(HelpDirectTradeAmt) HelpDirectTradeAmt,sum(NotHelpDirectTradeAmt) NotHelpDirectTradeAmt,sum(ProfitDirectTradeAmt) ProfitDirectTradeAmt from TradeDaySummary where TradeMonth='" + Month + "' and SeoTitle='self' group by UserId,QueryCount,BrandId having sum(HelpDirectTradeAmt)>0 or sum(NotHelpDirectTradeAmt)>0 or sum(ProfitDirectTradeAmt)>0 order by UserId";
|
|
|
- AddTable(Month, "CreditTradeDaySummary", createstr, sqlstr, fields);
|
|
|
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "抓取数据");
|
|
|
-
|
|
|
- //交易统计表-借记卡
|
|
|
- fields = new Dictionary<string, string>();
|
|
|
- fields.Add("UserId", "UserId");
|
|
|
- fields.Add("QrPayFlag", "QrPayFlag");
|
|
|
- fields.Add("BrandId", "BrandId");
|
|
|
- fields.Add("HelpDirectDebitTradeAmt", "HelpDirectDebitTradeAmt");
|
|
|
- fields.Add("NotHelpDirectDebitTradeAmt", "NotHelpDirectDebitTradeAmt");
|
|
|
- fields.Add("HelpDirectDebitCapTradeAmt", "HelpDirectDebitCapTradeAmt");
|
|
|
- fields.Add("NotHelpDirectDebitCapTradeAmt", "NotHelpDirectDebitCapTradeAmt");
|
|
|
- fields.Add("HelpDirectDebitCapNum", "HelpDirectDebitCapNum");
|
|
|
- fields.Add("NotHelpDirectDebitCapNum", "NotHelpDirectDebitCapNum");
|
|
|
- fields.Add("ProfitDirectDebitTradeAmt", "ProfitDirectDebitTradeAmt");
|
|
|
- fields.Add("ProfitDirectDebitCapTradeAmt", "ProfitDirectDebitCapTradeAmt");
|
|
|
- fields.Add("ProfitDirectDebitCapNum", "ProfitDirectDebitCapNum");
|
|
|
- createstr = "Id int NOT NULL AUTO_INCREMENT,UserId int not null default 0,QrPayFlag int not null default 0,BrandId int not null default 0,HelpDirectDebitTradeAmt decimal(18,2) not null default 0,NotHelpDirectDebitTradeAmt decimal(18,2) not null default 0,HelpDirectDebitCapTradeAmt decimal(18,2) not null default 0,NotHelpDirectDebitCapTradeAmt decimal(18,2) not null default 0,HelpDirectDebitCapNum decimal(18,2) not null default 0,NotHelpDirectDebitCapNum decimal(18,2) not null default 0,ProfitDirectDebitTradeAmt decimal(18,2) not null default 0,ProfitDirectDebitCapTradeAmt decimal(18,2) not null default 0,ProfitDirectDebitCapNum decimal(18,2) not null default 0,PRIMARY KEY(Id)";
|
|
|
- sqlstr = "select UserId,QueryCount QrPayFlag,BrandId,sum(HelpDirectDebitTradeAmt) HelpDirectDebitTradeAmt,sum(NotHelpDirectDebitTradeAmt) NotHelpDirectDebitTradeAmt,sum(HelpDirectDebitCapTradeAmt) HelpDirectDebitCapTradeAmt,sum(NotHelpDirectDebitCapTradeAmt) NotHelpDirectDebitCapTradeAmt,sum(HelpDirectDebitCapNum) HelpDirectDebitCapNum,sum(NotHelpDirectDebitCapNum) NotHelpDirectDebitCapNum,sum(ProfitDirectDebitTradeAmt) ProfitDirectDebitTradeAmt,sum(ProfitDirectDebitCapTradeAmt) ProfitDirectDebitCapTradeAmt,sum(ProfitDirectDebitCapNum) ProfitDirectDebitCapNum from TradeDaySummary where TradeMonth='" + Month + "' and SeoTitle='self' group by UserId,QueryCount,BrandId having sum(HelpDirectDebitTradeAmt)>0 or sum(NotHelpDirectDebitTradeAmt)>0 or sum(HelpDirectDebitCapTradeAmt)>0 or sum(NotHelpDirectDebitCapTradeAmt)>0 order by UserId";
|
|
|
- AddTable(Month, "DebitTradeDaySummary", createstr, sqlstr, fields);
|
|
|
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "抓取数据");
|
|
|
-
|
|
|
- //交易记录表-补贴
|
|
|
- fields = new Dictionary<string, string>();
|
|
|
- fields.Add("SnNo", "'SnNo'");
|
|
|
- fields.Add("UserId", "UserId");
|
|
|
- fields.Add("QrPayFlag", "QrPayFlag");
|
|
|
- fields.Add("MerHelpFlag", "MerHelpFlag");
|
|
|
- fields.Add("BrandId", "BrandId");
|
|
|
- fields.Add("Version", "Version");
|
|
|
- fields.Add("TradeAmount", "TradeAmount");
|
|
|
- createstr = "Id int NOT NULL AUTO_INCREMENT,SnNo varchar(50),UserId int not null default 0,QrPayFlag int not null default 0,MerHelpFlag int not null default 0,Version int not null default 0,BrandId int not null default 0,TradeAmount decimal(18,2) not null default 0,PRIMARY KEY(Id)";
|
|
|
- sqlstr = "select SnNo,UserId,QrPayFlag,MerHelpFlag,BrandId,Version,sum(TradeAmount) TradeAmount from TradeRecord where Id>3593404 and CreateDate>='" + Start + "-01 00:00:00' and CreateDate<'" + End + "-01 00:00:00' and BankCardType!=0 group by SnNo,UserId,QrPayFlag,MerHelpFlag,BrandId,Version";
|
|
|
- AddTable(Month, "TradeRecord", createstr, sqlstr, fields);
|
|
|
-
|
|
|
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n\n", "抓取数据");
|
|
|
- }
|
|
|
- catch(Exception ex)
|
|
|
- {
|
|
|
- function.WriteLog(DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss.fff") + "\n" + ex.ToString() + "\n\n", "抓取数据异常");
|
|
|
- }
|
|
|
-
|
|
|
- RedisDbconn.Instance.AddList("DoProfitQueue", "1");
|
|
|
- }
|
|
|
-
|
|
|
- public void AddTable(string Month, string TableName, string createstr, string sqlstr, Dictionary<string, string> fields)
|
|
|
- {
|
|
|
- string connstr = Library.ConfigurationManager.AppSettings["SqlConnStr"].ToString();
|
|
|
- CustomerSqlConn.op("CREATE table KxsStatServer." + TableName + Month + "(" + createstr + ")ENGINE=InnoDB DEFAULT charset=utf8;", connstr);
|
|
|
- string fieldstrs = "";
|
|
|
- foreach(string field in fields.Keys)
|
|
|
- {
|
|
|
- fieldstrs += field.Trim(',') + ",";
|
|
|
- }
|
|
|
- CustomerSqlConn.op("insert into KxsStatServer." + TableName + Month + " (" + fieldstrs.TrimEnd(',') + ") " + sqlstr, connstr);
|
|
|
- // string sql = "";
|
|
|
- // int index = 0;
|
|
|
- // DataTable dt = CustomerSqlConn.dtable(sqlstr, connstr);
|
|
|
- // foreach(DataRow dr in dt.Rows)
|
|
|
- // {
|
|
|
- // index += 1;
|
|
|
- // string fieldstrs = "";
|
|
|
- // string vals = "";
|
|
|
- // foreach(string field in fields.Keys)
|
|
|
- // {
|
|
|
- // fieldstrs += field + ",";
|
|
|
- // vals += fields[field].Replace(field, dr[field].ToString()) + ",";
|
|
|
- // }
|
|
|
- // sql += "insert into " + TableName + Month + " (" + fieldstrs.TrimEnd(',') + ") values (" + vals.TrimEnd(',') + ");\n";
|
|
|
- // if(index % 1000 == 0)
|
|
|
- // {
|
|
|
- // CustomerSqlConn.op(sql, mainconnstr);
|
|
|
- // sql = "";
|
|
|
- // }
|
|
|
- // }
|
|
|
- // function.WriteLog(dt.Rows.Count.ToString(), "抓取数据");
|
|
|
- // CustomerSqlConn.op(sql, mainconnstr);
|
|
|
- }
|
|
|
- }
|
|
|
-}
|