|
|
@@ -102,20 +102,20 @@ namespace MySystem.Controllers
|
|
|
{
|
|
|
string logstore = "spserver";
|
|
|
Dictionary<string, string> brands = new Dictionary<string, string>();
|
|
|
- brands.Add("开店宝", "2");
|
|
|
- brands.Add("乐刷", "4");
|
|
|
- brands.Add("立刷", "6");
|
|
|
- brands.Add("立刷微电签", "22");
|
|
|
- brands.Add("盛付通", "7");
|
|
|
- brands.Add("海科电签", "8");
|
|
|
- brands.Add("海科大POS", "9");
|
|
|
- brands.Add("联动", "10");
|
|
|
+ // brands.Add("开店宝", "2");
|
|
|
+ // brands.Add("乐刷", "4");
|
|
|
+ // brands.Add("立刷", "6");
|
|
|
+ // brands.Add("立刷微电签", "22");
|
|
|
+ // brands.Add("盛付通", "7");
|
|
|
+ // brands.Add("海科电签", "8");
|
|
|
+ // brands.Add("海科大POS", "9");
|
|
|
+ // brands.Add("联动", "10");
|
|
|
brands.Add("盒易付电签", "12");
|
|
|
- brands.Add("联客宝", "15");
|
|
|
+ // brands.Add("联客宝", "15");
|
|
|
brands.Add("拉卡拉", "30");
|
|
|
- brands.Add("联动掌中宝", "34");
|
|
|
- brands.Add("国通星驿付", "38");
|
|
|
- brands.Add("金控", "27");
|
|
|
+ // brands.Add("联动掌中宝", "34");
|
|
|
+ // brands.Add("国通星驿付", "38");
|
|
|
+ // brands.Add("金控", "27");
|
|
|
foreach(var topic in brands.Keys)
|
|
|
{
|
|
|
int page = 0;
|
|
|
@@ -123,7 +123,7 @@ namespace MySystem.Controllers
|
|
|
while(op)
|
|
|
{
|
|
|
int skip = page * 50;
|
|
|
- IList<IDictionary<string, string>> logs = await SLS.GetLogs(logstore, topic + "交易推送消息", "", DateTimeOffset.Parse("2026-01-23 00:00:00"), skip, 50);
|
|
|
+ IList<IDictionary<string, string>> logs = await SLS.GetLogs(logstore, topic + "商户信息通知推送消息", "", DateTimeOffset.Parse("2026-01-23 00:00:00"), skip, 50);
|
|
|
if(logs.Count > 0)
|
|
|
{
|
|
|
foreach(IDictionary<string, string> log in logs)
|
|
|
@@ -136,7 +136,7 @@ namespace MySystem.Controllers
|
|
|
{
|
|
|
content = content.Substring(content.IndexOf("{"));
|
|
|
}
|
|
|
- RedisDbconn.Instance.AddList("kxs_trade_list_" + brands[topic], content);
|
|
|
+ RedisDbconn.Instance.AddList("kxs_merchantinfo_list_" + brands[topic], content);
|
|
|
}
|
|
|
}
|
|
|
page += 1;
|