Browse Source

批量跑金控服务费

lcl 5 months ago
parent
commit
fb48423c25
3 changed files with 16 additions and 3 deletions
  1. 14 1
      AppStart/Helper/TmpService.cs
  2. 1 1
      Controllers/HomeController.cs
  3. 1 1
      Startup.cs

+ 14 - 1
AppStart/Helper/TmpService.cs

@@ -24,11 +24,24 @@ namespace MySystem
 
         public void dosomething()
         {
-            string content = function.ReadInstance("jk0.txt");
+            string content = function.ReadInstance("jk299.txt");
             string[] SnNos = content.Split('\n');
             int count = SnNos.Length;
             int index = 0;
             foreach(string SnNo in SnNos)
+            {
+                index += 1;
+                PublicImportDataService.Instance.LkbSetDeposit(SnNo, 299);
+                function.WritePage("/look/", "progress.txt", index + "/" + count);
+                function.WritePage("/look/", "sn.txt", SnNo);
+                Thread.Sleep(100);
+            }
+
+            content = function.ReadInstance("jk0.txt");
+            SnNos = content.Split('\n');
+            count = SnNos.Length;
+            index = 0;
+            foreach(string SnNo in SnNos)
             {
                 index += 1;
                 PublicImportDataService.Instance.LkbSetDeposit(SnNo, 0);

+ 1 - 1
Controllers/HomeController.cs

@@ -70,7 +70,7 @@ namespace MySystem.Controllers
             // {"existsFlag":"1","feeList":[{"feeCalcType":"M1","fixed":"0","rate":"0.24"},{"feeCalcType":"M2","fixed":"0","rate":"0.24"},{"feeCalcType":"M3","fixed":"0","rate":"0.38"},{"feeCalcType":"M4","fixed":"0","rate":"2.63"},{"feeCalcType":"M5","fixed":"0","rate":"0.63"},{"feeCalcType":"M7","fixed":"0"},{"feeCalcType":"M8","fixed":"0"},{"feeCalcType":"M9","fixed":"0"},{"feeCalcType":"T0","fixed":"1","rate":"300"}],"merchNo":"N00000D0022G499","ret_code":"00","ret_msg":"请求成功"}
 
             // return PublicImportDataService.Instance.SetLiSWeFee("WME52S0151221", "N00000C05U77807", "0.63", "300");
-            return PublicImportDataService.Instance.LkbSetDeposit("00000102233PBEJG5408", 0);
+            return PublicImportDataService.Instance.LkbSetDeposit("00000302QRNL15510103", 299);
             // return PublicImportDataService.Instance.LkbSetFee("00000302QRNL20019214", 0.63M, 300);
         }   
     

+ 1 - 1
Startup.cs

@@ -154,7 +154,7 @@ namespace MySystem
                 ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
                 SetSftFeeService.Instance.Start(); //盛付通420天费率加万2
 
-                // TmpService.Instance.Start();
+                TmpService.Instance.Start();
             }
         }