|
@@ -40,6 +40,20 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
+ #region 微信服务平台支付回调(好哒)
|
|
|
+ public Dictionary<string, string> HdNotice()
|
|
|
+ {
|
|
|
+ StreamReader sr = new StreamReader(Request.Body);
|
|
|
+ string requestMes = sr.ReadToEnd();
|
|
|
+ function.WriteLog(DateTime.Now.ToString() + "\r\n" + requestMes + "\r\n\r\n", "微信服务平台支付回调(好哒)");
|
|
|
+ RedisDbconn.Instance.AddList("WeChatPayBackForHd", requestMes);
|
|
|
+ Dictionary<string, string> dic = new Dictionary<string, string>();
|
|
|
+ dic.Add("resultCode", "1");
|
|
|
+ return dic;
|
|
|
+ }
|
|
|
+ #endregion
|
|
|
+
|
|
|
+
|
|
|
public Dictionary<string, string> test()
|
|
|
{
|
|
|
string AppId = "wx5417e0770bb19c4e";
|
|
@@ -52,6 +66,6 @@ namespace MySystem.Areas.Api.Controllers.v1
|
|
|
// Dictionary<string, string> dic = new WeChatFunction(_accessor.HttpContext).Pay(AppId, MchId, SubMchId, 0.1M, DateTime.Now.ToString("yyyyMMddHHmmssfff"), Description, OpenId, Key, NotifyUrl);
|
|
|
Dictionary<string, string> dic = new WeChatFunction(_accessor.HttpContext).Refund(AppId, MchId, SubMchId, 1M, 1M, "2022020817492424848364549", DateTime.Now.ToString("yyyyMMddHHmmssfff"), Description, OpenId, Key, NotifyUrl);
|
|
|
return dic;
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
}
|