12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- namespace OASystem.API.OAMethodLib
- {
- public static class BaseConfig
- {
-
-
-
- public const string Version = "0.0.1";
-
-
-
- public const string Encoding = "UTF-8";
-
-
-
- public const string SignMethod = "02";
-
-
-
- public const string MER_ID = "3089991727300CV";
-
-
-
- public const string USER_ID = "V000072134";
-
-
-
- public const string APPID = "8ab74856-8772-45c9-96db-54cb30ab9f74";
-
-
-
- public const string APP_SECRET = "5b96f20a-011f-4254-8be8-9a5ceb2f317f";
- private static X9ECParameters x9ECParameters = GMNamedCurves.GetByName("sm2p256v1");
- private static ECDomainParameters ecDomainParameters = new ECDomainParameters(x9ECParameters.Curve, x9ECParameters.G, x9ECParameters.N);
-
-
-
- public const string SM2_KEY_TITLE = "3059301306072a8648ce3d020106082a811ccf5501822d03420004";
-
-
-
- public const string SM_USER_ID = "1234567812345678";
-
-
-
- public const string SM_PRIVATE_KEY = "D5F2AFA24E6BA9071B54A8C9AD735F9A1DE9C4657FA386C09B592694BC118B38";
-
-
-
- public const string SM_PUBLIC_KEY = "MFkwEwYHKoZIzj0CAQYIKoEcz1UBgi0DQgAE6Q+fktsnY9OFP+LpSR5Udbxf5zHCFO0PmOKlFNTxDIGl8jsPbbB/9ET23NV+acSz4FEkzD74sW2iiNVHRLiKHg==";
- }
- public static class UrlConfig
- {
-
-
-
- public const string NotifyUrl = "https://payment.wh-trip.com:8082/Notify";
-
-
-
- public const string CollectionQRCode = "https://api.cmburl.cn:8065/polypay/v1.0/mchorders/qrcodeapply";
-
-
-
- public const string OrderqueryUrl = "https://api.cmburl.cn:8065/polypay/v1.0/mchorders/orderquery";
-
-
-
- public const string RefundUrl = "https://api.cmburl.cn:8065/polypay/v1.0/mchorders/refund";
-
-
-
- public const string RefundqueryUrl = "https://api.cmburl.cn:8065/polypay/v1.0/mchorders/refundquery";
-
-
-
- public const string ZFBQRCodeUrl = "https://api.cmburl.cn:8065/polypay/v1.0/mchorders/zfbqrcode";
- }
- }
|