|
@@ -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 + "分润已同步,请勿重复操作";
|
|
|
+ }
|
|
|
}
|
|
|
}
|