12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- namespace GxPress.Common.WechatPay
- {
- public class DemoConfig : IConfig
- {
- public DemoConfig()
- {
- }
-
-
- public string GetAppID()
- {
- return "wx16f676b527629140";
- }
- public string GetMchID()
- {
- return "100015452468";
- }
- public string GetKey()
- {
- return "";
- }
- public string GetAppSecret()
- {
- return "";
- }
-
-
- public string GetSSlCertPath()
- {
- return "";
- }
- public string GetSSlCertPassword()
- {
- return "";
- }
-
-
- public string GetNotifyUrl()
- {
- return "";
- }
-
-
- public string GetIp()
- {
- return "0.0.0.0";
- }
-
-
- public string GetProxyUrl()
- {
- return "";
- }
-
-
- public int GetReportLevel()
- {
- return 1;
- }
-
-
- public int GetLogLevel()
- {
- return 1;
- }
- }
- }
|