小程序首页做完后的备份
This commit is contained in:
@@ -1980,7 +1980,7 @@ namespace Mtxfw.Utility
|
||||
{
|
||||
Dictionary<int, string> dic = new Dictionary<int, string>();
|
||||
dic.Add(0, "普通会员");
|
||||
dic.Add(1, "准健康大使");
|
||||
dic.Add(1, "VIP");
|
||||
dic.Add(2, "健康大使");
|
||||
dic.Add(3, "健康合伙人");
|
||||
dic.Add(4, "健康执行官");
|
||||
|
||||
@@ -2631,6 +2631,63 @@ namespace Mtxfw.Utility
|
||||
set
|
||||
{ setData("webMoney153", value); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 小程序商户号
|
||||
/// </summary>
|
||||
public string webXMchid
|
||||
{
|
||||
get
|
||||
{ return getData("webXMchid"); }
|
||||
set
|
||||
{ setData("webXMchid", value); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 小程序ApiV3Key
|
||||
/// </summary>
|
||||
public string webXApiV3Key
|
||||
{
|
||||
get
|
||||
{ return getData("webXApiV3Key"); }
|
||||
set
|
||||
{ setData("webXApiV3Key", value); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 小程序商户证书序列号
|
||||
/// </summary>
|
||||
public string webXMchSerialNo
|
||||
{
|
||||
get
|
||||
{ return getData("webXMchSerialNo"); }
|
||||
set
|
||||
{ setData("webXMchSerialNo", value); }
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 小程序商户私钥(PEM格式)从微信商户平台下载的apiclient_key.pem文件内容
|
||||
/// </summary>
|
||||
public string webXPrivateKey
|
||||
{
|
||||
get
|
||||
{ return getData("webXPrivateKey"); }
|
||||
set
|
||||
{ setData("webXPrivateKey", value); }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 微信支付V3商户私钥文件路径
|
||||
/// </summary>
|
||||
public string webXPrivateKeyPath
|
||||
{
|
||||
get
|
||||
{ return getData("webXPrivateKeyPath"); }
|
||||
set
|
||||
{ setData("webXPrivateKeyPath", value); }
|
||||
}
|
||||
|
||||
public string webMoney154
|
||||
{
|
||||
get
|
||||
|
||||
@@ -14,7 +14,7 @@ namespace Mtxfw.Utility
|
||||
{
|
||||
get
|
||||
{
|
||||
string connection = ConfigurationManager.AppSettings["ConnStr0"].ToString(); //ConfigurationManager.ConnectionStrings["ConnStr"].ConnectionString;
|
||||
string connection = ConfigurationManager.AppSettings["ConnStr"].ToString(); //string connection = ConfigurationManager.AppSettings["ConnStr0"].ToString(); //ConfigurationManager.ConnectionStrings["ConnStr"].ConnectionString;
|
||||
if (Encrypt == true)
|
||||
{
|
||||
return connection;
|
||||
|
||||
@@ -240,6 +240,9 @@
|
||||
<Compile Include="WXPay.StreamReaderUtils.cs" />
|
||||
<Compile Include="WXPay.StringUtils.cs" />
|
||||
<Compile Include="WXPay.WxPayApi.cs" />
|
||||
<Compile Include="WXPay\WxPayV3Config.cs" />
|
||||
<Compile Include="WXPay\WxPayV3NotifyHandler.cs" />
|
||||
<Compile Include="WXPay\WxPayV3Service.cs" />
|
||||
<Compile Include="XmlClass.cs" />
|
||||
<Compile Include="XmlHelper.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user