小程序首页做完后的备份

This commit is contained in:
lym
2026-03-29 01:05:28 +08:00
parent ab0d429a4a
commit 14203dad93
18 changed files with 2029 additions and 853 deletions

View File

@@ -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