浏览代码

添加手动发分润方法

lcl 1 年之前
父节点
当前提交
a118c34d5e
共有 2 个文件被更改,包括 23 次插入0 次删除
  1. 18 0
      Controllers/HomeController.cs
  2. 5 0
      global.json

+ 18 - 0
Controllers/HomeController.cs

@@ -107,5 +107,23 @@ namespace MySystem.Controllers
             // db.Dispose();
             return "ok";
         }
+
+        public string profit(int t = 0)
+        {
+            string date = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
+            string OpTypeString = "";
+            if (t > 0)
+            {
+                OpTypeString += "-" + t;
+            }
+            string check = function.ReadInstance("/Balance/1/" + date + OpTypeString + ".txt");
+            if (string.IsNullOrEmpty(check))
+            {
+                function.WritePage("/Balance/1/", date + OpTypeString + ".txt", DateTime.Now.ToString());
+                RedisDbconn.Instance.AddList("SycnProfitQueue2", "1#cut#" + date + "#cut#" + t + "#cut#系统");
+                return "success";
+            }
+            return date + "分润已同步,请勿重复操作";
+        }
     }
 }

+ 5 - 0
global.json

@@ -0,0 +1,5 @@
+{
+  "sdk": {
+    "version": "3.0.103"
+  }
+}