Browse Source

增加推送二维码商户数据地址

lcl 1 month ago
parent
commit
baae8044a5
4 changed files with 4 additions and 2 deletions
  1. 1 1
      AppStart/StartHelper.cs
  2. 1 1
      Startup.cs
  3. 1 0
      Util/Queue/PosPushHelper.cs
  4. 1 0
      Util/Queue/PosRePushHelper.cs

+ 1 - 1
AppStart/StartHelper.cs

@@ -24,7 +24,7 @@
             }
             else
             {
-                // PosPushHelper.Instance.Start(); //推送机具数据
+                PosPushHelper.Instance.Start(); //推送机具数据
                 // PosPushHelper.Instance.StartTest(); //推送机具数据
                 // SourceHelper.Instance.Start(); //获取原始数据队列
                 // PushHelper.Instance.Start(); //推送队列

+ 1 - 1
Startup.cs

@@ -61,7 +61,7 @@ namespace MySystem
 
             MySystemLib.SystemPublicFuction.appcheck = "success";
             RedisDbconn.csredis = new CSRedis.CSRedisClient(Configuration["Setting:RedisConnStr"]);
-            RedisDbconnTest.csredis = new CSRedis.CSRedisClient(Configuration["Setting:RedisConnStrTest"]);
+            // RedisDbconnTest.csredis = new CSRedis.CSRedisClient(Configuration["Setting:RedisConnStrTest"]);
         }
 
         // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.

+ 1 - 0
Util/Queue/PosPushHelper.cs

@@ -93,6 +93,7 @@ namespace MySystem
             if(dataType == "trade") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/trade";
             if(dataType == "deposit") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/cash";
             if(dataType == "active") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/extActData";
+            if(dataType == "qr_bind") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/saveHaoDaQrCodeMchInfo";
             function.WriteLog("url:" + url, "统一推送日志");
             string encryptContent = AesEncrypt(dataContent);
             encryptContent = Convert.ToBase64String(Encoding.UTF8.GetBytes(encryptContent));

+ 1 - 0
Util/Queue/PosRePushHelper.cs

@@ -57,6 +57,7 @@ namespace MySystem
                 if(dataType == "trade") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/trade";
                 if(dataType == "deposit") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/cash";
                 if(dataType == "active") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/extActData";
+                if(dataType == "qr_bind") url = "https://apigateway.kexiaoshuang.com/v1/kxs/statServer/sp/saveHaoDaQrCodeMchInfo";
                 string res = PostWebRequest(url, sub.EncryptContent, new Dictionary<string, string>());
                 if(res.Contains("\"status\""))
                 {