using System; using System.Collections.Generic; using System.Text; namespace Common.Entity { /// /// 微信开发配置 /// public class WeixinConfig { #region 公众号 public string Token { get; set; } /// /// 公众号ID /// public string WeixinAppId { get; set; } /// /// 公众号密钥 /// public string WeixinAppSecret { get; set; } /// /// 公众号授权操作后返回微信前端的URl /// public string WeixinWebGetUrl { get; set; } #endregion #region 开放平台 /// /// 开放平台ID /// public string Component_Appid { get; set; } /// /// 开放平台密钥 /// public string Component_Secret { get; set; } #endregion #region 小程序 /// /// 小程序Id /// public string AppId { get; set; } /// /// 小程序密钥 /// public string AppSecret { get; set; } #endregion #region 微信支付 /// ///微信支付 商户编号 /// public string WxPayPartnerId { get; set; } /// /// 微信支付Key /// public string WxPaySecret { get; set; } /// /// 证书地址 /// public string WxPayCertUrl { get; set; } /// /// 证书密码 /// public string WxPayCertPassword { get; set; } /// ///支付成功后回调跳转地址 /// public string WxPayRetrunUrl { get; set; } /// /// 微信退款的回调地址 /// public string WxPayNotifyUrl { get; set; } #endregion } }