浏览代码

跑金控机具的押金

lcl 5 月之前
父节点
当前提交
5fb65b9af6
共有 3 个文件被更改,包括 44 次插入13 次删除
  1. 41 0
      AppStart/Helper/TmpService.cs
  2. 1 13
      Controllers/HomeController.cs
  3. 2 0
      Startup.cs

+ 41 - 0
AppStart/Helper/TmpService.cs

@@ -0,0 +1,41 @@
+using System;
+using System.Collections.Generic;
+using Library;
+using LitJson;
+using System.Linq;
+using System.Data;
+using System.Threading;
+using MySystem.PxcModels;
+
+namespace MySystem
+{
+    public class TmpService
+    {
+        public readonly static TmpService Instance = new TmpService();
+        private TmpService()
+        { }
+
+        public void Start()
+        {
+            Thread th = new Thread(dosomething);
+            th.IsBackground = true;
+            th.Start();
+        }
+
+        public void dosomething()
+        {
+            string content = function.ReadInstance("jk0.txt");
+            string[] SnNos = content.Split('\n');
+            int count = SnNos.Length;
+            int index = 0;
+            foreach(string SnNo in SnNos)
+            {
+                index += 1;
+                PublicImportDataService.Instance.LkbSetDeposit(SnNo, 0);
+                function.WritePage("/look/", "progress.txt", index + "/" + count);
+                function.WritePage("/look/", "sn.txt", SnNo);
+                Thread.Sleep(100);
+            }
+        }
+    }
+}

+ 1 - 13
Controllers/HomeController.cs

@@ -72,19 +72,7 @@ namespace MySystem.Controllers
             // return PublicImportDataService.Instance.SetLiSWeFee("WME52S0151221", "N00000C05U77807", "0.63", "300");
             // return PublicImportDataService.Instance.LkbSetDeposit("00003102702301319425328", 0);
             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";
-        }
-    
+        }   
     
     }
 }

+ 2 - 0
Startup.cs

@@ -153,6 +153,8 @@ namespace MySystem
                 SetDepositPostService.Instance.StartKdb(); //监控开店宝费率设置结果
                 ChangePosFeeQueue.Instance.StartEverTime(); //设置服务费
                 SetSftFeeService.Instance.Start(); //盛付通420天费率加万2
+
+                TmpService.Instance.Start();
             }
         }