瀏覽代碼

批量跑金控程序

lcl 6 月之前
父節點
當前提交
5815b1ee23
共有 1 個文件被更改,包括 10 次插入0 次删除
  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";
+        }
     
     
     }