浏览代码

乐刷费率接口日志

lichunlei 2 年之前
父节点
当前提交
1695a3062e
共有 1 个文件被更改,包括 4 次插入0 次删除
  1. 4 0
      AppStart/Helper/SetDepositPostService.cs

+ 4 - 0
AppStart/Helper/SetDepositPostService.cs

@@ -609,6 +609,8 @@ namespace MySystem
 
         public string LSReqFunc(string apiPath, string data, int BrandId)
         {
+            function.WriteLog(DateTime.Now.ToString(), "设置乐刷机具费率");
+            function.WriteLog(data, "设置乐刷机具费率");
             string aeskey = function.MD5_16(Guid.NewGuid().ToString());
             string req = "{";
             if (BrandId == 4)
@@ -625,7 +627,9 @@ namespace MySystem
             req += "\"data\":\"" + LSAesEncrypt(data, aeskey) + "\",";
             req += "\"sign\":\"" + LSEncrypt(aeskey) + "\"";
             req += "}";
+            function.WriteLog(req, "设置乐刷机具费率");
             string result = function.PostWebRequest(LSReqUrl + apiPath, req, "application/json");
+            function.WriteLog(result + "\n\n", "设置乐刷机具费率");
             return result;
         }