|
@@ -157,5 +157,17 @@ namespace MySystem.Controllers
|
|
|
return "ok";
|
|
|
}
|
|
|
|
|
|
+ public string addorder(string day)
|
|
|
+ {
|
|
|
+ string content = function.ReadInstance("/4/" + day + "/content.log");
|
|
|
+ MatchCollection mc = Regex.Matches(content, "{.*?}");
|
|
|
+ foreach(Match m in mc)
|
|
|
+ {
|
|
|
+ string sub = m.Value;
|
|
|
+ RedisDbconn.Instance.AddList("WeChatPayBackHd", sub);
|
|
|
+ }
|
|
|
+ return "ok";
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|