12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- using System;
- using System.Collections.Generic;
- using System.Web;
- namespace LYFZ.WxPayAPI
- {
-
- public class WxPayConfig
- {
-
-
- public const string APPID = "";
- public const string MCHID = "";
- public const string KEY = "";
- public const string APPSECRET = "6fb7f621919340542ad4cf13a8922886";
-
-
- public const string SSLCERT_PATH = "cert/apiclient_cert.p12";
- public const string SSLCERT_PASSWORD = "1233410002";
-
-
- public const string NOTIFY_URL = "http://paysdk.weixin.qq.com/example/ResultNotifyPage.aspx";
-
-
- public const string IP = "8.8.8.8";
-
-
- public const string PROXY_URL = "http://10.152.18.220:8080";
-
-
- public const int REPORT_LEVENL = 1;
-
-
- public const int LOG_LEVENL = 3;
- }
- }
|