Browse Source

批量跑金控程序

lcl 6 months ago
parent
commit
5815b1ee23
1 changed files with 10 additions and 0 deletions
  1. 10 0
      Controllers/HomeController.cs

+ 10 - 0
Controllers/HomeController.cs

@@ -74,6 +74,16 @@ namespace MySystem.Controllers
             return PublicImportDataService.Instance.LkbSetFee("00000302QRNL20019214", 0.63M, 300);
         }
         
+        public string testJk()
+        {
+            string content = function.ReadInstance("jk0.txt");
+            string[] SnNos = content.Split('\n');
+            foreach(string SnNo in SnNos)
+            {
+                PublicImportDataService.Instance.LkbSetDeposit(SnNo, 0);
+            }
+            return "ok";
+        }
     
     
     }