浏览代码

增加分账回调接口
增加好哒微信支付回调接口

lcl 1 年之前
父节点
当前提交
791154f4c6
共有 4 个文件被更改,包括 62 次插入4 次删除
  1. 二进制
      .DS_Store
  2. 44 0
      Areas/Api/Controllers/PartOrderController.cs
  3. 15 1
      Areas/Api/Controllers/WeChatController.cs
  4. 3 3
      appsettings.json

二进制
.DS_Store


+ 44 - 0
Areas/Api/Controllers/PartOrderController.cs

@@ -0,0 +1,44 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.AspNetCore.Http;
+using Microsoft.Extensions.Logging;
+using Microsoft.Extensions.Options;
+using Microsoft.AspNetCore.Authorization;
+using System.Web;
+using MySystem.MainModels;
+using LitJson;
+using Library;
+using System.IO;
+
+namespace MySystem.Areas.Api.Controllers.v1
+{
+    [Area("Api")]
+    [Route("Api/[controller]/[action]")]
+    public class PartOrderController : BaseController
+    {
+        public PartOrderController(IHttpContextAccessor accessor, ILogger<BaseController> logger, IOptions<Setting> setting) : base(accessor, logger, setting)
+        {
+        }
+
+
+
+
+        #region 分账回调(好哒)
+        public Dictionary<string, string> Notice()
+        {
+            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
+
+
+
+    }
+}

+ 15 - 1
Areas/Api/Controllers/WeChatController.cs

@@ -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;
-        }        
+        }
     }
 }

+ 3 - 3
appsettings.json

@@ -9,10 +9,10 @@
   "AllowedHosts": "*",
   "Setting": {
     "ConnectionStrings": "",
-    "Host": "http://test.mpap.kexiaoshuang.com/",
-    "SourceHost": "http://test.mpap.kexiaoshuang.com/",
+    "Host": "http://test.mpsp.kexiaoshuang.com/",
+    "SourceHost": "http://test.mpsp.kexiaoshuang.com/",
     "OssHost": "http://oss.qrcodeplate.com",
-    "QrCodeHost": "http://test.mpap.kexiaoshuang.com/",
+    "QrCodeHost": "http://test.mpsp.kexiaoshuang.com/",
     "Database": "ApServer",
     "SqlConnStr": "server=rm-2vc27k81v217qs1t55o.mysql.cn-chengdu.rds.aliyuncs.com;port=3306;user=QrCodePlateMainServer;password=ll4DFaALMu9YIooM;database=QrCodePlateMainServer;charset=utf8;",
     "RedisConnStr": "8.137.99.48:6379,password=kxsmp@2023,DefaultDatabase=0,poolsize=500,preheat=50,asyncPipeline=true",