Files

58 lines
2.3 KiB
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Web;
namespace Mtxfw.Utility
{
/**
*
*/
public class WxPayConfig
{
//=======【基本信息设置】=====================================
/*
* APPIDAPPID
* MCHID
* KEY
* APPSECRETsecertJSAPI支付的时候需要配置
*/
public const string APPID = "wxe965c716efd6017e";
public const string MCHID = "1532040961";
public const string KEY = "hxchengxinm8848vipxltgocom999888";
public const string APPSECRET = "9a0a53d733dcc78cbff07b93df5d3e47";
//=======【证书路径设置】=====================================
/* ,退
*/
public const string SSLCERT_PATH = "cert/apiclient_cert.p12";
public const string SSLCERT_PASSWORD = "1233410002";
//=======【支付结果通知url】=====================================
/* url
*/
public const string NOTIFY_URL = "http://shop.hxchengxin.com/pay/wxpaynotify_url.aspx";
//=======【商户系统后台机器IP】=====================================
/*
*/
public const string IP = "211.149.253.200";
//=======【代理服务器设置】===================================
/* IP和端口号分别为0.0.0.00
*/
public const string PROXY_URL = "";
//=======【上报信息配置】===================================
/* 0.; 1.; 2.
*/
public const int REPORT_LEVENL = 0;
//=======【日志级别】===================================
/* 0.1.; 2.; 3.
*/
public const int LOG_LEVENL = 3;
}
}